You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1003 B
44 lines
1003 B
3 years ago
|
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
|
||
|
*/
|
||
|
cookies.get = function (name = 'default') {
|
||
|
return Cookies.get(`admin-${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}`);
|
||
|
};
|
||
|
|
||
|
export default cookies;
|