eoss-ui 0.5.55 → 0.5.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/button-group.js +19 -9
- package/lib/button.js +4 -4
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +2 -2
- package/lib/data-table-form.js +2 -2
- package/lib/data-table.js +32 -19
- package/lib/date-picker.js +4 -4
- package/lib/dialog.js +2 -2
- package/lib/eoss-ui.common.js +179 -61
- package/lib/flow-group.js +2 -2
- package/lib/flow-list.js +2 -2
- package/lib/flow.js +6 -7
- package/lib/form.js +2 -2
- package/lib/handle-user.js +2 -2
- package/lib/handler.js +2 -2
- package/lib/icon.js +3841 -0
- package/lib/icons.js +2 -2
- package/lib/index.js +1 -1
- package/lib/input-number.js +4 -4
- package/lib/input.js +4 -4
- package/lib/label.js +2 -2
- package/lib/login.js +2 -2
- package/lib/main.js +2 -2
- package/lib/menu.js +2 -2
- package/lib/nav.js +4 -4
- package/lib/notify.js +2 -2
- package/lib/page.js +4 -4
- package/lib/pagination.js +2 -2
- package/lib/player.js +4 -4
- package/lib/qr-code.js +4 -4
- package/lib/radio-group.js +4 -4
- package/lib/retrial-auth.js +4 -4
- package/lib/select-ganged.js +4 -4
- package/lib/select.js +4 -4
- package/lib/selector-panel.js +2 -2
- package/lib/selector.js +11 -11
- package/lib/sizer.js +4 -4
- package/lib/steps.js +4 -4
- package/lib/switch.js +11 -11
- package/lib/table-form.js +4 -4
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +4 -4
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/tips.js +4 -4
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +4 -4
- package/lib/tree.js +10 -8
- package/lib/upload.js +2 -2
- package/lib/utils/util.js +2 -2
- package/lib/wujie.js +4 -4
- package/lib/wxlogin.js +137 -137
- package/package.json +1 -1
- package/packages/button-group/src/main.vue +5 -5
- package/packages/data-table/src/column.vue +1 -1
- package/packages/data-table/src/main.vue +14 -4
- package/packages/flow/src/main.vue +2 -3
- package/packages/icon/index.js +5 -0
- package/packages/icon/src/main.vue +43 -0
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/src/data-table.scss +17 -0
- package/packages/theme-chalk/src/menu.scss +3 -5
- package/packages/tree/src/main.vue +14 -2
- package/src/index.js +4 -1
- package/src/utils/util.js +2 -1
package/lib/input-number.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 75);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3716,7 +3716,7 @@ var WebSocket = function () {
|
|
|
3716
3716
|
|
|
3717
3717
|
/***/ }),
|
|
3718
3718
|
|
|
3719
|
-
/***/
|
|
3719
|
+
/***/ 75:
|
|
3720
3720
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3721
3721
|
|
|
3722
3722
|
"use strict";
|
package/lib/input.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 74);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3741,7 +3741,7 @@ var WebSocket = function () {
|
|
|
3741
3741
|
|
|
3742
3742
|
/***/ }),
|
|
3743
3743
|
|
|
3744
|
-
/***/
|
|
3744
|
+
/***/ 74:
|
|
3745
3745
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3746
3746
|
|
|
3747
3747
|
"use strict";
|
package/lib/label.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 76);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -192,7 +192,7 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 76:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|
package/lib/login.js
CHANGED
|
@@ -2004,7 +2004,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2004
2004
|
* @param {object} [to] - 路由跳转信息
|
|
2005
2005
|
* @param {object} [from] - 路由来源信息
|
|
2006
2006
|
* @param {function} [next] - 跳转函数
|
|
2007
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2007
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2008
2008
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2009
2009
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2010
2010
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2157,7 +2157,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2157
2157
|
});
|
|
2158
2158
|
}
|
|
2159
2159
|
}).catch(function (e) {});
|
|
2160
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2160
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
2161
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2162
2162
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2163
2163
|
} else {
|
package/lib/main.js
CHANGED
|
@@ -2004,7 +2004,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2004
2004
|
* @param {object} [to] - 路由跳转信息
|
|
2005
2005
|
* @param {object} [from] - 路由来源信息
|
|
2006
2006
|
* @param {function} [next] - 跳转函数
|
|
2007
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2007
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2008
2008
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2009
2009
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2010
2010
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2157,7 +2157,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2157
2157
|
});
|
|
2158
2158
|
}
|
|
2159
2159
|
}).catch(function (e) {});
|
|
2160
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2160
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
2161
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2162
2162
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2163
2163
|
} else {
|
package/lib/menu.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 77);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -192,7 +192,7 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 77:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|
package/lib/nav.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 52);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3576,7 +3576,7 @@ module.exports = require("axios");
|
|
|
3576
3576
|
|
|
3577
3577
|
/***/ }),
|
|
3578
3578
|
|
|
3579
|
-
/***/
|
|
3579
|
+
/***/ 52:
|
|
3580
3580
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3581
3581
|
|
|
3582
3582
|
"use strict";
|
package/lib/notify.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 53);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -540,7 +540,7 @@ function normalizeComponent(
|
|
|
540
540
|
|
|
541
541
|
/***/ }),
|
|
542
542
|
|
|
543
|
-
/***/
|
|
543
|
+
/***/ 53:
|
|
544
544
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
545
545
|
|
|
546
546
|
"use strict";
|
package/lib/page.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 55);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3576,7 +3576,7 @@ module.exports = require("axios");
|
|
|
3576
3576
|
|
|
3577
3577
|
/***/ }),
|
|
3578
3578
|
|
|
3579
|
-
/***/
|
|
3579
|
+
/***/ 55:
|
|
3580
3580
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3581
3581
|
|
|
3582
3582
|
"use strict";
|
package/lib/pagination.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 54);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -192,7 +192,7 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 54:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|
package/lib/player.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 56);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3597,7 +3597,7 @@ module.exports = require("axios");
|
|
|
3597
3597
|
|
|
3598
3598
|
/***/ }),
|
|
3599
3599
|
|
|
3600
|
-
/***/
|
|
3600
|
+
/***/ 56:
|
|
3601
3601
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3602
3602
|
|
|
3603
3603
|
"use strict";
|
package/lib/qr-code.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 57);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3583,7 +3583,7 @@ module.exports = require("axios");
|
|
|
3583
3583
|
|
|
3584
3584
|
/***/ }),
|
|
3585
3585
|
|
|
3586
|
-
/***/
|
|
3586
|
+
/***/ 57:
|
|
3587
3587
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3588
3588
|
|
|
3589
3589
|
"use strict";
|
package/lib/radio-group.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 58);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3623,7 +3623,7 @@ module.exports = require("axios");
|
|
|
3623
3623
|
|
|
3624
3624
|
/***/ }),
|
|
3625
3625
|
|
|
3626
|
-
/***/
|
|
3626
|
+
/***/ 58:
|
|
3627
3627
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3628
3628
|
|
|
3629
3629
|
"use strict";
|
package/lib/retrial-auth.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 59);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3576,7 +3576,7 @@ module.exports = require("axios");
|
|
|
3576
3576
|
|
|
3577
3577
|
/***/ }),
|
|
3578
3578
|
|
|
3579
|
-
/***/
|
|
3579
|
+
/***/ 59:
|
|
3580
3580
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3581
3581
|
|
|
3582
3582
|
"use strict";
|
package/lib/select-ganged.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 79);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3716,7 +3716,7 @@ var WebSocket = function () {
|
|
|
3716
3716
|
|
|
3717
3717
|
/***/ }),
|
|
3718
3718
|
|
|
3719
|
-
/***/
|
|
3719
|
+
/***/ 79:
|
|
3720
3720
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3721
3721
|
|
|
3722
3722
|
"use strict";
|
package/lib/select.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 78);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3763,7 +3763,7 @@ var WebSocket = function () {
|
|
|
3763
3763
|
|
|
3764
3764
|
/***/ }),
|
|
3765
3765
|
|
|
3766
|
-
/***/
|
|
3766
|
+
/***/ 78:
|
|
3767
3767
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3768
3768
|
|
|
3769
3769
|
"use strict";
|
package/lib/selector-panel.js
CHANGED
|
@@ -2004,7 +2004,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2004
2004
|
* @param {object} [to] - 路由跳转信息
|
|
2005
2005
|
* @param {object} [from] - 路由来源信息
|
|
2006
2006
|
* @param {function} [next] - 跳转函数
|
|
2007
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2007
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2008
2008
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2009
2009
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2010
2010
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2157,7 +2157,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2157
2157
|
});
|
|
2158
2158
|
}
|
|
2159
2159
|
}).catch(function (e) {});
|
|
2160
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2160
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
2161
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2162
2162
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2163
2163
|
} else {
|
package/lib/selector.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 60);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3590,7 +3590,14 @@ module.exports = require("axios");
|
|
|
3590
3590
|
|
|
3591
3591
|
/***/ }),
|
|
3592
3592
|
|
|
3593
|
-
/***/
|
|
3593
|
+
/***/ 6:
|
|
3594
|
+
/***/ (function(module, exports) {
|
|
3595
|
+
|
|
3596
|
+
module.exports = require("json-bigint");
|
|
3597
|
+
|
|
3598
|
+
/***/ }),
|
|
3599
|
+
|
|
3600
|
+
/***/ 60:
|
|
3594
3601
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3595
3602
|
|
|
3596
3603
|
"use strict";
|
|
@@ -4756,13 +4763,6 @@ main.install = function (Vue) {
|
|
|
4756
4763
|
|
|
4757
4764
|
/***/ }),
|
|
4758
4765
|
|
|
4759
|
-
/***/ 6:
|
|
4760
|
-
/***/ (function(module, exports) {
|
|
4761
|
-
|
|
4762
|
-
module.exports = require("json-bigint");
|
|
4763
|
-
|
|
4764
|
-
/***/ }),
|
|
4765
|
-
|
|
4766
4766
|
/***/ 7:
|
|
4767
4767
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4768
4768
|
|
package/lib/sizer.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 61);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3590,7 +3590,7 @@ module.exports = require("json-bigint");
|
|
|
3590
3590
|
|
|
3591
3591
|
/***/ }),
|
|
3592
3592
|
|
|
3593
|
-
/***/
|
|
3593
|
+
/***/ 61:
|
|
3594
3594
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3595
3595
|
|
|
3596
3596
|
"use strict";
|
package/lib/steps.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 62);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -2005,7 +2005,7 @@ var isFunction = function isFunction(obj) {
|
|
|
2005
2005
|
* @param {object} [to] - 路由跳转信息
|
|
2006
2006
|
* @param {object} [from] - 路由来源信息
|
|
2007
2007
|
* @param {function} [next] - 跳转函数
|
|
2008
|
-
* @param {array} [exclude] - 不拦截的路由
|
|
2008
|
+
* @param {array/boolean} [exclude] - 不拦截的路由
|
|
2009
2009
|
* @param {boolean} [open] - 是否新窗口打开
|
|
2010
2010
|
* @param {boolean} [cookie] - 是否尝试采用
|
|
2011
2011
|
* @param {sting} [loginPage] - 第三方登录页面地址
|
|
@@ -2158,7 +2158,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2158
2158
|
});
|
|
2159
2159
|
}
|
|
2160
2160
|
}).catch(function (e) {});
|
|
2161
|
-
} else if (token || to.path === '/' || to.path === '/404' || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2161
|
+
} else if (token || to.path === '/' || to.path === '/404' || typeof exclude === 'boolean' && exclude || exclude.indexOf(to.path) > -1 || exclude.indexOf(to.name) > -1 || to.path === '/login' || token && to.path === '/main') {
|
|
2162
2162
|
if (redirect && (to.path === '/main' || to.path === '/login')) {
|
|
2163
2163
|
window.location.replace(urlJoinParams({ url: '.' + to.path + '.html', param: to.query }));
|
|
2164
2164
|
} else {
|
|
@@ -3583,7 +3583,7 @@ module.exports = require("json-bigint");
|
|
|
3583
3583
|
|
|
3584
3584
|
/***/ }),
|
|
3585
3585
|
|
|
3586
|
-
/***/
|
|
3586
|
+
/***/ 62:
|
|
3587
3587
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3588
3588
|
|
|
3589
3589
|
"use strict";
|