eoss-ui 0.5.99 → 0.6.0
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/eoss-ui.common.js +32 -23
- package/lib/index.js +1 -1
- package/lib/main.js +31 -22
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/package.json +2 -2
- package/packages/.DS_Store +0 -0
- package/packages/handler/.DS_Store +0 -0
- package/packages/login/.DS_Store +0 -0
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/default/index.vue +1 -1
- package/packages/main/src/simplicity/index.vue +17 -4
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/login.scss +6 -0
- package/src/index.js +1 -1
package/lib/eoss-ui.common.js
CHANGED
|
@@ -44663,8 +44663,8 @@ mainvue_type_template_id_72ff8660_render._withStripped = true
|
|
|
44663
44663
|
|
|
44664
44664
|
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=72ff8660&
|
|
44665
44665
|
|
|
44666
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
44667
|
-
var
|
|
44666
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=2c8bf964&scoped=true&
|
|
44667
|
+
var simplicityvue_type_template_id_2c8bf964_scoped_true_render = function () {
|
|
44668
44668
|
var _vm = this
|
|
44669
44669
|
var _h = _vm.$createElement
|
|
44670
44670
|
var _c = _vm._self._c || _h
|
|
@@ -45294,11 +45294,11 @@ var simplicityvue_type_template_id_e9f89944_scoped_true_render = function () {
|
|
|
45294
45294
|
),
|
|
45295
45295
|
])
|
|
45296
45296
|
}
|
|
45297
|
-
var
|
|
45298
|
-
|
|
45297
|
+
var simplicityvue_type_template_id_2c8bf964_scoped_true_staticRenderFns = []
|
|
45298
|
+
simplicityvue_type_template_id_2c8bf964_scoped_true_render._withStripped = true
|
|
45299
45299
|
|
|
45300
45300
|
|
|
45301
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
45301
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=2c8bf964&scoped=true&
|
|
45302
45302
|
|
|
45303
45303
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=1560e8bf&scoped=true&
|
|
45304
45304
|
var avatarvue_type_template_id_1560e8bf_scoped_true_render = function () {
|
|
@@ -51152,18 +51152,22 @@ var events = [function (tabs, index, that) {
|
|
|
51152
51152
|
}
|
|
51153
51153
|
var pathname = url.substring(url.indexOf('#/') + 1);
|
|
51154
51154
|
pathname = pathname.split('?')[0];
|
|
51155
|
+
var _code = void 0;
|
|
51155
51156
|
if (res.path !== '/' && pathname == _path) {
|
|
51156
51157
|
if (res.components) {
|
|
51157
|
-
if (!res.components[
|
|
51158
|
-
console.error('
|
|
51158
|
+
if (!res.components[_code]) {
|
|
51159
|
+
console.error('路由“命名视图”规范属性名称与菜单appCode不一致', res, _code);
|
|
51160
|
+
_code = Object.keys(res.components).filter(function (item) {
|
|
51161
|
+
return item !== 'default';
|
|
51162
|
+
})[0];
|
|
51159
51163
|
}
|
|
51160
51164
|
} else {
|
|
51161
|
-
console.error('
|
|
51165
|
+
console.error('请根据路由“命名视图”规范,正确添加components属性名称', res);
|
|
51162
51166
|
}
|
|
51163
|
-
return pathname;
|
|
51167
|
+
return _code ? { path: pathname, appCode: _code } : pathname;
|
|
51164
51168
|
}
|
|
51165
51169
|
if (res && Object.prototype.hasOwnProperty.call(res, 'children')) {
|
|
51166
|
-
var _path2 = this.hasRouter(res.children, url,
|
|
51170
|
+
var _path2 = this.hasRouter(res.children, url, _code);
|
|
51167
51171
|
if (_path2) {
|
|
51168
51172
|
return _path2;
|
|
51169
51173
|
}
|
|
@@ -51503,7 +51507,12 @@ var events = [function (tabs, index, that) {
|
|
|
51503
51507
|
var path = this.hasRouter(routes, urls[0], res.appCode);
|
|
51504
51508
|
if (path && this.routeType !== 'wujie') {
|
|
51505
51509
|
res.method = 'router';
|
|
51506
|
-
|
|
51510
|
+
if (typeof path === 'string') {
|
|
51511
|
+
res.path = path;
|
|
51512
|
+
} else {
|
|
51513
|
+
res.path = path.path;
|
|
51514
|
+
res.appCode = path.appCode;
|
|
51515
|
+
}
|
|
51507
51516
|
res.keys = utils_util["a" /* default */].uuid();
|
|
51508
51517
|
} else {
|
|
51509
51518
|
var urlopenmode = utils_util["a" /* default */].getParams({
|
|
@@ -52301,18 +52310,18 @@ var events = [function (tabs, index, that) {
|
|
|
52301
52310
|
|
|
52302
52311
|
var simplicity_component = normalizeComponent(
|
|
52303
52312
|
src_simplicityvue_type_script_lang_js_,
|
|
52304
|
-
|
|
52305
|
-
|
|
52313
|
+
simplicityvue_type_template_id_2c8bf964_scoped_true_render,
|
|
52314
|
+
simplicityvue_type_template_id_2c8bf964_scoped_true_staticRenderFns,
|
|
52306
52315
|
false,
|
|
52307
52316
|
null,
|
|
52308
|
-
"
|
|
52317
|
+
"2c8bf964",
|
|
52309
52318
|
null
|
|
52310
52319
|
|
|
52311
52320
|
)
|
|
52312
52321
|
|
|
52313
52322
|
/* harmony default export */ var simplicity = (simplicity_component.exports);
|
|
52314
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=
|
|
52315
|
-
var
|
|
52323
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=215ab02a&
|
|
52324
|
+
var defaultvue_type_template_id_215ab02a_render = function () {
|
|
52316
52325
|
var _vm = this
|
|
52317
52326
|
var _h = _vm.$createElement
|
|
52318
52327
|
var _c = _vm._self._c || _h
|
|
@@ -52700,11 +52709,11 @@ var defaultvue_type_template_id_48dad2d4_render = function () {
|
|
|
52700
52709
|
1
|
|
52701
52710
|
)
|
|
52702
52711
|
}
|
|
52703
|
-
var
|
|
52704
|
-
|
|
52712
|
+
var defaultvue_type_template_id_215ab02a_staticRenderFns = []
|
|
52713
|
+
defaultvue_type_template_id_215ab02a_render._withStripped = true
|
|
52705
52714
|
|
|
52706
52715
|
|
|
52707
|
-
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=
|
|
52716
|
+
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=215ab02a&
|
|
52708
52717
|
|
|
52709
52718
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=d207c2e8&
|
|
52710
52719
|
var userinfovue_type_template_id_d207c2e8_render = function () {
|
|
@@ -54375,7 +54384,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
54375
54384
|
set: !this.showSet,
|
|
54376
54385
|
index: this.doorIndex ? false : true,
|
|
54377
54386
|
system: true,
|
|
54378
|
-
home: this.homePage ? false :
|
|
54387
|
+
home: this.homePage ? false : true
|
|
54379
54388
|
};
|
|
54380
54389
|
|
|
54381
54390
|
if (this.layout === 'subsystem' || this.application) {
|
|
@@ -55890,8 +55899,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
55890
55899
|
|
|
55891
55900
|
var default_component = normalizeComponent(
|
|
55892
55901
|
src_defaultvue_type_script_lang_js_,
|
|
55893
|
-
|
|
55894
|
-
|
|
55902
|
+
defaultvue_type_template_id_215ab02a_render,
|
|
55903
|
+
defaultvue_type_template_id_215ab02a_staticRenderFns,
|
|
55895
55904
|
false,
|
|
55896
55905
|
null,
|
|
55897
55906
|
null,
|
|
@@ -76654,7 +76663,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
76654
76663
|
}
|
|
76655
76664
|
|
|
76656
76665
|
/* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
|
|
76657
|
-
version: '0.
|
|
76666
|
+
version: '0.6.0',
|
|
76658
76667
|
install: install,
|
|
76659
76668
|
Button: packages_button,
|
|
76660
76669
|
ButtonGroup: button_group,
|