This commit is contained in:
2020-08-07 14:39:15 +08:00
parent fc86ad2579
commit f4313dce9d
4 changed files with 30 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
var md5 = require("../static/js/md5.min.js")
const install = (Vue, vm) => {
// 此为自定义配置参数,具体参数见上方说明
Vue.prototype.$u.http.setConfig({
@@ -12,8 +13,25 @@ const install = (Vue, vm) => {
const token = uni.getStorageSync('token');
config.header.Authorization = 'Bearer' + " " + token;
config.header.Authorization = 'Bearer' + " " + token;
Date.prototype.Format = function (fmt) { // author: meizz
var o = {
"M+": this.getMonth() + 1, // 月份
"d+": this.getDate(), // 日
"h+": this.getHours(), // 小时
"m+": this.getMinutes(), // 分
"s+": this.getSeconds(), // 秒
"q+": Math.floor((this.getMonth() + 3) / 3), // 季度
"S": this.getMilliseconds() // 毫秒
};
if (/(y+)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
}
let time = new Date().Format("yyyyMMddhhmmss")
config.header.Sign = md5('DBCA4F8DA7BC0BA2' + time) + '-' + time
return config;
}