94 lines
2.2 KiB
JavaScript
94 lines
2.2 KiB
JavaScript
|
|
import Cookies from 'js-cookie';
|
|
import Setting from '@/setting';
|
|
|
|
const cookies = {};
|
|
|
|
/**
|
|
* @description 存储 cookie 值
|
|
* @param {String} name cookie name
|
|
* @param {String} value cookie value
|
|
* @param {Object} cookieSetting cookie setting
|
|
*/
|
|
cookies.set = function (name = 'default', value = '', cookieSetting = {}) {
|
|
let currentCookieSetting = {
|
|
expires: Setting.cookiesExpires
|
|
};
|
|
Object.assign(currentCookieSetting, cookieSetting);
|
|
Cookies.set(`admin-${name}`, value, currentCookieSetting);
|
|
};
|
|
|
|
/**
|
|
* @description 门店存储 cookie 值
|
|
* @param {String} name cookie name
|
|
* @param {String} value cookie value
|
|
* @param {Object} cookieSetting cookie setting
|
|
*/
|
|
cookies.setStore = function (name = 'default', value = '', cookieSetting = {}) {
|
|
console.log('kkkkk6666');
|
|
let currentCookieSetting = {
|
|
expires: Setting.cookiesExpires
|
|
};
|
|
Object.assign(currentCookieSetting, cookieSetting);
|
|
Cookies.set(`store-${name}`, value, currentCookieSetting);
|
|
};
|
|
|
|
/**
|
|
* @description 客服存储 cookie 值
|
|
* @param {String} name cookie name
|
|
* @param {String} value cookie value
|
|
* @param {Object} cookieSetting cookie setting
|
|
*/
|
|
cookies.setKefu = function (name = 'default', value = '', cookieSetting = {}) {
|
|
let currentCookieSetting = {
|
|
expires: Setting.cookiesExpires
|
|
};
|
|
Object.assign(currentCookieSetting, cookieSetting);
|
|
Cookies.set(`kefu-${name}`, value, currentCookieSetting);
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @description 拿到 cookie 值
|
|
* @param {String} name cookie name
|
|
*/
|
|
cookies.get = function (name = 'default') {
|
|
return Cookies.get(`admin-${name}`);
|
|
};
|
|
|
|
/**
|
|
* @description 拿到客服 cookie 值
|
|
* @param {String} name cookie name
|
|
*/
|
|
cookies.kefuGet = function (name = 'default') {
|
|
return Cookies.get(`kefu-${name}`);
|
|
};
|
|
|
|
/**
|
|
* @description 拿到 cookie 全部的值
|
|
*/
|
|
cookies.getAll = function () {
|
|
return Cookies.get();
|
|
};
|
|
|
|
/**
|
|
* @description 删除 cookie
|
|
* @param {String} name cookie name
|
|
*/
|
|
cookies.remove = function (name = 'default') {
|
|
return Cookies.remove(`admin-${name}`);
|
|
};
|
|
|
|
|
|
/**
|
|
* @description 删除客服 cookie
|
|
* @param {String} name cookie name
|
|
*/
|
|
cookies.kefuRemove = function (name = 'default') {
|
|
return Cookies.remove(`kefu-${name}`);
|
|
};
|
|
|
|
export default cookies;
|