mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
更新JS URI计算规则
This commit is contained in:
parent
942ac89cf1
commit
081361619a
@ -158,7 +158,8 @@ define(['jquery', 'admin.plugs'], function () {
|
||||
(/^\w{16}$/.test(token)) && (params.token = token);
|
||||
}
|
||||
delete params[""];
|
||||
return uri + '?' + $.param(params);
|
||||
var query = '?' + $.param(params);
|
||||
return uri + (query !== '?' ? query : '');
|
||||
};
|
||||
/*! 通过URI查询最有可能的菜单NODE */
|
||||
function queryNode(url) {
|
||||
|
@ -236,7 +236,7 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
||||
if (typeof (res) === 'object') {
|
||||
return $.msg.auto(res, time);
|
||||
}
|
||||
if (res.indexOf('A PHP Error was encountered') !== -1) {
|
||||
if (res.indexOf('A PHP Error was encountered') > -1) {
|
||||
return $.msg.tips(self.errMsg.replace('{status}', 'E505 - '));
|
||||
}
|
||||
self.show(res);
|
||||
|
Loading…
x
Reference in New Issue
Block a user