ecinc-cloud-yoaecoav9 9.7.15 → 9.7.17

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.
@@ -13421,9 +13421,12 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13421
13421
  this.showTodoTip = show_gg;
13422
13422
  this.dialogVisible = show_gg;
13423
13423
  this.show_gg = show_gg;
13424
- document.addEventListener('click', function (e) {
13424
+
13425
+ // 具名引用,便于 beforeDestroy 解绑,避免 document click 监听泄漏
13426
+ this.handleSkinClick = function () {
13425
13427
  _this2.skinShow = false;
13426
- });
13428
+ };
13429
+ document.addEventListener('click', this.handleSkinClick);
13427
13430
  var uiStyle = js_cookie__WEBPACK_IMPORTED_MODULE_0___default().get('uiStyle_' + this.loginUser.userId);
13428
13431
  if (uiStyle) {
13429
13432
  this.loginUser.uiStyle = uiStyle;
@@ -13437,8 +13440,15 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13437
13440
  this.$bus.off('updatePortalApplet', this.updatePortalApplet);
13438
13441
  this.$bus.off('showNotificationDialog');
13439
13442
  this.$bus.off('showCustomFuc', this.showCustomFuc);
13443
+ // 解绑全局事件,避免组件销毁后监听器残留累积导致卡顿
13444
+ if (this.handleSkinClick) {
13445
+ document.removeEventListener('click', this.handleSkinClick);
13446
+ }
13447
+ window.removeEventListener('resize', this.handleWindowResize);
13448
+ clearTimeout(this._resizeTimer);
13440
13449
  },
13441
13450
  mounted: function mounted() {
13451
+ var _this3 = this;
13442
13452
  this.appletsCustom = this.dataList;
13443
13453
  this.applets = this.appletsCustom.filter(function (item, index) {
13444
13454
  return item.hidden !== 1;
@@ -13455,13 +13465,18 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13455
13465
  duration: 5000
13456
13466
  });
13457
13467
  }
13458
- var that = this;
13459
- window.onresize = function () {
13460
- return function () {
13468
+ // 具名函数 + 100ms 节流:不用 window.onresize 整体覆盖(会顶掉其他模块的监听),
13469
+ // 具名引用可在 beforeDestroy 中真正解绑,避免反复进出门户后监听器泄漏累积。
13470
+ this._resizeTimer = null;
13471
+ this.handleWindowResize = function () {
13472
+ if (_this3._resizeTimer) return;
13473
+ _this3._resizeTimer = setTimeout(function () {
13474
+ _this3._resizeTimer = null;
13461
13475
  window.screenWidth = document.body.clientWidth;
13462
- that.screenWidth = window.screenWidth;
13463
- }();
13476
+ _this3.screenWidth = window.screenWidth;
13477
+ }, 100);
13464
13478
  };
13479
+ window.addEventListener('resize', this.handleWindowResize);
13465
13480
  },
13466
13481
  methods: {
13467
13482
  portalMainClick: function portalMainClick() {
@@ -13588,7 +13603,7 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13588
13603
  }
13589
13604
  },
13590
13605
  deleteById: function deleteById(index) {
13591
- var _this3 = this;
13606
+ var _this4 = this;
13592
13607
  // 删除
13593
13608
  if (this.applets.length < 2) {
13594
13609
  // this.$message.error('必须保留至少一个小程序哦!')
@@ -13596,7 +13611,7 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13596
13611
  return;
13597
13612
  }
13598
13613
  this.allApplets.forEach(function (item) {
13599
- if (item.id === _this3.applets[index].id) {
13614
+ if (item.id === _this4.applets[index].id) {
13600
13615
  item.hidden = 1;
13601
13616
  }
13602
13617
  });
@@ -13623,22 +13638,22 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13623
13638
  },
13624
13639
  //
13625
13640
  getSubApps: function getSubApps() {
13626
- var _this4 = this;
13641
+ var _this5 = this;
13627
13642
  return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
13628
13643
  var commonApp, listdata, listArray, subApps, nosSubApps, sysSetup, commonAppId;
13629
13644
  return _regeneratorRuntime().wrap(function _callee$(_context) {
13630
13645
  while (1) switch (_context.prev = _context.next) {
13631
13646
  case 0:
13632
13647
  _context.next = 2;
13633
- return _this4.getCommonApp();
13648
+ return _this5.getCommonApp();
13634
13649
  case 2:
13635
13650
  commonApp = _context.sent;
13636
13651
  _context.next = 5;
13637
- return _this4.getSetup();
13652
+ return _this5.getSetup();
13638
13653
  case 5:
13639
13654
  listdata = _context.sent;
13640
13655
  _context.next = 8;
13641
- return _this4.getProduct();
13656
+ return _this5.getProduct();
13642
13657
  case 8:
13643
13658
  listArray = _context.sent;
13644
13659
  subApps = [];
@@ -13654,12 +13669,12 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13654
13669
  sysSetup = listdata.filter(function (sys) {
13655
13670
  return sys.sysType;
13656
13671
  });
13657
- _this4.getAllWflow(sysSetup);
13672
+ _this5.getAllWflow(sysSetup);
13658
13673
  commonAppId = [];
13659
13674
  commonApp.forEach(function (appid) {
13660
13675
  commonAppId.push(appid.resId);
13661
13676
  });
13662
- _this4.topMenus.forEach(function (menu) {
13677
+ _this5.topMenus.forEach(function (menu) {
13663
13678
  if (menu.meta.code.indexOf('apps_') > -1 && menu.meta.code !== 'apps_dwmgr') {
13664
13679
  menu.id = menu.meta.id;
13665
13680
  menu.productn = menu.meta.title;
@@ -13685,11 +13700,11 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13685
13700
  }
13686
13701
  }
13687
13702
  });
13688
- window.localStorage.setItem(_this4.loginUser.sysCode + '_subApps', JSON.stringify(subApps));
13689
- window.localStorage.setItem(_this4.loginUser.sysCode + '_notSubApps', JSON.stringify(nosSubApps));
13690
- window.localStorage.setItem(_this4.loginUser.sysCode + '_commonApp', JSON.stringify(commonApp));
13691
- _this4.$nextTick(function () {
13692
- _this4.$bus.emit('getApps');
13703
+ window.localStorage.setItem(_this5.loginUser.sysCode + '_subApps', JSON.stringify(subApps));
13704
+ window.localStorage.setItem(_this5.loginUser.sysCode + '_notSubApps', JSON.stringify(nosSubApps));
13705
+ window.localStorage.setItem(_this5.loginUser.sysCode + '_commonApp', JSON.stringify(commonApp));
13706
+ _this5.$nextTick(function () {
13707
+ _this5.$bus.emit('getApps');
13693
13708
  });
13694
13709
  case 22:
13695
13710
  case "end":
@@ -13700,9 +13715,9 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13700
13715
  },
13701
13716
  // 获取常用应用
13702
13717
  getCommonApp: function getCommonApp() {
13703
- var _this5 = this;
13718
+ var _this6 = this;
13704
13719
  return new Promise(function (resolve, reject) {
13705
- _this5.$http({
13720
+ _this6.$http({
13706
13721
  method: 'POST',
13707
13722
  url: 'user/commonApp/querydata',
13708
13723
  data: [{
@@ -13714,12 +13729,12 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13714
13729
  compare: '=',
13715
13730
  field: 'ownerId',
13716
13731
  merge: true,
13717
- value: _this5.loginUser.personId
13732
+ value: _this6.loginUser.personId
13718
13733
  }, {
13719
13734
  compare: '=',
13720
13735
  field: 'orgCode',
13721
13736
  merge: true,
13722
- value: _this5.loginUser.orgCode
13737
+ value: _this6.loginUser.orgCode
13723
13738
  }],
13724
13739
  params: {
13725
13740
  orderBy: 'createTime desc'
@@ -13728,23 +13743,23 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13728
13743
  if (res.code === 'success') {
13729
13744
  resolve(res.body.listdata);
13730
13745
  } else {
13731
- _this5.$message.error(res.message);
13746
+ _this6.$message.error(res.message);
13732
13747
  }
13733
13748
  });
13734
13749
  });
13735
13750
  },
13736
13751
  // 获取产品业务系统
13737
13752
  getSetup: function getSetup() {
13738
- var _this6 = this;
13753
+ var _this7 = this;
13739
13754
  return new Promise(function (resolve, reject) {
13740
- _this6.$http({
13755
+ _this7.$http({
13741
13756
  method: 'POST',
13742
13757
  url: 'base/sysSetup/querydata',
13743
13758
  data: [{
13744
13759
  compare: '=',
13745
13760
  field: 'orgCode',
13746
13761
  merge: true,
13747
- value: _this6.loginUser.orgCode
13762
+ value: _this7.loginUser.orgCode
13748
13763
  }, {
13749
13764
  compare: '=',
13750
13765
  field: 'isDefaultSys',
@@ -13763,16 +13778,16 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13763
13778
  if (res.code === 'success') {
13764
13779
  resolve(res.body.listdata);
13765
13780
  } else {
13766
- _this6.$message.error(res.message);
13781
+ _this7.$message.error(res.message);
13767
13782
  }
13768
13783
  });
13769
13784
  });
13770
13785
  },
13771
13786
  // 获取产品
13772
13787
  getProduct: function getProduct() {
13773
- var _this7 = this;
13788
+ var _this8 = this;
13774
13789
  return new Promise(function (resolve, reject) {
13775
- _this7.$http({
13790
+ _this8.$http({
13776
13791
  method: 'POST',
13777
13792
  url: 'base/product/querydata',
13778
13793
  data: [{
@@ -13787,16 +13802,16 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13787
13802
  if (res.code === 'success') {
13788
13803
  resolve(res.body.listdata);
13789
13804
  } else {
13790
- _this7.$message.error(res.message);
13805
+ _this8.$message.error(res.message);
13791
13806
  }
13792
13807
  });
13793
13808
  });
13794
13809
  },
13795
13810
  getAllWflow: function getAllWflow(sysSetup) {
13796
- var _this8 = this;
13811
+ var _this9 = this;
13797
13812
  var sys = sysSetup;
13798
13813
  sys.forEach(function (item, index) {
13799
- _this8.$http({
13814
+ _this9.$http({
13800
13815
  method: 'GET',
13801
13816
  url: 'homepage/findAllCreateWflowMenu',
13802
13817
  params: {
@@ -13806,19 +13821,19 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13806
13821
  if (res.code === 'success') {
13807
13822
  if (index + 1 === sys.length) {
13808
13823
  item[item.sysCode] = res.body.listdata;
13809
- window.localStorage.setItem(_this8.loginUser.sysCode + '_drawupArray', JSON.stringify(sys));
13824
+ window.localStorage.setItem(_this9.loginUser.sysCode + '_drawupArray', JSON.stringify(sys));
13810
13825
  } else {
13811
13826
  item[item.sysCode] = res.body.listdata;
13812
13827
  }
13813
13828
  } else {
13814
- _this8.$message.error(res.message);
13829
+ _this9.$message.error(res.message);
13815
13830
  }
13816
13831
  });
13817
13832
  });
13818
13833
  },
13819
13834
  // ljj 门户自定义功能
13820
13835
  showCustomFuc: function showCustomFuc(data) {
13821
- var _this9 = this;
13836
+ var _this10 = this;
13822
13837
  if (!this.defaultSubscribeApplets) {
13823
13838
  this.$http({
13824
13839
  method: 'GET',
@@ -13830,58 +13845,58 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13830
13845
  url: 'base/portalPage/getByPageCode'
13831
13846
  }).then(function (response) {
13832
13847
  if (response.code === 'success') {
13833
- _this9.portalPage = response.body.vo;
13834
- _this9.$http({
13848
+ _this10.portalPage = response.body.vo;
13849
+ _this10.$http({
13835
13850
  method: 'GET',
13836
13851
  contentType: 'application/x-www-form-urlencoded',
13837
13852
  params: {
13838
- sysCode: _this9.portalPage.sysCode,
13839
- pageType: _this9.portalPage.pageType,
13853
+ sysCode: _this10.portalPage.sysCode,
13854
+ pageType: _this10.portalPage.pageType,
13840
13855
  checkPermission: 1
13841
13856
  },
13842
13857
  url: 'base/portlet/queryAllPortletsByPageType'
13843
13858
  }).then(function (response) {
13844
13859
  if (response.code === 'success') {
13845
- var _this9$allApplets;
13846
- (_this9$allApplets = _this9.allApplets).push.apply(_this9$allApplets, _toConsumableArray(_this9.appletsCustom));
13860
+ var _this10$allApplets;
13861
+ (_this10$allApplets = _this10.allApplets).push.apply(_this10$allApplets, _toConsumableArray(_this10.appletsCustom));
13847
13862
  var busiTypes = ',';
13848
13863
  response.body.busiTypes.forEach(function (busiType) {
13849
13864
  busiTypes += busiType.value + ',';
13850
13865
  });
13851
13866
  response.body.listdata.forEach(function (applet) {
13852
13867
  if (applet.defaultSubscribe === 1 && busiTypes.indexOf(',' + applet.busiType + ',') !== -1) {
13853
- var exists = _this9.appletsCustom.filter(function (item) {
13868
+ var exists = _this10.appletsCustom.filter(function (item) {
13854
13869
  return applet.id === item.id;
13855
13870
  });
13856
13871
  if (exists.length === 0) {
13857
13872
  if (!applet.rowSpan) {
13858
- _this9.$set(applet, 'rowSpan', 6); //默认行高6
13873
+ _this10.$set(applet, 'rowSpan', 6); //默认行高6
13859
13874
  } else if (applet.rowSpan < 2) {
13860
- _this9.$set(applet, 'rowSpan', 2); //最小行高2
13875
+ _this10.$set(applet, 'rowSpan', 2); //最小行高2
13861
13876
  }
13862
13877
  if (!applet.colSpan) {
13863
- _this9.$set(applet, 'colSpan', 6);
13878
+ _this10.$set(applet, 'colSpan', 6);
13864
13879
  }
13865
13880
  if (applet.showCaption === null) {
13866
- _this9.$set(applet, 'showCaption', 1);
13881
+ _this10.$set(applet, 'showCaption', 1);
13867
13882
  }
13868
13883
  if (applet.showMore === null) {
13869
- _this9.$set(applet, 'showMore', 0);
13884
+ _this10.$set(applet, 'showMore', 0);
13870
13885
  }
13871
- _this9.$set(applet, 'w', applet.colSpan);
13872
- _this9.$set(applet, 'h', applet.rowSpan);
13873
- _this9.$set(applet, 'x', applet.axisX);
13874
- _this9.$set(applet, 'y', applet.axisY);
13875
- _this9.$set(applet, 'i', _this9.allApplets.length);
13876
- _this9.$set(applet, 'hidden', 1);
13877
- _this9.allApplets.push(applet);
13886
+ _this10.$set(applet, 'w', applet.colSpan);
13887
+ _this10.$set(applet, 'h', applet.rowSpan);
13888
+ _this10.$set(applet, 'x', applet.axisX);
13889
+ _this10.$set(applet, 'y', applet.axisY);
13890
+ _this10.$set(applet, 'i', _this10.allApplets.length);
13891
+ _this10.$set(applet, 'hidden', 1);
13892
+ _this10.allApplets.push(applet);
13878
13893
  }
13879
13894
  }
13880
13895
  });
13881
- _this9.appletsCustom = _this9.allApplets.filter(function (item) {
13896
+ _this10.appletsCustom = _this10.allApplets.filter(function (item) {
13882
13897
  return item.pppId;
13883
13898
  });
13884
- _this9.defaultSubscribeApplets = _this9.allApplets.filter(function (item) {
13899
+ _this10.defaultSubscribeApplets = _this10.allApplets.filter(function (item) {
13885
13900
  return !item.pppId;
13886
13901
  });
13887
13902
  }
@@ -13901,10 +13916,10 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13901
13916
  },
13902
13917
  // 保存自定义小程序
13903
13918
  saveApplet: function saveApplet(type) {
13904
- var _this10 = this;
13919
+ var _this11 = this;
13905
13920
  this.openFullScreen2();
13906
13921
  this.applets.forEach(function (item) {
13907
- _this10.allApplets.forEach(function (list) {
13922
+ _this11.allApplets.forEach(function (list) {
13908
13923
  if (item.id === list.id) {
13909
13924
  list.axisX = item.x;
13910
13925
  list.axisY = item.y;
@@ -13919,13 +13934,13 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13919
13934
  if (item.pppId || item.hidden === 0) {
13920
13935
  item.passenger = {};
13921
13936
  item.status = 0;
13922
- item.pageId = _this10.portalPage.id;
13937
+ item.pageId = _this11.portalPage.id;
13923
13938
  item.portletId = item.id;
13924
13939
  item.id = '';
13925
- item.ownerId = _this10.loginUser.personId;
13940
+ item.ownerId = _this11.loginUser.personId;
13926
13941
  item.pagePortletId = item.pppId || null;
13927
13942
  item.status = item.hidden === 0 ? 1 : 0;
13928
- _this10.appletsNew.push(item);
13943
+ _this11.appletsNew.push(item);
13929
13944
  }
13930
13945
  });
13931
13946
  }
@@ -13938,21 +13953,21 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13938
13953
  pageCode: this.pageCode
13939
13954
  }
13940
13955
  }).then(function (res) {
13941
- _this10.loading.close();
13956
+ _this11.loading.close();
13942
13957
  if (res.code === 'success') {
13943
13958
  if (type === 'defult') {
13944
13959
  // this.$message.success('恢复默认成功')
13945
- _this10.$message.success(_this10.$tx('ecoa.messages.saveMsg', '恢复默认成功'));
13960
+ _this11.$message.success(_this11.$tx('ecoa.messages.saveMsg', '恢复默认成功'));
13946
13961
  } else {
13947
- _this10.$message.success(res.message);
13962
+ _this11.$message.success(res.message);
13948
13963
  }
13949
- _this10.showCustom = false;
13950
- _this10.$emit('close', false);
13951
- _this10.applets = [];
13952
- _this10.$vnode.context.$vnode.context.pageCode = '';
13953
- _this10.$vnode.context.$vnode.context.requestMyPortlet(_this10.pageCode, true);
13964
+ _this11.showCustom = false;
13965
+ _this11.$emit('close', false);
13966
+ _this11.applets = [];
13967
+ _this11.$vnode.context.$vnode.context.pageCode = '';
13968
+ _this11.$vnode.context.$vnode.context.requestMyPortlet(_this11.pageCode, true);
13954
13969
  } else {
13955
- _this10.$message.error(res.message);
13970
+ _this11.$message.error(res.message);
13956
13971
  }
13957
13972
  });
13958
13973
  },
@@ -13996,18 +14011,18 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
13996
14011
  return arr;
13997
14012
  },
13998
14013
  handleClose: function handleClose() {
13999
- var _this11 = this;
14014
+ var _this12 = this;
14000
14015
  this.$confirm('直接关闭将不会保留您的配置信息,是否继续?', this.$tx('common.operationTip', '操作提示'), {
14001
14016
  confirmButtonText: this.$tx('pageBtns.sure', '确 定'),
14002
14017
  cancelButtonText: this.$tx('pageBtns.cancel', '取 消'),
14003
14018
  type: 'warning'
14004
14019
  }).then(function () {
14005
- _this11.showCustom = false;
14006
- _this11.$emit('close', false);
14020
+ _this12.showCustom = false;
14021
+ _this12.$emit('close', false);
14007
14022
  // this.requestMyPortlet(this.useScope, true)
14008
- _this11.$vnode.context.$vnode.context.requestMyPortlet(_this11.pageCode, true);
14023
+ _this12.$vnode.context.$vnode.context.requestMyPortlet(_this12.pageCode, true);
14009
14024
  }).catch(function () {
14010
- _this11.showCustom = true;
14025
+ _this12.showCustom = true;
14011
14026
  });
14012
14027
  },
14013
14028
  handleClick: function handleClick(tab, event) {
@@ -14020,31 +14035,31 @@ function _asyncToGenerator(n) { return function () { var t = this, e = arguments
14020
14035
  }
14021
14036
  },
14022
14037
  themeSave: function themeSave() {
14023
- var _this12 = this;
14038
+ var _this13 = this;
14024
14039
  return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
14025
14040
  return _regeneratorRuntime().wrap(function _callee2$(_context2) {
14026
14041
  while (1) switch (_context2.prev = _context2.next) {
14027
14042
  case 0:
14028
- _this12.$http({
14043
+ _this13.$http({
14029
14044
  method: 'PUT',
14030
14045
  contentType: 'application/x-www-form-urlencoded',
14031
- data: _this12.vo,
14046
+ data: _this13.vo,
14032
14047
  url: 'base/user/updateBasicSetup'
14033
14048
  }).then(function (response) {
14034
14049
  if (response.code === 'success') {
14035
- _this12.showCustom = false;
14036
- _this12.$emit('close', false);
14037
- _this12.$message.success(response.message);
14038
- js_cookie__WEBPACK_IMPORTED_MODULE_0___default().set('uiStyle_' + _this12.loginUser.userId, _this12.styleCode);
14050
+ _this13.showCustom = false;
14051
+ _this13.$emit('close', false);
14052
+ _this13.$message.success(response.message);
14053
+ js_cookie__WEBPACK_IMPORTED_MODULE_0___default().set('uiStyle_' + _this13.loginUser.userId, _this13.styleCode);
14039
14054
  location.reload();
14040
14055
  } else {
14041
- _this12.$message.error(response.message);
14056
+ _this13.$message.error(response.message);
14042
14057
  }
14043
14058
  }, function (err) {
14044
14059
  console.log(err);
14045
- _this12.$message.error(err);
14060
+ _this13.$message.error(err);
14046
14061
  });
14047
- _this12.skinShow = false;
14062
+ _this13.skinShow = false;
14048
14063
  case 2:
14049
14064
  case "end":
14050
14065
  return _context2.stop();
@@ -21601,7 +21616,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".zsbq .zsbq_content[data-v-756a868b]{m
21601
21616
 
21602
21617
  /***/ }),
21603
21618
 
21604
- /***/ 4942:
21619
+ /***/ 524:
21605
21620
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
21606
21621
 
21607
21622
  "use strict";
@@ -21615,7 +21630,7 @@ __webpack_require__.r(__webpack_exports__);
21615
21630
 
21616
21631
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
21617
21632
  // Module
21618
- ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-6fa37277]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);stdSubMenuActiveText:var(--lmTextColorActive)!important;darkMenuBgcolor:#304156;darkMenuHover:#263445;darkMenuText:#bfcbd9;darkMenuAcitveText:#ffd04b;darkSubMenuBgcolor:#384b63;darkSubMenuHover:#263445;darkSubMenuActiveText:#ffd04b;sideBarWidth:210px;formLabelWidth:133px;lightBlue:var(--subjectColor)}li[data-v-6fa37277],ul[data-v-6fa37277]{list-style:none;margin:0;padding:0}[data-v-6fa37277] .el-loading-mask{z-index:1!important}.sk-g[data-v-6fa37277]{position:relative;padding-top:80px;width:100px;text-align:left;padding-left:6px}.sk-g .skin-color[data-v-6fa37277]{width:90px;height:72px;position:absolute;top:0;left:50%;margin-left:-45px;border:1px solid #dcdfe7}.active[data-v-6fa37277]{background:green}.sortable-ghost[data-v-6fa37277]{background-color:#000;opacity:1}.sortable-ghost[data-v-6fa37277]:after{width:100px;height:10px;background-color:#000;display:block;position:relative;top:0;left:0}.s-color-li[data-v-6fa37277]{width:56px;height:auto;text-align:center;margin-right:12px;float:left}.s-color-li[data-v-6fa37277]:last-child{margin-right:0}.s-color-li.skinBlack div[data-v-6fa37277],.s-color-li.skinOrange div[data-v-6fa37277],.s-color-li.skinScienceBlue div[data-v-6fa37277],.s-color-li.skinTaleBlue div[data-v-6fa37277]{background-color:var(--bgColor)}.s-color-li div[data-v-6fa37277]{width:40px;height:40px;margin:0 auto;border:1px solid #f2f2f2}.s-color-li p[data-v-6fa37277]{color:#555;height:16px;line-height:16px}.s-color-li.is-active div[data-v-6fa37277]{outline:2px solid var(--subjectColor)}.s-color-li.is-active p[data-v-6fa37277]{color:var(--subjectColor)}.CustomTip[data-v-6fa37277]{width:340px;height:650px;position:fixed;top:0;left:0;z-index:2001;background-color:#fff;border:1px solid #e4e7ed;border-radius:4px;overflow:hidden;-webkit-box-shadow:1px 1px 5px 0 rgba(0,0,0,.3);box-shadow:1px 1px 5px 0 rgba(0,0,0,.3);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.CustomTip[data-v-6fa37277] .el-tabs__nav{width:100%}.CustomTip[data-v-6fa37277] .el-tabs__item{width:50%;text-align:center;padding:0}.CustomTip .fl[data-v-6fa37277]{width:100%;height:100%}.CustomTip .fl .fl-content[data-v-6fa37277]{height:calc(100% - 50px)}.CustomTip .fl .fl-content[data-v-6fa37277] .el-tabs{height:100%}.CustomTip .fl .fl-content[data-v-6fa37277] .el-tabs .el-tabs__content{height:calc(100% - 55px)}.CustomTip .fl .fl-content[data-v-6fa37277] .el-tabs .el-tabs__content .el-tab-pane{height:100%}.CustomTip .header[data-v-6fa37277]{width:100%;height:50px;padding:12px 15px;line-height:26px;position:relative;font-size:16px;font-family:Microsoft YaHei;font-weight:400;color:#333;text-align:center;background-color:#ebeef5;cursor:move}.CustomTip .header .icon-close[data-v-6fa37277]{position:absolute;right:5px;top:5px;font-size:16px;color:#666;cursor:pointer}.CustomTip .tip-body[data-v-6fa37277]{width:100%;height:auto;background-color:inherit;padding:20px 0;font-size:var(--portalFontSize14);color:#333}.CustomTip .tip-body .msg-tit[data-v-6fa37277]{font-size:var(--portalFontSize15)}.CustomTip .tip-body .msg-from[data-v-6fa37277]{margin-top:40px}.CustomTip .AppCenter[data-v-6fa37277],.CustomTip .Skin[data-v-6fa37277]{width:100%;height:100%}.CustomTip .AppCenter .p1[data-v-6fa37277],.CustomTip .Skin .p1[data-v-6fa37277]{font-size:var(--portalFontSize12);width:100%;height:40px;line-height:40px;color:#000;text-align:center;margin:0}.CustomTip .AppCenter .p2[data-v-6fa37277],.CustomTip .Skin .p2[data-v-6fa37277]{font-size:var(--portalFontSize12);width:100%;height:40px;line-height:40px;color:#000;text-align:left;padding-left:15px;background-color:#dcdcdc;margin:0}.CustomTip .AppCenter .AppCenterCont[data-v-6fa37277],.CustomTip .Skin .AppCenterCont[data-v-6fa37277]{width:100%;height:calc(100% - 140px);padding:10px 0;zoom:1;overflow-y:auto}.CustomTip .AppCenter .AppCenterCont[data-v-6fa37277]:after,.CustomTip .AppCenter .AppCenterCont[data-v-6fa37277]:before,.CustomTip .Skin .AppCenterCont[data-v-6fa37277]:after,.CustomTip .Skin .AppCenterCont[data-v-6fa37277]:before{content:\" \";display:table}.CustomTip .AppCenter .AppCenterCont[data-v-6fa37277]:after,.CustomTip .Skin .AppCenterCont[data-v-6fa37277]:after{clear:both}.CustomTip .AppCenter .AppCenterCont li[data-v-6fa37277],.CustomTip .Skin .AppCenterCont li[data-v-6fa37277]{width:30%;height:60px;margin-left:2.5%;float:left;background-color:#ebeef5;margin-bottom:8px;position:relative;font-size:var(--portalFontSize12);text-align:center;padding:5px 0;border:1px solid #ebeef5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.CustomTip .AppCenter .AppCenterCont li[data-v-6fa37277]:hover,.CustomTip .Skin .AppCenterCont li[data-v-6fa37277]:hover{border:1px solid #1d4aff}.CustomTip .AppCenter .AppCenterCont li .chooseIcon[data-v-6fa37277],.CustomTip .Skin .AppCenterCont li .chooseIcon[data-v-6fa37277]{font-size:16px;position:absolute;top:-6px;right:-6px}.CustomTip .AppCenter .AppCenterCont li p[data-v-6fa37277],.CustomTip .Skin .AppCenterCont li p[data-v-6fa37277]{font-size:var(--portalFontSize12);margin:0;padding:0 2px}.CustomTip .AppCenter .AppCenterCont li .app-icon[data-v-6fa37277],.CustomTip .Skin .AppCenterCont li .app-icon[data-v-6fa37277]{width:40px;height:40px;margin:5px}.CustomTip .AppCenter .bottom-btn[data-v-6fa37277],.CustomTip .Skin .bottom-btn[data-v-6fa37277]{height:60px;text-align:center}.app-wrapper[data-v-6fa37277]{height:100%;overflow:auto;position:relative}.portal-main[data-v-6fa37277]{height:auto;padding-bottom:0!important;position:relative;margin-left:auto;margin-right:auto}.portal-main[data-v-6fa37277]:after{display:block;content:\"\";visibility:hidden;clear:both}.portal-main .el-scrollbar[data-v-6fa37277]{width:100%;height:100%}.portal-main .el-scrollbar[data-v-6fa37277] .el-scrollbar__wrap{overflow-x:hidden}.portal-main .okStyle[data-v-6fa37277]{background-color:#44a544;color:#fff}.portal-main .noStyle[data-v-6fa37277],.portal-main .okStyle[data-v-6fa37277]{position:absolute;top:10px;width:90%;height:30px;left:5%;text-align:center;line-height:30px;font-size:var(--portalFontSize12)}.portal-main .noStyle[data-v-6fa37277]{background-color:#fb5454;color:#000}.portal-main .lizz[data-v-6fa37277]{background-color:hsla(0,0%,100%,.2)}.portal-main .lizz[data-v-6fa37277],.portal-main .lizz2[data-v-6fa37277]{position:absolute;top:0;left:0;width:100%;height:100%;display:block;z-index:1;padding:6px;cursor:pointer}.portal-main .lizz2[data-v-6fa37277]{background:rgba(83,168,255,.2);border:1px solid #1d4aff;border-radius:2px}.portal-main[data-v-6fa37277] .mouseEnditDiv{width:100%;height:40px;position:relative;top:0;right:0;zoom:1;display:none}.portal-main[data-v-6fa37277] .mouseEnditDiv :after{display:block;content:\"\";visibility:hidden;clear:both}.portal-main[data-v-6fa37277] .mouseEnditDiv img{width:25px;height:25px;float:right;margin:0 5px;display:block;cursor:pointer}.portal-main li[data-v-6fa37277]{height:316px;padding:6px}.chosen[data-v-6fa37277]{border:2px solid #1d4aff!important}.info-drag[data-v-6fa37277]{width:100%;position:absolute;left:0;z-index:1000;height:50px;text-align:center;line-height:50px;font-size:var(--portalFontSize13)}.info-drag.error[data-v-6fa37277]{background:#ffe7e7;border:1px solid #e94243;color:#e94243}.info-drag.success[data-v-6fa37277]{background:#f0f9eb;border:1px solid #67c23a;color:#67c23a}[data-v-6fa37277] .el-radio{margin:6px!important}[data-v-6fa37277] .el-radio__label{padding-left:0!important}.applet-panel[data-v-6fa37277]{height:440px;overflow-y:auto;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.applet-panel[data-v-6fa37277]::-webkit-scrollbar{display:none}.applet-panel[data-v-6fa37277] .el-collapse-item__header{padding-left:10px;font-weight:600}.AppContent[data-v-6fa37277]{height:480px;overflow-y:auto;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.AppContent[data-v-6fa37277]::-webkit-scrollbar{display:none}.AppContent .header[data-v-6fa37277]{width:90px;height:16px;background:green;padding:0}.AppContent .footer[data-v-6fa37277]{width:90px;background:#f0f3f8}.AppContent .footer .left[data-v-6fa37277]{width:16px;height:56px;background:#8a2be2}", ""]);
21633
+ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-2660bb5f]:export{stdMenuBgcolor:var(--lmBgColor);stdMenuHover:var(--lmBgColorActive)!important;stdMenuText:var(--lmTextColor)!important;stdMenuAcitveText:var(--lmTextColorActive)!important;stdSubMenuBgcolor:var(--lmBgColor);stdSubMenuHover:hsla(193,8%,67%,.42);stdSubMenuActiveText:var(--lmTextColorActive)!important;darkMenuBgcolor:#304156;darkMenuHover:#263445;darkMenuText:#bfcbd9;darkMenuAcitveText:#ffd04b;darkSubMenuBgcolor:#384b63;darkSubMenuHover:#263445;darkSubMenuActiveText:#ffd04b;sideBarWidth:210px;formLabelWidth:133px;lightBlue:var(--subjectColor)}li[data-v-2660bb5f],ul[data-v-2660bb5f]{list-style:none;margin:0;padding:0}[data-v-2660bb5f] .el-loading-mask{z-index:1!important}.sk-g[data-v-2660bb5f]{position:relative;padding-top:80px;width:100px;text-align:left;padding-left:6px}.sk-g .skin-color[data-v-2660bb5f]{width:90px;height:72px;position:absolute;top:0;left:50%;margin-left:-45px;border:1px solid #dcdfe7}.active[data-v-2660bb5f]{background:green}.sortable-ghost[data-v-2660bb5f]{background-color:#000;opacity:1}.sortable-ghost[data-v-2660bb5f]:after{width:100px;height:10px;background-color:#000;display:block;position:relative;top:0;left:0}.s-color-li[data-v-2660bb5f]{width:56px;height:auto;text-align:center;margin-right:12px;float:left}.s-color-li[data-v-2660bb5f]:last-child{margin-right:0}.s-color-li.skinBlack div[data-v-2660bb5f],.s-color-li.skinOrange div[data-v-2660bb5f],.s-color-li.skinScienceBlue div[data-v-2660bb5f],.s-color-li.skinTaleBlue div[data-v-2660bb5f]{background-color:var(--bgColor)}.s-color-li div[data-v-2660bb5f]{width:40px;height:40px;margin:0 auto;border:1px solid #f2f2f2}.s-color-li p[data-v-2660bb5f]{color:#555;height:16px;line-height:16px}.s-color-li.is-active div[data-v-2660bb5f]{outline:2px solid var(--subjectColor)}.s-color-li.is-active p[data-v-2660bb5f]{color:var(--subjectColor)}.CustomTip[data-v-2660bb5f]{width:340px;height:650px;position:fixed;top:0;left:0;z-index:2001;background-color:#fff;border:1px solid #e4e7ed;border-radius:4px;overflow:hidden;-webkit-box-shadow:1px 1px 5px 0 rgba(0,0,0,.3);box-shadow:1px 1px 5px 0 rgba(0,0,0,.3);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.CustomTip[data-v-2660bb5f] .el-tabs__nav{width:100%}.CustomTip[data-v-2660bb5f] .el-tabs__item{width:50%;text-align:center;padding:0}.CustomTip .fl[data-v-2660bb5f]{width:100%;height:100%}.CustomTip .fl .fl-content[data-v-2660bb5f]{height:calc(100% - 50px)}.CustomTip .fl .fl-content[data-v-2660bb5f] .el-tabs{height:100%}.CustomTip .fl .fl-content[data-v-2660bb5f] .el-tabs .el-tabs__content{height:calc(100% - 55px)}.CustomTip .fl .fl-content[data-v-2660bb5f] .el-tabs .el-tabs__content .el-tab-pane{height:100%}.CustomTip .header[data-v-2660bb5f]{width:100%;height:50px;padding:12px 15px;line-height:26px;position:relative;font-size:16px;font-family:Microsoft YaHei;font-weight:400;color:#333;text-align:center;background-color:#ebeef5;cursor:move}.CustomTip .header .icon-close[data-v-2660bb5f]{position:absolute;right:5px;top:5px;font-size:16px;color:#666;cursor:pointer}.CustomTip .tip-body[data-v-2660bb5f]{width:100%;height:auto;background-color:inherit;padding:20px 0;font-size:var(--portalFontSize14);color:#333}.CustomTip .tip-body .msg-tit[data-v-2660bb5f]{font-size:var(--portalFontSize15)}.CustomTip .tip-body .msg-from[data-v-2660bb5f]{margin-top:40px}.CustomTip .AppCenter[data-v-2660bb5f],.CustomTip .Skin[data-v-2660bb5f]{width:100%;height:100%}.CustomTip .AppCenter .p1[data-v-2660bb5f],.CustomTip .Skin .p1[data-v-2660bb5f]{font-size:var(--portalFontSize12);width:100%;height:40px;line-height:40px;color:#000;text-align:center;margin:0}.CustomTip .AppCenter .p2[data-v-2660bb5f],.CustomTip .Skin .p2[data-v-2660bb5f]{font-size:var(--portalFontSize12);width:100%;height:40px;line-height:40px;color:#000;text-align:left;padding-left:15px;background-color:#dcdcdc;margin:0}.CustomTip .AppCenter .AppCenterCont[data-v-2660bb5f],.CustomTip .Skin .AppCenterCont[data-v-2660bb5f]{width:100%;height:calc(100% - 140px);padding:10px 0;zoom:1;overflow-y:auto}.CustomTip .AppCenter .AppCenterCont[data-v-2660bb5f]:after,.CustomTip .AppCenter .AppCenterCont[data-v-2660bb5f]:before,.CustomTip .Skin .AppCenterCont[data-v-2660bb5f]:after,.CustomTip .Skin .AppCenterCont[data-v-2660bb5f]:before{content:\" \";display:table}.CustomTip .AppCenter .AppCenterCont[data-v-2660bb5f]:after,.CustomTip .Skin .AppCenterCont[data-v-2660bb5f]:after{clear:both}.CustomTip .AppCenter .AppCenterCont li[data-v-2660bb5f],.CustomTip .Skin .AppCenterCont li[data-v-2660bb5f]{width:30%;height:60px;margin-left:2.5%;float:left;background-color:#ebeef5;margin-bottom:8px;position:relative;font-size:var(--portalFontSize12);text-align:center;padding:5px 0;border:1px solid #ebeef5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.CustomTip .AppCenter .AppCenterCont li[data-v-2660bb5f]:hover,.CustomTip .Skin .AppCenterCont li[data-v-2660bb5f]:hover{border:1px solid #1d4aff}.CustomTip .AppCenter .AppCenterCont li .chooseIcon[data-v-2660bb5f],.CustomTip .Skin .AppCenterCont li .chooseIcon[data-v-2660bb5f]{font-size:16px;position:absolute;top:-6px;right:-6px}.CustomTip .AppCenter .AppCenterCont li p[data-v-2660bb5f],.CustomTip .Skin .AppCenterCont li p[data-v-2660bb5f]{font-size:var(--portalFontSize12);margin:0;padding:0 2px}.CustomTip .AppCenter .AppCenterCont li .app-icon[data-v-2660bb5f],.CustomTip .Skin .AppCenterCont li .app-icon[data-v-2660bb5f]{width:40px;height:40px;margin:5px}.CustomTip .AppCenter .bottom-btn[data-v-2660bb5f],.CustomTip .Skin .bottom-btn[data-v-2660bb5f]{height:60px;text-align:center}.app-wrapper[data-v-2660bb5f]{height:100%;overflow:auto;position:relative}.portal-main[data-v-2660bb5f]{height:auto;padding-bottom:0!important;position:relative;margin-left:auto;margin-right:auto}.portal-main[data-v-2660bb5f]:after{display:block;content:\"\";visibility:hidden;clear:both}.portal-main .el-scrollbar[data-v-2660bb5f]{width:100%;height:100%}.portal-main .el-scrollbar[data-v-2660bb5f] .el-scrollbar__wrap{overflow-x:hidden}.portal-main .okStyle[data-v-2660bb5f]{background-color:#44a544;color:#fff}.portal-main .noStyle[data-v-2660bb5f],.portal-main .okStyle[data-v-2660bb5f]{position:absolute;top:10px;width:90%;height:30px;left:5%;text-align:center;line-height:30px;font-size:var(--portalFontSize12)}.portal-main .noStyle[data-v-2660bb5f]{background-color:#fb5454;color:#000}.portal-main .lizz[data-v-2660bb5f]{background-color:hsla(0,0%,100%,.2)}.portal-main .lizz[data-v-2660bb5f],.portal-main .lizz2[data-v-2660bb5f]{position:absolute;top:0;left:0;width:100%;height:100%;display:block;z-index:1;padding:6px;cursor:pointer}.portal-main .lizz2[data-v-2660bb5f]{background:rgba(83,168,255,.2);border:1px solid #1d4aff;border-radius:2px}.portal-main[data-v-2660bb5f] .mouseEnditDiv{width:100%;height:40px;position:relative;top:0;right:0;zoom:1;display:none}.portal-main[data-v-2660bb5f] .mouseEnditDiv :after{display:block;content:\"\";visibility:hidden;clear:both}.portal-main[data-v-2660bb5f] .mouseEnditDiv img{width:25px;height:25px;float:right;margin:0 5px;display:block;cursor:pointer}.portal-main li[data-v-2660bb5f]{height:316px;padding:6px}.chosen[data-v-2660bb5f]{border:2px solid #1d4aff!important}.info-drag[data-v-2660bb5f]{width:100%;position:absolute;left:0;z-index:1000;height:50px;text-align:center;line-height:50px;font-size:var(--portalFontSize13)}.info-drag.error[data-v-2660bb5f]{background:#ffe7e7;border:1px solid #e94243;color:#e94243}.info-drag.success[data-v-2660bb5f]{background:#f0f9eb;border:1px solid #67c23a;color:#67c23a}[data-v-2660bb5f] .el-radio{margin:6px!important}[data-v-2660bb5f] .el-radio__label{padding-left:0!important}.applet-panel[data-v-2660bb5f]{height:440px;overflow-y:auto;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.applet-panel[data-v-2660bb5f]::-webkit-scrollbar{display:none}.applet-panel[data-v-2660bb5f] .el-collapse-item__header{padding-left:10px;font-weight:600}.AppContent[data-v-2660bb5f]{height:480px;overflow-y:auto;overflow-y:scroll;-ms-overflow-style:none;scrollbar-width:none}.AppContent[data-v-2660bb5f]::-webkit-scrollbar{display:none}.AppContent .header[data-v-2660bb5f]{width:90px;height:16px;background:green;padding:0}.AppContent .footer[data-v-2660bb5f]{width:90px;background:#f0f3f8}.AppContent .footer .left[data-v-2660bb5f]{width:16px;height:56px;background:#8a2be2}", ""]);
21619
21634
  // Exports
21620
21635
  /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
21621
21636
 
@@ -21643,7 +21658,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-6bd3c35f] .todo-row .cell{line
21643
21658
 
21644
21659
  /***/ }),
21645
21660
 
21646
- /***/ 6484:
21661
+ /***/ 6827:
21647
21662
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
21648
21663
 
21649
21664
  "use strict";
@@ -21657,7 +21672,7 @@ __webpack_require__.r(__webpack_exports__);
21657
21672
 
21658
21673
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
21659
21674
  // Module
21660
- ___CSS_LOADER_EXPORT___.push([module.id, "div.time[data-v-1ddea990]{margin:5px}div.time[data-v-1ddea990] .el-date-editor.el-range-editor{width:100%;cursor:pointer}div.time[data-v-1ddea990] .el-range-editor--medium .el-range-input{cursor:pointer}div.time[data-v-1ddea990] .el-range-editor--medium .el-range__icon{display:none!important}.tdw17[data-v-1ddea990]{width:20%!important}[data-v-1ddea990] .wfitem-type .el-checkbox__label{min-width:80px}", ""]);
21675
+ ___CSS_LOADER_EXPORT___.push([module.id, "div.time[data-v-166404c8]{margin:5px}div.time[data-v-166404c8] .el-date-editor.el-range-editor{width:100%;cursor:pointer}div.time[data-v-166404c8] .el-range-editor--medium .el-range-input{cursor:pointer}div.time[data-v-166404c8] .el-range-editor--medium .el-range__icon{display:none!important}.tdw17[data-v-166404c8]{width:20%!important}[data-v-166404c8] .wfitem-type .el-checkbox__label{min-width:80px}", ""]);
21661
21676
  // Exports
21662
21677
  /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
21663
21678
 
@@ -52494,19 +52509,19 @@ var update = add("7d48b9e4", content, true, {"sourceMap":false,"shadowMode":fals
52494
52509
 
52495
52510
  /***/ }),
52496
52511
 
52497
- /***/ 3576:
52512
+ /***/ 9858:
52498
52513
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
52499
52514
 
52500
52515
  // style-loader: Adds some css to the DOM by adding a <style> tag
52501
52516
 
52502
52517
  // load the styles
52503
- var content = __webpack_require__(4942);
52518
+ var content = __webpack_require__(524);
52504
52519
  if(content.__esModule) content = content.default;
52505
52520
  if(typeof content === 'string') content = [[module.id, content, '']];
52506
52521
  if(content.locals) module.exports = content.locals;
52507
52522
  // add the styles to the DOM
52508
52523
  var add = (__webpack_require__(9548)/* ["default"] */ .A)
52509
- var update = add("2d45a19a", content, true, {"sourceMap":false,"shadowMode":false});
52524
+ var update = add("924e8d7e", content, true, {"sourceMap":false,"shadowMode":false});
52510
52525
 
52511
52526
  /***/ }),
52512
52527
 
@@ -52526,19 +52541,19 @@ var update = add("f46ec94a", content, true, {"sourceMap":false,"shadowMode":fals
52526
52541
 
52527
52542
  /***/ }),
52528
52543
 
52529
- /***/ 4110:
52544
+ /***/ 8209:
52530
52545
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
52531
52546
 
52532
52547
  // style-loader: Adds some css to the DOM by adding a <style> tag
52533
52548
 
52534
52549
  // load the styles
52535
- var content = __webpack_require__(6484);
52550
+ var content = __webpack_require__(6827);
52536
52551
  if(content.__esModule) content = content.default;
52537
52552
  if(typeof content === 'string') content = [[module.id, content, '']];
52538
52553
  if(content.locals) module.exports = content.locals;
52539
52554
  // add the styles to the DOM
52540
52555
  var add = (__webpack_require__(9548)/* ["default"] */ .A)
52541
- var update = add("43dd4116", content, true, {"sourceMap":false,"shadowMode":false});
52556
+ var update = add("0a124c06", content, true, {"sourceMap":false,"shadowMode":false});
52542
52557
 
52543
52558
  /***/ }),
52544
52559
 
@@ -83223,8 +83238,8 @@ var wformChat_component = (0,componentNormalizer/* default */.A)(
83223
83238
  )
83224
83239
 
83225
83240
  /* harmony default export */ var wformChat = (wformChat_component.exports);
83226
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=template&id=1ddea990&scoped=true
83227
- var noticeSetupvue_type_template_id_1ddea990_scoped_true_render = function render() {
83241
+ ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=template&id=166404c8&scoped=true
83242
+ var noticeSetupvue_type_template_id_166404c8_scoped_true_render = function render() {
83228
83243
  var _vm = this,
83229
83244
  _c = _vm._self._c;
83230
83245
  return _c('PageContent', {
@@ -83705,7 +83720,7 @@ var noticeSetupvue_type_template_id_1ddea990_scoped_true_render = function rende
83705
83720
  }
83706
83721
  }, [_vm._v("保 存")])], 1)], 1);
83707
83722
  };
83708
- var noticeSetupvue_type_template_id_1ddea990_scoped_true_staticRenderFns = [];
83723
+ var noticeSetupvue_type_template_id_166404c8_scoped_true_staticRenderFns = [];
83709
83724
 
83710
83725
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=script&lang=js
83711
83726
  var noticeSetupvue_type_script_lang_js_moment = __webpack_require__(5093);
@@ -83774,7 +83789,7 @@ var noticeSetupvue_type_script_lang_js_moment = __webpack_require__(5093);
83774
83789
  url: this.moduleInfo.queryNoticeDataUrl
83775
83790
  }).then(function (response) {
83776
83791
  if (response.code === 'success') {
83777
- if (response.body.listdata.length === 0 || response.body.listdata[0].wfType == null) {
83792
+ if (response.body.listdata.length === 0 || response.body.listdata[0].wfType == null || response.body.listdata[0].passenger.isnew == 1) {
83778
83793
  _this2.$http({
83779
83794
  method: 'POST',
83780
83795
  contentType: 'application/x-www-form-urlencoded',
@@ -83788,8 +83803,8 @@ var noticeSetupvue_type_script_lang_js_moment = __webpack_require__(5093);
83788
83803
  _this2.vo.wfType = 1;
83789
83804
  _this2.vo.status = -1;
83790
83805
  _this2.vo.fileLevel = [];
83791
- _this2.vo.todoCountHint = [];
83792
- _this2.vo.msgTypes = [0];
83806
+ if (!_this2.vo.todoCountHint) _this2.vo.todoCountHint = [];
83807
+ if (!_this2.vo.msgTypes) _this2.vo.msgTypes = [0];
83793
83808
  _this2.vo.startTime = '08:30';
83794
83809
  _this2.vo.endTime = '12:00';
83795
83810
  _this2.vo.startTime1 = '14:00';
@@ -84023,9 +84038,9 @@ var noticeSetupvue_type_script_lang_js_moment = __webpack_require__(5093);
84023
84038
  });
84024
84039
  ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=script&lang=js
84025
84040
  /* harmony default export */ var noticeSetup_noticeSetupvue_type_script_lang_js = (noticeSetupvue_type_script_lang_js);
84026
- // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=style&index=0&id=1ddea990&prod&lang=scss&scoped=true
84027
- var noticeSetupvue_type_style_index_0_id_1ddea990_prod_lang_scss_scoped_true = __webpack_require__(4110);
84028
- ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=style&index=0&id=1ddea990&prod&lang=scss&scoped=true
84041
+ // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=style&index=0&id=166404c8&prod&lang=scss&scoped=true
84042
+ var noticeSetupvue_type_style_index_0_id_166404c8_prod_lang_scss_scoped_true = __webpack_require__(8209);
84043
+ ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue?vue&type=style&index=0&id=166404c8&prod&lang=scss&scoped=true
84029
84044
 
84030
84045
  ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/usersetting/noticeSetup/noticeSetup.vue
84031
84046
 
@@ -84038,11 +84053,11 @@ var noticeSetupvue_type_style_index_0_id_1ddea990_prod_lang_scss_scoped_true = _
84038
84053
 
84039
84054
  var noticeSetup_component = (0,componentNormalizer/* default */.A)(
84040
84055
  noticeSetup_noticeSetupvue_type_script_lang_js,
84041
- noticeSetupvue_type_template_id_1ddea990_scoped_true_render,
84042
- noticeSetupvue_type_template_id_1ddea990_scoped_true_staticRenderFns,
84056
+ noticeSetupvue_type_template_id_166404c8_scoped_true_render,
84057
+ noticeSetupvue_type_template_id_166404c8_scoped_true_staticRenderFns,
84043
84058
  false,
84044
84059
  null,
84045
- "1ddea990",
84060
+ "166404c8",
84046
84061
  null
84047
84062
 
84048
84063
  )
@@ -87159,8 +87174,8 @@ var ecweboffice_component = (0,componentNormalizer/* default */.A)(
87159
87174
  )
87160
87175
 
87161
87176
  /* harmony default export */ var ecweboffice = (ecweboffice_component.exports);
87162
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/webOffice/H5Office.vue?vue&type=template&id=2f772206
87163
- var H5Officevue_type_template_id_2f772206_render = function render() {
87177
+ ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/webOffice/H5Office.vue?vue&type=template&id=2be78f5c
87178
+ var H5Officevue_type_template_id_2be78f5c_render = function render() {
87164
87179
  var _vm = this,
87165
87180
  _c = _vm._self._c;
87166
87181
  return _c('div', [_c('el-button', {
@@ -87207,7 +87222,7 @@ var H5Officevue_type_template_id_2f772206_render = function render() {
87207
87222
  }
87208
87223
  })], 1);
87209
87224
  };
87210
- var H5Officevue_type_template_id_2f772206_staticRenderFns = [];
87225
+ var H5Officevue_type_template_id_2be78f5c_staticRenderFns = [];
87211
87226
 
87212
87227
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/webOffice/H5Office.vue?vue&type=script&lang=js
87213
87228
  function H5Officevue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return H5Officevue_type_script_lang_js_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, H5Officevue_type_script_lang_js_typeof(o); }
@@ -88314,6 +88329,8 @@ function H5Officevue_type_script_lang_js_asyncToGenerator(n) { return function (
88314
88329
  } else if (msg.MessageId === 'Doc_ModifiedStatus' && msg.Values.Modified) {
88315
88330
  messageBtn.checkSave = true;
88316
88331
  return;
88332
+ } else if (msg.MessageId === 'refresh') {
88333
+ return;
88317
88334
  }
88318
88335
  if (checkSave) {
88319
88336
  delete messageBtn.srcEvent.data;
@@ -88419,8 +88436,8 @@ function H5Officevue_type_script_lang_js_asyncToGenerator(n) { return function (
88419
88436
  ;
88420
88437
  var H5Office_component = (0,componentNormalizer/* default */.A)(
88421
88438
  webOffice_H5Officevue_type_script_lang_js,
88422
- H5Officevue_type_template_id_2f772206_render,
88423
- H5Officevue_type_template_id_2f772206_staticRenderFns,
88439
+ H5Officevue_type_template_id_2be78f5c_render,
88440
+ H5Officevue_type_template_id_2be78f5c_staticRenderFns,
88424
88441
  false,
88425
88442
  null,
88426
88443
  null,
@@ -91396,8 +91413,8 @@ var FileZnhg_component = (0,componentNormalizer/* default */.A)(
91396
91413
  )
91397
91414
 
91398
91415
  /* harmony default export */ var FileZnhg = (FileZnhg_component.exports);
91399
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=template&id=6fa37277&scoped=true
91400
- var drapViewvue_type_template_id_6fa37277_scoped_true_render = function render() {
91416
+ ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=template&id=2660bb5f&scoped=true
91417
+ var drapViewvue_type_template_id_2660bb5f_scoped_true_render = function render() {
91401
91418
  var _vm = this,
91402
91419
  _c = _vm._self._c;
91403
91420
  return _c('div', [_vm.showCustom ? _c('div', {
@@ -91921,15 +91938,15 @@ var drapViewvue_type_template_id_6fa37277_scoped_true_render = function render()
91921
91938
  }]
91922
91939
  }, [_vm._v("该模块已存在于当前页面,不能重复添加")])]) : _vm._e()], 1) : _vm._e()]);
91923
91940
  };
91924
- var drapViewvue_type_template_id_6fa37277_scoped_true_staticRenderFns = [];
91941
+ var drapViewvue_type_template_id_2660bb5f_scoped_true_staticRenderFns = [];
91925
91942
 
91926
91943
  // EXTERNAL MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=script&lang=js
91927
91944
  var drapViewvue_type_script_lang_js = __webpack_require__(6810);
91928
91945
  ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=script&lang=js
91929
91946
  /* harmony default export */ var portal_drapViewvue_type_script_lang_js = (drapViewvue_type_script_lang_js/* default */.A);
91930
- // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=style&index=0&id=6fa37277&prod&scoped=true&lang=scss
91931
- var drapViewvue_type_style_index_0_id_6fa37277_prod_scoped_true_lang_scss = __webpack_require__(3576);
91932
- ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=style&index=0&id=6fa37277&prod&scoped=true&lang=scss
91947
+ // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=style&index=0&id=2660bb5f&prod&scoped=true&lang=scss
91948
+ var drapViewvue_type_style_index_0_id_2660bb5f_prod_scoped_true_lang_scss = __webpack_require__(9858);
91949
+ ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/portal/drapView.vue?vue&type=style&index=0&id=2660bb5f&prod&scoped=true&lang=scss
91933
91950
 
91934
91951
  ;// CONCATENATED MODULE: ./packages/ecyoa/ecoa/src/portal/drapView.vue
91935
91952
 
@@ -91942,11 +91959,11 @@ var drapViewvue_type_style_index_0_id_6fa37277_prod_scoped_true_lang_scss = __we
91942
91959
 
91943
91960
  var drapView_component = (0,componentNormalizer/* default */.A)(
91944
91961
  portal_drapViewvue_type_script_lang_js,
91945
- drapViewvue_type_template_id_6fa37277_scoped_true_render,
91946
- drapViewvue_type_template_id_6fa37277_scoped_true_staticRenderFns,
91962
+ drapViewvue_type_template_id_2660bb5f_scoped_true_render,
91963
+ drapViewvue_type_template_id_2660bb5f_scoped_true_staticRenderFns,
91947
91964
  false,
91948
91965
  null,
91949
- "6fa37277",
91966
+ "2660bb5f",
91950
91967
  null
91951
91968
 
91952
91969
  )