1. 修复(kinit-admin):页面缓存问题修复 2. 更新(kinit-api,kinit-admin):菜单管理新增是否缓存字段 3. 更新(kinit-admin):将缓存默认存储在localStorage中 4. 更新(kinit-api):将python-jose库更换为pyjwt库 5. 优化(kinit-admin,kinit-uni):退出登录方法优化 6. 优化(kinit-admin,kinit-uni):response拦截优化 7. 新增(kinit-api,kinit-admin,kinit-uni):jwt到期时间缩短,加入刷新token功能 8. (kinit-uni)切换到 vscode 开发 uniapp 项目
55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
/**
|
|
* 显示消息提示框
|
|
* @param content 提示的标题
|
|
*/
|
|
export function toast(content) {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: content
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 显示模态弹窗
|
|
* @param content 提示的标题
|
|
*/
|
|
export function showConfirm(content) {
|
|
return new Promise((resolve, reject) => {
|
|
uni.showModal({
|
|
title: '提示',
|
|
content: content,
|
|
cancelText: '取消',
|
|
confirmText: '确定',
|
|
success: function (res) {
|
|
resolve(res)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 参数处理
|
|
* @param params 参数
|
|
*/
|
|
export function tansParams(params) {
|
|
let result = ''
|
|
for (const propName of Object.keys(params)) {
|
|
const value = params[propName]
|
|
var part = encodeURIComponent(propName) + '='
|
|
if (value !== null && value !== '' && typeof value !== 'undefined') {
|
|
if (typeof value === 'object') {
|
|
for (const key of Object.keys(value)) {
|
|
if (value[key] !== null && value[key] !== '' && typeof value[key] !== 'undefined') {
|
|
let params = propName + '[' + key + ']'
|
|
var subPart = encodeURIComponent(params) + '='
|
|
result += subPart + encodeURIComponent(value[key]) + '&'
|
|
}
|
|
}
|
|
} else {
|
|
result += part + encodeURIComponent(value) + '&'
|
|
}
|
|
}
|
|
}
|
|
return result
|
|
}
|