7 Star 3 Fork 1

BertMe/store

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.js 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
xiao_song 提交于 2020-06-15 11:07 . 更新
var config = {
// basePath: 'http://192.168.0.18:8080/warehouse',
// imgPath: 'http://192.168.0.18:8080/files',
// wareName: '18测试服',
basePath: 'http://test.catchtoy.cn/warehouse', // 测试服
imgPath: 'http://test.live.catchtoy.cn/files',
wareName: '35测试服',
// basePath: 'http://cdfkww.qtdevice.cn/warehouse', // 正式服
// imgPath: 'http://cdfkww.qtdevice.cn/files',
// wareName: '成都晴天',
// basePath: 'http://lzfkww.qtdevice.cn/warehouse', // 兰州
// imgPath: 'http://lzfkww.qtdevice.cn/files',
// wareName: '兰州晴天',
// basePath: 'http://cqfkww.qtdevice.cn/warehouse', // 重庆
// imgPath: 'http://cqfkww.qtdevice.cn/files',
// wareName: '重庆晴天',
exceptTag: [6],
ajax: function(option) {
mui.ajax({
url: option.url.indexOf('http://') === -1 ? config.basePath + option.url : option.url,
headers: option.headers ? option.headers : {
'Content-Type': 'application/json'
},
crossDomain: true,
dataType: option.dataType ? option.dataType : 'json',
type: option.type ? option.type : 'POST',
data: option.data ? option.data : null,
timeout:1200000,
success: function(res) {
if(res.result === 4001) {
mui.openWindow({
id: 'login',
url: '../login.html'
});
var allPage = plus.webview.all()
var nowPage = plus.webview.getWebviewById('login')
for(var i = 0; i < allPage.length; i++) {
if(allPage[i].getURL() !== nowPage.getURL()) {
plus.webview.close(allPage[i])
}
}
mui.toast('登录失效,请重新登录');
} else if(res.result === 4002){
mui.openWindow({
id: 'login',
url: '../login.html'
});
var allPage = plus.webview.all()
var nowPage = plus.webview.getWebviewById('login')
for(var i = 0; i < allPage.length; i++) {
if(allPage[i].getURL() !== nowPage.getURL()) {
plus.webview.close(allPage[i])
}
}
mui.toast('服务器正在更新,请稍等');
} else {
option.success(res);
}
},
error: function(res) {
console.log(JSON.stringify(res))
},
});
},
clientWidth:'',
}
Date.prototype.format = function(fmt) {
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;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bertme/store.git
git@gitee.com:bertme/store.git
bertme
store
store
master

搜索帮助