eoss-ui 0.6.0 → 0.6.11

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.
Files changed (119) hide show
  1. package/lib/button-group.js +210 -198
  2. package/lib/button.js +2 -2
  3. package/lib/calendar.js +2 -2
  4. package/lib/card.js +2 -2
  5. package/lib/cascader.js +2 -2
  6. package/lib/checkbox-group.js +12 -30
  7. package/lib/clients.js +2 -2
  8. package/lib/data-table-form.js +2 -4
  9. package/lib/data-table.js +21 -36
  10. package/lib/date-picker.js +2 -2
  11. package/lib/dialog.js +16 -33
  12. package/lib/enterprise.js +2 -2
  13. package/lib/eoss-ui.common.js +1499 -938
  14. package/lib/error-page.js +2 -2
  15. package/lib/flow-group.js +2 -2
  16. package/lib/flow-list.js +4 -4
  17. package/lib/flow.js +476 -240
  18. package/lib/form.js +2 -4
  19. package/lib/handle-user.js +2 -2
  20. package/lib/handler.js +12 -12
  21. package/lib/icon.js +9 -9
  22. package/lib/icons.js +5 -5
  23. package/lib/index.js +1 -1
  24. package/lib/input-number.js +2 -2
  25. package/lib/input.js +2 -2
  26. package/lib/label.js +2 -2
  27. package/lib/layout.js +4 -4
  28. package/lib/login.js +728 -489
  29. package/lib/main.js +193 -114
  30. package/lib/menu.js +2 -2
  31. package/lib/nav.js +2 -2
  32. package/lib/notify.js +2 -2
  33. package/lib/page.js +2 -2
  34. package/lib/pagination.js +2 -2
  35. package/lib/player.js +11 -11
  36. package/lib/qr-code.js +4 -4
  37. package/lib/radio-group.js +10 -30
  38. package/lib/retrial-auth.js +9 -9
  39. package/lib/select-ganged.js +9 -9
  40. package/lib/select.js +8 -28
  41. package/lib/selector-panel.js +6 -8
  42. package/lib/selector.js +11 -11
  43. package/lib/sizer.js +2 -2
  44. package/lib/steps.js +2 -2
  45. package/lib/switch.js +9 -9
  46. package/lib/table-form.js +2 -2
  47. package/lib/tabs-panel.js +2 -2
  48. package/lib/tabs.js +2 -2
  49. package/lib/theme-chalk/base.css +1 -1
  50. package/lib/theme-chalk/flow.css +1 -1
  51. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  52. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  53. package/lib/theme-chalk/icon.css +1 -1
  54. package/lib/theme-chalk/icons.css +1 -1
  55. package/lib/theme-chalk/index.css +1 -1
  56. package/lib/theme-chalk/login.css +1 -1
  57. package/lib/theme-chalk/main.css +1 -1
  58. package/lib/theme-chalk/menu.css +1 -1
  59. package/lib/theme-chalk/simplicity.css +1 -1
  60. package/lib/theme-chalk/sizer.css +1 -1
  61. package/lib/theme-chalk/upload.css +1 -1
  62. package/lib/tips.js +2 -2
  63. package/lib/toolbar.js +2 -2
  64. package/lib/tree-group.js +6 -5
  65. package/lib/tree.js +2 -2
  66. package/lib/upload.js +6 -8
  67. package/lib/wujie.js +145 -145
  68. package/lib/wxlogin.js +145 -145
  69. package/package.json +2 -2
  70. package/packages/.DS_Store +0 -0
  71. package/packages/checkbox-group/.DS_Store +0 -0
  72. package/packages/checkbox-group/src/main.vue +10 -7
  73. package/packages/data-table/src/main.vue +23 -15
  74. package/packages/dialog/.DS_Store +0 -0
  75. package/packages/dialog/src/main.vue +13 -8
  76. package/packages/flow/src/component/SendMsg.vue +7 -1
  77. package/packages/flow/src/component/taskUnionExamine.vue +19 -1
  78. package/packages/flow/src/main.vue +70 -48
  79. package/packages/flow/src/processForm.vue +21 -5
  80. package/packages/flow/src/processReject.vue +31 -14
  81. package/packages/flow/src/startTaskRead.vue +22 -8
  82. package/packages/handler/src/main.vue +1 -1
  83. package/packages/icons/src/icon.json +1 -1
  84. package/packages/login/.DS_Store +0 -0
  85. package/packages/login/src/main.vue +211 -115
  86. package/packages/main/.DS_Store +0 -0
  87. package/packages/main/src/.DS_Store +0 -0
  88. package/packages/main/src/default/index.vue +2 -10
  89. package/packages/main/src/default/message.vue +13 -1
  90. package/packages/main/src/default/notice.vue +16 -4
  91. package/packages/main/src/main.vue +41 -13
  92. package/packages/main/src/simplicity/index.vue +11 -17
  93. package/packages/main/src/simplicity/message.vue +14 -1
  94. package/packages/main/src/simplicity/notice.vue +13 -1
  95. package/packages/radio-group/src/main.vue +10 -7
  96. package/packages/select/src/main.vue +10 -7
  97. package/packages/theme-chalk/lib/base.css +1 -1
  98. package/packages/theme-chalk/lib/flow.css +1 -1
  99. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  100. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  101. package/packages/theme-chalk/lib/icon.css +1 -1
  102. package/packages/theme-chalk/lib/icons.css +1 -1
  103. package/packages/theme-chalk/lib/index.css +1 -1
  104. package/packages/theme-chalk/lib/login.css +1 -1
  105. package/packages/theme-chalk/lib/main.css +1 -1
  106. package/packages/theme-chalk/lib/menu.css +1 -1
  107. package/packages/theme-chalk/lib/simplicity.css +1 -1
  108. package/packages/theme-chalk/lib/sizer.css +1 -1
  109. package/packages/theme-chalk/lib/upload.css +1 -1
  110. package/packages/theme-chalk/src/.DS_Store +0 -0
  111. package/packages/theme-chalk/src/common/var.scss +3 -1
  112. package/packages/theme-chalk/src/flow.scss +12 -0
  113. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  114. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  115. package/packages/theme-chalk/src/icon.scss +16 -0
  116. package/packages/theme-chalk/src/icons.scss +1 -1
  117. package/packages/theme-chalk/src/login.scss +609 -760
  118. package/packages/tree-group/src/main.vue +5 -1
  119. package/src/index.js +1 -1
@@ -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 = 20);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 19);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -93,12 +93,12 @@ module.exports =
93
93
  /* harmony import */ var _config_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
94
94
  /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9);
95
95
  /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
96
- /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(5);
96
+ /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
97
97
  /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_2__);
98
98
  /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(10);
99
99
  /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(json_bigint__WEBPACK_IMPORTED_MODULE_3__);
100
100
  /* harmony import */ var _webSocket__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(11);
101
- /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(6);
101
+ /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(7);
102
102
  /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_5__);
103
103
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
104
104
 
@@ -110,7 +110,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
110
110
  **/
111
111
 
112
112
  /* eslint-disable indent */
113
- var sm2 = __webpack_require__(21).sm2;
113
+ var sm2 = __webpack_require__(20).sm2;
114
114
 
115
115
 
116
116
 
@@ -3640,25 +3640,25 @@ module.exports = require("babel-runtime/regenerator");
3640
3640
  /* 4 */
3641
3641
  /***/ (function(module, exports) {
3642
3642
 
3643
- module.exports = require("interactjs");
3643
+ module.exports = require("wujie-vue2");
3644
3644
 
3645
3645
  /***/ }),
3646
3646
  /* 5 */
3647
3647
  /***/ (function(module, exports) {
3648
3648
 
3649
- module.exports = require("qs");
3649
+ module.exports = require("interactjs");
3650
3650
 
3651
3651
  /***/ }),
3652
3652
  /* 6 */
3653
3653
  /***/ (function(module, exports) {
3654
3654
 
3655
- module.exports = require("eoss-element");
3655
+ module.exports = require("qs");
3656
3656
 
3657
3657
  /***/ }),
3658
3658
  /* 7 */
3659
3659
  /***/ (function(module, exports) {
3660
3660
 
3661
- module.exports = require("wujie-vue2");
3661
+ module.exports = require("eoss-element");
3662
3662
 
3663
3663
  /***/ }),
3664
3664
  /* 8 */
@@ -3834,73 +3834,67 @@ module.exports = require("stompjs");
3834
3834
 
3835
3835
  /***/ }),
3836
3836
  /* 14 */
3837
- /***/ (function(module, exports) {
3838
-
3839
- module.exports = require("vue");
3840
-
3841
- /***/ }),
3842
- /* 15 */
3843
3837
  /***/ (function(module) {
3844
3838
 
3845
- module.exports = JSON.parse("[\"zuomian\",\"monitor\",\"maximize\",\"pointer-up\",\"pointer-left\",\"pointer-down\",\"tri-down\",\"retrograde\",\"rainfall\",\"caveat\",\"print\",\"alarm\",\"table\",\"duigouquan\",\"bumen\",\"mm\",\"accelerate\",\"quanping\",\"password\",\"qing\",\"kaifa\",\"daoru\",\"piaochongicon\",\"instructions\",\"notice\",\"wifi\",\"tishicuo\",\"minganciguanli\",\"switch-off\",\"switch-on\",\"narrow\",\"yidongduan\",\"web\",\"upload\",\"message\",\"go-back\",\"close\",\"shujutongji\",\"folder\",\"edit\",\"enter\",\"dian\",\"wendu\",\"shangwu\",\"shenbao\",\"magnifier\",\"project-add\",\"xiexian\",\"caidan\",\"tupian\",\"yinyu\",\"wenhao\",\"template\",\"daiban\",\"set\",\"zhengwen\",\"cuowu\",\"chenggong\",\"indent\",\"increase\",\"ziliaoku\",\"tuichu\",\"quit\",\"leaf\",\"refresh\",\"statistic\",\"gengduo\",\"lvyou\",\"mail\",\"user\",\"zhishi\",\"weizhi\",\"jinggao\",\"zuzhijigou\",\"xue\",\"fenxiang\",\"jinrong\",\"shanchu\",\"jianhao\",\"jiahao\",\"yinzhang\",\"renyuanqiehuan\",\"gouxuanzhong1\",\"circle\",\"fuxuankuang1\",\"fangkuang\",\"application\",\"wenjianjia\",\"jiaren\",\"xiugai\",\"duanxinguanli\",\"workbench\",\"rizhi\",\"gongwen\",\"qingshi\",\"shiwu\",\"official\",\"baogao\",\"document\",\"wodeyouxiang\",\"ziliaojiaohuan\",\"denglu\",\"podium\",\"fangkuai\",\"xuewei\",\"duoyun\",\"pm\",\"xiajia\",\"huanbao\",\"dunpai\",\"shu\",\"gongzuozheng\",\"more\",\"fenlei\",\"delete\",\"fengsu\",\"bar\",\"yuanqu\",\"duomeiti\",\"youjian\",\"qiye\",\"zuixinzixun\",\"biaoge\",\"omit\",\"diaotou\",\"jiantou-left\",\"jiantou-right\",\"jiantou-up\",\"roles\",\"jiantou-next\",\"chijiuhuacunchu\",\"zhuanhuan\",\"cloudy\",\"form\",\"wuye\",\"tri-up\",\"pointer-right\",\"bianji\",\"tri-right\",\"tri-left\",\"daimaguanli\",\"jiankong\",\"kaifazhong\",\"fujian\",\"bingtu\",\"zhuzhuangtu\",\"lose\",\"rmb\",\"move\",\"xiazai\",\"yiban\",\"laoshi\",\"clear\",\"jinyong\",\"yunxing\",\"weihu\",\"chakan\",\"pifu\",\"ren\",\"gouwuche\",\"loading2\",\"yulan\",\"ziliao\",\"yidong\",\"fenxiang11\",\"kaoqin\",\"change\",\"shidu\",\"portfolio\",\"info\",\"yanjing\",\"laba\",\"camera\",\"xitongxiaoxi\",\"xitongguanli\",\"webduan\",\"wagnz\",\"group\",\"shengqian\",\"jiantou-prev\",\"attention\",\"look\",\"guanzhu\",\"daikuan\",\"tubiao\",\"duigou\",\"star\",\"dayin\",\"xinzeng\",\"reduce\",\"goup\",\"calendar\",\"tree\",\"yingyong\",\"caution\",\"zhuanfa\",\"add\",\"zongtiqixian\",\"daochu\",\"gongwu\",\"ihouse\",\"chilun\",\"weixiu\",\"chengguo\",\"trophy\",\"duiwu\",\"qiehuanjiaose\",\"door\",\"shebei\",\"fangjian\",\"microscope\",\"huaxue\",\"shiyanshianquan\",\"shiyan\",\"qiyexinxi\",\"yewuxinxi\",\"lab\",\"shiyanguanli\",\"yuqing\",\"big-screen\",\"signal-search\",\"database\",\"star-mark\",\"cng\",\"professor\",\"informatization\",\"code\",\"science\",\"price\",\"xunhuan\",\"savings\",\"administration\",\"aid\",\"biao\",\"line\",\"xietong\",\"jingzheng\",\"enterprise\",\"datatable\",\"toubiao\",\"bingdu\",\"keji2\",\"qiyeku5\",\"touzi5\",\"zijinliu\",\"zhishichanquan3\",\"kejifuwu2\",\"zhishichanquan2\",\"zijinanquan\",\"kejifuwu1\",\"geju\",\"yiqingfangkong\",\"kejifuwu\",\"anquanfangkong\",\"shujufuwu\",\"shujuceng\",\"shujugongxiang\",\"flows\",\"setup\",\"shujulian\",\"caiwujianguan\",\"caiwuliushui\",\"mubiaogeju\",\"juxing\",\"fuwuqi\",\"touzijigou\",\"xiezilou\",\"jianzhu\",\"logo\",\"touzhi\",\"zijin\",\"fintech\",\"touzixiangmu\",\"library\",\"touziguanli\",\"zhongda\",\"ziyuan\",\"shujutai\",\"shujudongtai\",\"bank\",\"shujuzhongxin\",\"zhongyaomubiao\",\"touzishijian\",\"caiwuguanli\",\"mingzhong\",\"touzishenpi\",\"jingzhenggeju\",\"property\",\"keji\",\"qiyeku\",\"zhongyaojihui\",\"touzilicai\",\"zhishichanquan\",\"touzi\",\"tzz\",\"menu\",\"xiangmushu\",\"pdf\",\"jiazai\",\"gongsi\",\"rise\",\"jbxx\",\"zwxx\",\"jypx\",\"jcgl\",\"ndkh\",\"grjl\",\"shgx\",\"gou\",\"shijian\",\"fukuan\",\"guoji\",\"shoukuan\",\"down\",\"gongzuotai\",\"gaigedongtai\",\"xitongshezhi\",\"relation\",\"zuzhirenshi\",\"kaohepingjia\",\"caiwujiandu\",\"sanzhongyida\",\"mima\",\"xianshi\",\"zhanghao\",\"bangongshi\",\"checked\",\"checke\",\"help\",\"kuoda\",\"banli\",\"xiaoxi\",\"shouqicaidan\",\"shouqicaidan-right\",\"smile\",\"tongzhi\",\"guanji\",\"shuaxin\",\"guiji\",\"tianjiawenjianjia\",\"yunxiazai\",\"del\",\"touzifangan\",\"zongheguanli\",\"sanzhongyida_mian\",\"gongwenguanli1\",\"heguiguanli\",\"jingyingfenxi\",\"txl\",\"diannao\",\"renliziyuan\",\"caiwuxitong\",\"shiwuguanli\",\"shouye\",\"bangongyongpin\",\"sidebar\",\"zhidulashi\",\"log\",\"fawenguanli\",\"huiyiguanli\",\"zuzhishishi\",\"gongwenqianshou\",\"jinxiupeixun\",\"gongwenbao\",\"jiaohuan\",\"daibanshixiang\",\"richeng\",\"tongxunlu\",\"yongche\",\"yanzheng\",\"daibanxinxi\",\"shuben\",\"fanfu\",\"guangbo\",\"shuzhuangtu\",\"bengqiye\",\"tongguo\",\"dengdai\",\"cross\",\"daichuli\",\"zhenggai\",\"shouli\",\"shujuhecha\",\"guanli\",\"paper-file\",\"wenjian\",\"dakaiwenjian\",\"yewu\",\"jiance\",\"jiheguanli\",\"jinru\",\"arrow-right\",\"lingdao\",\"rencai\",\"prev\",\"next\",\"jianpan\",\"qrcode\",\"bohui\",\"homepage\",\"download\",\"gantanhao\",\"dingding\",\"weixin\",\"pad\",\"ios\",\"android\",\"txt\",\"doc\",\"audioo\",\"video\",\"zip\",\"shuru\",\"duanxin\",\"saoma\",\"youxiang\",\"word\",\"excel\",\"fileword\",\"picture\",\"ppt\",\"ca\",\"usb-key\",\"wenjianjiadakai\",\"yingyonglan\",\"home\",\"tiyanxinban\",\"shiyongjiuban\"]");
3839
+ module.exports = JSON.parse("[\"zuomian\",\"monitor\",\"maximize\",\"pointer-up\",\"pointer-left\",\"pointer-down\",\"tri-down\",\"retrograde\",\"rainfall\",\"caveat\",\"print\",\"alarm\",\"table\",\"duigouquan\",\"bumen\",\"mm\",\"accelerate\",\"quanping\",\"password\",\"qing\",\"kaifa\",\"daoru\",\"piaochongicon\",\"instructions\",\"notice\",\"wifi\",\"tishicuo\",\"minganciguanli\",\"switch-off\",\"switch-on\",\"narrow\",\"yidongduan\",\"web\",\"upload\",\"message\",\"go-back\",\"close\",\"shujutongji\",\"folder\",\"edit\",\"enter\",\"dian\",\"wendu\",\"shangwu\",\"shenbao\",\"magnifier\",\"project-add\",\"xiexian\",\"caidan\",\"tupian\",\"yinyu\",\"wenhao\",\"template\",\"daiban\",\"set\",\"zhengwen\",\"cuowu\",\"chenggong\",\"indent\",\"increase\",\"ziliaoku\",\"tuichu\",\"quit\",\"leaf\",\"refresh\",\"statistic\",\"gengduo\",\"lvyou\",\"mail\",\"user\",\"zhishi\",\"weizhi\",\"jinggao\",\"zuzhijigou\",\"xue\",\"fenxiang\",\"jinrong\",\"shanchu\",\"jianhao\",\"jiahao\",\"yinzhang\",\"renyuanqiehuan\",\"gouxuanzhong1\",\"circle\",\"fuxuankuang1\",\"fangkuang\",\"application\",\"wenjianjia\",\"jiaren\",\"xiugai\",\"duanxinguanli\",\"workbench\",\"rizhi\",\"gongwen\",\"qingshi\",\"shiwu\",\"official\",\"baogao\",\"document\",\"wodeyouxiang\",\"ziliaojiaohuan\",\"denglu\",\"podium\",\"fangkuai\",\"xuewei\",\"duoyun\",\"pm\",\"xiajia\",\"huanbao\",\"dunpai\",\"shu\",\"gongzuozheng\",\"more\",\"fenlei\",\"delete\",\"fengsu\",\"bar\",\"yuanqu\",\"duomeiti\",\"youjian\",\"qiye\",\"zuixinzixun\",\"biaoge\",\"omit\",\"diaotou\",\"jiantou-left\",\"jiantou-right\",\"jiantou-up\",\"roles\",\"jiantou-next\",\"chijiuhuacunchu\",\"zhuanhuan\",\"cloudy\",\"form\",\"wuye\",\"tri-up\",\"pointer-right\",\"bianji\",\"tri-right\",\"tri-left\",\"daimaguanli\",\"jiankong\",\"kaifazhong\",\"fujian\",\"bingtu\",\"zhuzhuangtu\",\"lose\",\"rmb\",\"move\",\"xiazai\",\"yiban\",\"laoshi\",\"clear\",\"jinyong\",\"yunxing\",\"weihu\",\"chakan\",\"pifu\",\"ren\",\"gouwuche\",\"loading2\",\"yulan\",\"ziliao\",\"yidong\",\"fenxiang11\",\"kaoqin\",\"change\",\"shidu\",\"portfolio\",\"info\",\"yanjing\",\"laba\",\"camera\",\"xitongxiaoxi\",\"xitongguanli\",\"webduan\",\"wagnz\",\"group\",\"shengqian\",\"jiantou-prev\",\"attention\",\"look\",\"guanzhu\",\"daikuan\",\"tubiao\",\"duigou\",\"star\",\"dayin\",\"xinzeng\",\"reduce\",\"goup\",\"calendar\",\"tree\",\"yingyong\",\"caution\",\"zhuanfa\",\"add\",\"zongtiqixian\",\"daochu\",\"gongwu\",\"ihouse\",\"chilun\",\"weixiu\",\"chengguo\",\"trophy\",\"duiwu\",\"qiehuanjiaose\",\"door\",\"shebei\",\"fangjian\",\"microscope\",\"huaxue\",\"shiyanshianquan\",\"shiyan\",\"qiyexinxi\",\"yewuxinxi\",\"lab\",\"shiyanguanli\",\"yuqing\",\"big-screen\",\"signal-search\",\"database\",\"star-mark\",\"cng\",\"professor\",\"informatization\",\"code\",\"science\",\"price\",\"xunhuan\",\"savings\",\"administration\",\"aid\",\"biao\",\"line\",\"xietong\",\"jingzheng\",\"enterprise\",\"datatable\",\"toubiao\",\"bingdu\",\"keji2\",\"qiyeku5\",\"touzi5\",\"zijinliu\",\"zhishichanquan3\",\"kejifuwu2\",\"zhishichanquan2\",\"zijinanquan\",\"kejifuwu1\",\"geju\",\"yiqingfangkong\",\"kejifuwu\",\"anquanfangkong\",\"shujufuwu\",\"shujuceng\",\"shujugongxiang\",\"flows\",\"setup\",\"shujulian\",\"caiwujianguan\",\"caiwuliushui\",\"mubiaogeju\",\"juxing\",\"fuwuqi\",\"touzijigou\",\"xiezilou\",\"jianzhu\",\"logo\",\"touzhi\",\"zijin\",\"fintech\",\"touzixiangmu\",\"library\",\"touziguanli\",\"zhongda\",\"ziyuan\",\"shujutai\",\"shujudongtai\",\"bank\",\"shujuzhongxin\",\"zhongyaomubiao\",\"touzishijian\",\"caiwuguanli\",\"mingzhong\",\"touzishenpi\",\"jingzhenggeju\",\"property\",\"keji\",\"qiyeku\",\"zhongyaojihui\",\"touzilicai\",\"zhishichanquan\",\"touzi\",\"tzz\",\"menu\",\"xiangmushu\",\"pdf\",\"jiazai\",\"gongsi\",\"rise\",\"jbxx\",\"zwxx\",\"jypx\",\"jcgl\",\"ndkh\",\"grjl\",\"shgx\",\"gou\",\"shijian\",\"fukuan\",\"guoji\",\"shoukuan\",\"down\",\"gongzuotai\",\"gaigedongtai\",\"xitongshezhi\",\"relation\",\"zuzhirenshi\",\"kaohepingjia\",\"caiwujiandu\",\"sanzhongyida\",\"mima\",\"xianshi\",\"zhanghao\",\"bangongshi\",\"checked\",\"checke\",\"help\",\"kuoda\",\"banli\",\"xiaoxi\",\"shouqicaidan\",\"shouqicaidan-right\",\"smile\",\"tongzhi\",\"guanji\",\"shuaxin\",\"guiji\",\"tianjiawenjianjia\",\"yunxiazai\",\"del\",\"touzifangan\",\"zongheguanli\",\"sanzhongyida_mian\",\"gongwenguanli1\",\"heguiguanli\",\"jingyingfenxi\",\"txl\",\"diannao\",\"renliziyuan\",\"caiwuxitong\",\"shiwuguanli\",\"shouye\",\"bangongyongpin\",\"sidebar\",\"zhidulashi\",\"log\",\"fawenguanli\",\"huiyiguanli\",\"zuzhishishi\",\"gongwenqianshou\",\"jinxiupeixun\",\"gongwenbao\",\"jiaohuan\",\"daibanshixiang\",\"richeng\",\"tongxunlu\",\"yongche\",\"yanzheng\",\"daibanxinxi\",\"shuben\",\"fanfu\",\"guangbo\",\"shuzhuangtu\",\"bengqiye\",\"tongguo\",\"dengdai\",\"cross\",\"daichuli\",\"zhenggai\",\"shouli\",\"shujuhecha\",\"guanli\",\"paper-file\",\"wenjian\",\"dakaiwenjian\",\"yewu\",\"jiance\",\"jiheguanli\",\"jinru\",\"arrow-right\",\"lingdao\",\"rencai\",\"prev\",\"next\",\"jianpan\",\"qrcode\",\"bohui\",\"homepage\",\"download\",\"gantanhao\",\"dingding\",\"weixin\",\"pad\",\"ios\",\"android\",\"txt\",\"doc\",\"audioo\",\"video\",\"zip\",\"shuru\",\"duanxin\",\"saoma\",\"youxiang\",\"word\",\"excel\",\"fileword\",\"picture\",\"ppt\",\"ca\",\"usb-key\",\"wenjianjiadakai\",\"yingyonglan\",\"home\",\"tiyanxinban\",\"shiyongjiuban\",\"zhuomian\",\"scan\",\"youbian\",\"zuobian\"]");
3846
3840
 
3847
3841
  /***/ }),
3848
- /* 16 */
3842
+ /* 15 */
3849
3843
  /***/ (function(module, exports) {
3850
3844
 
3851
3845
  module.exports = require("video.js/dist/lang/zh-CN.json");
3852
3846
 
3853
3847
  /***/ }),
3854
- /* 17 */
3848
+ /* 16 */
3855
3849
  /***/ (function(module, exports) {
3856
3850
 
3857
3851
  module.exports = require("eoss-element/src/utils/clickoutside");
3858
3852
 
3859
3853
  /***/ }),
3860
- /* 18 */
3854
+ /* 17 */
3861
3855
  /***/ (function(module, exports) {
3862
3856
 
3863
3857
  module.exports = require("sortablejs");
3864
3858
 
3865
3859
  /***/ }),
3866
- /* 19 */
3860
+ /* 18 */
3867
3861
  /***/ (function(module, exports) {
3868
3862
 
3869
3863
  module.exports = require("js-base64");
3870
3864
 
3871
3865
  /***/ }),
3872
- /* 20 */
3866
+ /* 19 */
3873
3867
  /***/ (function(module, exports, __webpack_require__) {
3874
3868
 
3875
- module.exports = __webpack_require__(25);
3869
+ module.exports = __webpack_require__(24);
3876
3870
 
3877
3871
 
3878
3872
  /***/ }),
3879
- /* 21 */
3873
+ /* 20 */
3880
3874
  /***/ (function(module, exports) {
3881
3875
 
3882
3876
  module.exports = require("sm-crypto");
3883
3877
 
3884
3878
  /***/ }),
3885
- /* 22 */
3879
+ /* 21 */
3886
3880
  /***/ (function(module, exports) {
3887
3881
 
3888
3882
  module.exports = require("slate");
3889
3883
 
3890
3884
  /***/ }),
3891
- /* 23 */
3885
+ /* 22 */
3892
3886
  /***/ (function(module, exports) {
3893
3887
 
3894
3888
  module.exports = require("video.js/dist/video-js.css");
3895
3889
 
3896
3890
  /***/ }),
3897
- /* 24 */
3891
+ /* 23 */
3898
3892
  /***/ (function(module, exports) {
3899
3893
 
3900
3894
  module.exports = require("qrcode");
3901
3895
 
3902
3896
  /***/ }),
3903
- /* 25 */
3897
+ /* 24 */
3904
3898
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3905
3899
 
3906
3900
  "use strict";
@@ -6171,8 +6165,8 @@ cascader_src_main.install = function (Vue) {
6171
6165
  };
6172
6166
 
6173
6167
  /* harmony default export */ var cascader = (cascader_src_main);
6174
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox-group/src/main.vue?vue&type=template&id=6858c5b1&
6175
- var mainvue_type_template_id_6858c5b1_render = function () {
6168
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox-group/src/main.vue?vue&type=template&id=e9ea73d6&
6169
+ var mainvue_type_template_id_e9ea73d6_render = function () {
6176
6170
  var _vm = this
6177
6171
  var _h = _vm.$createElement
6178
6172
  var _c = _vm._self._c || _h
@@ -6304,11 +6298,11 @@ var mainvue_type_template_id_6858c5b1_render = function () {
6304
6298
  )
6305
6299
  : _vm._e()
6306
6300
  }
6307
- var mainvue_type_template_id_6858c5b1_staticRenderFns = []
6308
- mainvue_type_template_id_6858c5b1_render._withStripped = true
6301
+ var mainvue_type_template_id_e9ea73d6_staticRenderFns = []
6302
+ mainvue_type_template_id_e9ea73d6_render._withStripped = true
6309
6303
 
6310
6304
 
6311
- // CONCATENATED MODULE: ./packages/checkbox-group/src/main.vue?vue&type=template&id=6858c5b1&
6305
+ // CONCATENATED MODULE: ./packages/checkbox-group/src/main.vue?vue&type=template&id=e9ea73d6&
6312
6306
 
6313
6307
  // EXTERNAL MODULE: ./src/config/api.js
6314
6308
  var api = __webpack_require__(1);
@@ -6338,14 +6332,6 @@ var store_store = {
6338
6332
  };
6339
6333
  window.__store = store_store;
6340
6334
  /* harmony default export */ var utils_store = (store_store);
6341
- // EXTERNAL MODULE: external "vue"
6342
- var external_vue_ = __webpack_require__(14);
6343
- var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
6344
-
6345
- // CONCATENATED MODULE: ./src/utils/bus.js
6346
-
6347
-
6348
- /* harmony default export */ var bus = (new external_vue_default.a());
6349
6335
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox-group/src/main.vue?vue&type=script&lang=js&
6350
6336
  var checkbox_group_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
6351
6337
 
@@ -6409,7 +6395,6 @@ var checkbox_group_src_mainvue_type_script_lang_js_extends = Object.assign || fu
6409
6395
 
6410
6396
 
6411
6397
 
6412
-
6413
6398
  /* harmony default export */ var checkbox_group_src_mainvue_type_script_lang_js_ = ({
6414
6399
  name: 'EsCheckboxGroup',
6415
6400
  inheritAttrs: false,
@@ -6624,7 +6609,8 @@ var checkbox_group_src_mainvue_type_script_lang_js_extends = Object.assign || fu
6624
6609
  if (res.rCode === 0) {
6625
6610
  _this3.options = JSON.parse(JSON.stringify(res.results));
6626
6611
  if (sysCode || _this3.dataKey) {
6627
- bus.$emit(sysCode || _this3.dataKey, JSON.parse(JSON.stringify(_this3.options)));
6612
+ var bus = _this3.bus || _this3.$root.Bus;
6613
+ bus && bus.$emit(sysCode || _this3.dataKey, JSON.parse(JSON.stringify(_this3.options)));
6628
6614
  utils_store.set(sysCode, JSON.parse(JSON.stringify(res.results)));
6629
6615
  }
6630
6616
  } else {
@@ -6653,10 +6639,12 @@ var checkbox_group_src_mainvue_type_script_lang_js_extends = Object.assign || fu
6653
6639
  this.options = val;
6654
6640
  },
6655
6641
  bindEventBus: function bindEventBus() {
6656
- bus.$on(this.sysCode || this.dataKey, this.setOptions);
6642
+ var bus = this.bus || this.$root.Bus;
6643
+ bus && bus.$on(this.sysCode || this.dataKey, this.setOptions);
6657
6644
  },
6658
6645
  unbindEventBus: function unbindEventBus() {
6659
- bus.$off(this.sysCode || this.dataKey, this.setOptions);
6646
+ var bus = this.bus || this.$root.Bus;
6647
+ bus && bus.$off(this.sysCode || this.dataKey, this.setOptions);
6660
6648
  }
6661
6649
  },
6662
6650
  beforeDestroy: function beforeDestroy() {
@@ -6675,8 +6663,8 @@ var checkbox_group_src_mainvue_type_script_lang_js_extends = Object.assign || fu
6675
6663
 
6676
6664
  var checkbox_group_src_main_component = normalizeComponent(
6677
6665
  packages_checkbox_group_src_mainvue_type_script_lang_js_,
6678
- mainvue_type_template_id_6858c5b1_render,
6679
- mainvue_type_template_id_6858c5b1_staticRenderFns,
6666
+ mainvue_type_template_id_e9ea73d6_render,
6667
+ mainvue_type_template_id_e9ea73d6_staticRenderFns,
6680
6668
  false,
6681
6669
  null,
6682
6670
  null,
@@ -7035,8 +7023,8 @@ clients_src_main.install = function (Vue) {
7035
7023
  };
7036
7024
 
7037
7025
  /* harmony default export */ var clients = (clients_src_main);
7038
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=260d7f48&
7039
- var mainvue_type_template_id_260d7f48_render = function () {
7026
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=a8ae27ba&
7027
+ var mainvue_type_template_id_a8ae27ba_render = function () {
7040
7028
  var _vm = this
7041
7029
  var _h = _vm.$createElement
7042
7030
  var _c = _vm._self._c || _h
@@ -7434,11 +7422,11 @@ var mainvue_type_template_id_260d7f48_render = function () {
7434
7422
  1
7435
7423
  )
7436
7424
  }
7437
- var mainvue_type_template_id_260d7f48_staticRenderFns = []
7438
- mainvue_type_template_id_260d7f48_render._withStripped = true
7425
+ var mainvue_type_template_id_a8ae27ba_staticRenderFns = []
7426
+ mainvue_type_template_id_a8ae27ba_render._withStripped = true
7439
7427
 
7440
7428
 
7441
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=260d7f48&
7429
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=a8ae27ba&
7442
7430
 
7443
7431
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=271bb842&
7444
7432
  var childrenvue_type_template_id_271bb842_render = function () {
@@ -9591,7 +9579,7 @@ var sizer_component = normalizeComponent(
9591
9579
 
9592
9580
  /* harmony default export */ var sizer = (sizer_component.exports);
9593
9581
  // EXTERNAL MODULE: external "qs"
9594
- var external_qs_ = __webpack_require__(5);
9582
+ var external_qs_ = __webpack_require__(6);
9595
9583
  var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
9596
9584
 
9597
9585
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=script&lang=js&
@@ -9815,7 +9803,6 @@ var data_table_src_mainvue_type_script_lang_js_extends = Object.assign || functi
9815
9803
 
9816
9804
 
9817
9805
 
9818
-
9819
9806
  var systemMode = utils_util["a" /* default */].win.top.systemMode || utils_util["a" /* default */].win.systemMode || 'default';
9820
9807
  var pageView = utils_util["a" /* default */].getParams('pageView');
9821
9808
  /* harmony default export */ var data_table_src_mainvue_type_script_lang_js_ = ({
@@ -10521,12 +10508,14 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
10521
10508
  if (item.type == 'ganged') {
10522
10509
  _this7.$set(_this7.options, item.sysCode || item.field || item.prop, [JSON.parse(JSON.stringify(res.results))]);
10523
10510
  if (item.sysCode) {
10524
- bus.$emit(item.sysCode, JSON.parse(JSON.stringify(_this7.options[item.sysCode])));
10511
+ var bus = _this7.bus || _this7.$root.Bus;
10512
+ bus && bus.$emit(item.sysCode, JSON.parse(JSON.stringify(_this7.options[item.sysCode])));
10525
10513
  }
10526
10514
  } else {
10527
10515
  _this7.$set(_this7.options, item.sysCode || item.field || item.prop, JSON.parse(JSON.stringify(res.results)));
10528
10516
  if (item.sysCode) {
10529
- bus.$emit(item.sysCode, JSON.parse(JSON.stringify(res.results)));
10517
+ var _bus = _this7.bus || _this7.$root.Bus;
10518
+ _bus && _bus.$emit(item.sysCode, JSON.parse(JSON.stringify(res.results)));
10530
10519
  }
10531
10520
  }
10532
10521
  _this7.requests.push(key);
@@ -10992,7 +10981,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
10992
10981
  }
10993
10982
  this.injector && this.injector.handleChangeData(_changes);
10994
10983
  if (handle.busEvent) {
10995
- bus.$emit(handle.busEvent, _changes);
10984
+ var bus = this.bus || this.$root.Bus;
10985
+ bus && bus.$emit(handle.busEvent, _changes);
10996
10986
  }
10997
10987
  }
10998
10988
  } else if (handle.changeData) {
@@ -11034,7 +11024,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
11034
11024
  }
11035
11025
  this.injector && this.injector.handleChangeData(changeData);
11036
11026
  if (handle.busEvent) {
11037
- bus.$emit(handle.busEvent, changes);
11027
+ var _bus2 = this.bus || this.$root.Bus;
11028
+ _bus2 && _bus2.$emit(handle.busEvent, changes);
11038
11029
  }
11039
11030
  } else {
11040
11031
  if (handle.exportXls) {
@@ -11243,7 +11234,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
11243
11234
  var _this17 = this;
11244
11235
 
11245
11236
  this.sysCodes.forEach(function (item) {
11246
- bus.$on(item, function (val) {
11237
+ var bus = _this17.bus || _this17.$root.Bus;
11238
+ bus && bus.$on(item, function (val) {
11247
11239
  _this17.setOptions(val, item);
11248
11240
  });
11249
11241
  });
@@ -11252,7 +11244,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
11252
11244
  var _this18 = this;
11253
11245
 
11254
11246
  this.sysCodes.forEach(function (item) {
11255
- bus.$off(item, _this18.setOptions);
11247
+ var bus = _this18.bus || _this18.$root.Bus;
11248
+ bus && bus.$off(item, _this18.setOptions);
11256
11249
  });
11257
11250
  },
11258
11251
  reset: function reset() {
@@ -11283,8 +11276,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
11283
11276
 
11284
11277
  var data_table_src_main_component = normalizeComponent(
11285
11278
  packages_data_table_src_mainvue_type_script_lang_js_,
11286
- mainvue_type_template_id_260d7f48_render,
11287
- mainvue_type_template_id_260d7f48_staticRenderFns,
11279
+ mainvue_type_template_id_a8ae27ba_render,
11280
+ mainvue_type_template_id_a8ae27ba_staticRenderFns,
11288
11281
  false,
11289
11282
  null,
11290
11283
  null,
@@ -13421,8 +13414,8 @@ date_picker_src_main.install = function (Vue) {
13421
13414
  };
13422
13415
 
13423
13416
  /* harmony default export */ var date_picker = (date_picker_src_main);
13424
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=11ebf026&
13425
- var mainvue_type_template_id_11ebf026_render = function () {
13417
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=30b6de55&
13418
+ var mainvue_type_template_id_30b6de55_render = function () {
13426
13419
  var _vm = this
13427
13420
  var _h = _vm.$createElement
13428
13421
  var _c = _vm._self._c || _h
@@ -13936,14 +13929,14 @@ var mainvue_type_template_id_11ebf026_render = function () {
13936
13929
  2
13937
13930
  )
13938
13931
  }
13939
- var mainvue_type_template_id_11ebf026_staticRenderFns = []
13940
- mainvue_type_template_id_11ebf026_render._withStripped = true
13932
+ var mainvue_type_template_id_30b6de55_staticRenderFns = []
13933
+ mainvue_type_template_id_30b6de55_render._withStripped = true
13941
13934
 
13942
13935
 
13943
- // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=11ebf026&
13936
+ // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=30b6de55&
13944
13937
 
13945
13938
  // EXTERNAL MODULE: external "wujie-vue2"
13946
- var external_wujie_vue2_ = __webpack_require__(7);
13939
+ var external_wujie_vue2_ = __webpack_require__(4);
13947
13940
  var external_wujie_vue2_default = /*#__PURE__*/__webpack_require__.n(external_wujie_vue2_);
13948
13941
 
13949
13942
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=script&lang=js&
@@ -14221,9 +14214,6 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
14221
14214
 
14222
14215
 
14223
14216
 
14224
-
14225
- var mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
14226
-
14227
14217
  var availWidth = 0;
14228
14218
  var availHeight = 0;
14229
14219
  availWidth = utils_util["a" /* default */].win.top.document.body.offsetWidth - 260;
@@ -14356,7 +14346,8 @@ var mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.t
14356
14346
  var _this = this;
14357
14347
 
14358
14348
  if (this.busEvent) {
14359
- bus.$on(this.busEvent, function () {
14349
+ var bus = this.bus || this.$root.Bus;
14350
+ bus && bus.$on(this.busEvent, function () {
14360
14351
  var _ref = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(res) {
14361
14352
  return regenerator_default.a.wrap(function _callee$(_context) {
14362
14353
  while (1) {
@@ -14393,7 +14384,7 @@ var mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.t
14393
14384
  mounted: function mounted() {
14394
14385
  var _this2 = this;
14395
14386
 
14396
- mainvue_type_script_lang_js_bus.$on('dialogClose', function (res, dialog) {
14387
+ external_wujie_vue2_default.a.bus.$on('dialogClose', function (res, dialog) {
14397
14388
  var _dialog = _this2.$refs[dialog._dialogId];
14398
14389
  if (_dialog) {
14399
14390
  _dialog.hide();
@@ -14489,6 +14480,11 @@ var mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.t
14489
14480
  getDialog: function getDialog() {
14490
14481
  return this.$refs[this.wujieName].$refs['dialog'];
14491
14482
  }
14483
+ },
14484
+ beforeDestroy: function beforeDestroy() {
14485
+ external_wujie_vue2_default.a.bus.$off('dialogClose');
14486
+ var bus = this.bus || this.$root.Bus;
14487
+ this.busEvent && bus && Bus.$off(this.busEvent);
14492
14488
  }
14493
14489
  });
14494
14490
  // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=script&lang=js&
@@ -14503,8 +14499,8 @@ var mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.t
14503
14499
 
14504
14500
  var dialog_src_main_component = normalizeComponent(
14505
14501
  packages_dialog_src_mainvue_type_script_lang_js_,
14506
- mainvue_type_template_id_11ebf026_render,
14507
- mainvue_type_template_id_11ebf026_staticRenderFns,
14502
+ mainvue_type_template_id_30b6de55_render,
14503
+ mainvue_type_template_id_30b6de55_staticRenderFns,
14508
14504
  false,
14509
14505
  null,
14510
14506
  null,
@@ -24339,8 +24335,8 @@ form_src_main.install = function (Vue) {
24339
24335
  };
24340
24336
 
24341
24337
  /* harmony default export */ var packages_form = (form_src_main);
24342
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=242d804b&
24343
- var mainvue_type_template_id_242d804b_render = function () {
24338
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=7e9b7c60&
24339
+ var mainvue_type_template_id_7e9b7c60_render = function () {
24344
24340
  var _vm = this
24345
24341
  var _h = _vm.$createElement
24346
24342
  var _c = _vm._self._c || _h
@@ -25443,7 +25439,13 @@ var mainvue_type_template_id_242d804b_render = function () {
25443
25439
  "el-checkbox",
25444
25440
  {
25445
25441
  key: item.cciValue,
25446
- attrs: { label: item.cciValue },
25442
+ attrs: {
25443
+ label: item.cciValue,
25444
+ disabled:
25445
+ _vm.readOnlyNotificationType.indexOf(
25446
+ item.cciValue
25447
+ ) != -1,
25448
+ },
25447
25449
  },
25448
25450
  [
25449
25451
  _vm._v(
@@ -25456,32 +25458,33 @@ var mainvue_type_template_id_242d804b_render = function () {
25456
25458
  }),
25457
25459
  1
25458
25460
  ),
25459
- _c(
25460
- "div",
25461
- {
25462
- directives: [
25463
- {
25464
- name: "show",
25465
- rawName: "v-show",
25466
- value: _vm.showNews,
25467
- expression: "showNews",
25468
- },
25469
- ],
25470
- staticStyle: {
25471
- border: "1px solid #ccc",
25472
- padding: "5px",
25473
- "border-radius": "5px",
25474
- "font-size": "13px",
25461
+ _c("es-input", {
25462
+ directives: [
25463
+ {
25464
+ name: "show",
25465
+ rawName: "v-show",
25466
+ value: _vm.showNews,
25467
+ expression: "showNews",
25475
25468
  },
25469
+ ],
25470
+ staticStyle: {
25471
+ "border-color": "#ccc",
25472
+ padding: "5px",
25473
+ "border-radius": "5px",
25474
+ "font-size": "13px",
25476
25475
  },
25477
- [
25478
- _vm._v(
25479
- "\n " +
25480
- _vm._s(_vm.nextNode.notificationMsg) +
25481
- "\n "
25482
- ),
25483
- ]
25484
- ),
25476
+ attrs: {
25477
+ type: "textarea",
25478
+ readonly: _vm.notificationMessageReadOnly,
25479
+ },
25480
+ model: {
25481
+ value: _vm.nextNode.notificationMsg,
25482
+ callback: function ($$v) {
25483
+ _vm.$set(_vm.nextNode, "notificationMsg", $$v)
25484
+ },
25485
+ expression: "nextNode.notificationMsg",
25486
+ },
25487
+ }),
25485
25488
  ],
25486
25489
  1
25487
25490
  ),
@@ -25892,6 +25895,7 @@ var mainvue_type_template_id_242d804b_render = function () {
25892
25895
  "es-dialog",
25893
25896
  {
25894
25897
  ref: "handleVisible",
25898
+ staticClass: "flow-dialog",
25895
25899
  attrs: {
25896
25900
  "append-to-body": "",
25897
25901
  height: "auto",
@@ -25962,9 +25966,10 @@ var mainvue_type_template_id_242d804b_render = function () {
25962
25966
  "es-dialog",
25963
25967
  {
25964
25968
  ref: "showReject",
25969
+ staticClass: "flow-dialog",
25965
25970
  attrs: {
25966
25971
  "append-to-body": "",
25967
- height: "auto",
25972
+ height: "400px",
25968
25973
  title: "驳回",
25969
25974
  "close-on-click-modal": false,
25970
25975
  visible: _vm.showReject,
@@ -25998,6 +26003,7 @@ var mainvue_type_template_id_242d804b_render = function () {
25998
26003
  "es-dialog",
25999
26004
  {
26000
26005
  ref: "showTaskRead",
26006
+ staticClass: "flow-dialog",
26001
26007
  attrs: {
26002
26008
  "append-to-body": "",
26003
26009
  height: "auto",
@@ -26034,6 +26040,7 @@ var mainvue_type_template_id_242d804b_render = function () {
26034
26040
  ? _c(
26035
26041
  "es-dialog",
26036
26042
  {
26043
+ staticClass: "flow-dialog",
26037
26044
  attrs: {
26038
26045
  "append-to-body": "",
26039
26046
  title: "意见附件",
@@ -26064,6 +26071,7 @@ var mainvue_type_template_id_242d804b_render = function () {
26064
26071
  "es-dialog",
26065
26072
  {
26066
26073
  ref: "showSendMsg",
26074
+ staticClass: "flow-dialog",
26067
26075
  attrs: {
26068
26076
  "append-to-body": "",
26069
26077
  height: "auto",
@@ -26095,6 +26103,7 @@ var mainvue_type_template_id_242d804b_render = function () {
26095
26103
  "es-dialog",
26096
26104
  {
26097
26105
  ref: "showTaskUnionExamine",
26106
+ staticClass: "flow-dialog",
26098
26107
  attrs: {
26099
26108
  "append-to-body": "",
26100
26109
  height: "auto",
@@ -26132,11 +26141,11 @@ var mainvue_type_template_id_242d804b_render = function () {
26132
26141
  )
26133
26142
  : _vm._e()
26134
26143
  }
26135
- var mainvue_type_template_id_242d804b_staticRenderFns = []
26136
- mainvue_type_template_id_242d804b_render._withStripped = true
26144
+ var mainvue_type_template_id_7e9b7c60_staticRenderFns = []
26145
+ mainvue_type_template_id_7e9b7c60_render._withStripped = true
26137
26146
 
26138
26147
 
26139
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=242d804b&
26148
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7e9b7c60&
26140
26149
 
26141
26150
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=28c062bc&
26142
26151
  var CommonOpinionsvue_type_template_id_28c062bc_render = function () {
@@ -27128,8 +27137,8 @@ var CommonOpinions_component = normalizeComponent(
27128
27137
  )
27129
27138
 
27130
27139
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
27131
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=38d27a4e&
27132
- var processFormvue_type_template_id_38d27a4e_render = function () {
27140
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=48e37642&
27141
+ var processFormvue_type_template_id_48e37642_render = function () {
27133
27142
  var _vm = this
27134
27143
  var _h = _vm.$createElement
27135
27144
  var _c = _vm._self._c || _h
@@ -27157,7 +27166,11 @@ var processFormvue_type_template_id_38d27a4e_render = function () {
27157
27166
  {
27158
27167
  ref: "nextNode",
27159
27168
  staticClass: "demo-dynamic",
27160
- attrs: { model: _vm.nextNode, "label-width": "110px" },
27169
+ attrs: {
27170
+ model: _vm.nextNode,
27171
+ "label-width": "100px",
27172
+ "label-position": "left",
27173
+ },
27161
27174
  },
27162
27175
  [
27163
27176
  _c(
@@ -27469,7 +27482,16 @@ var processFormvue_type_template_id_38d27a4e_render = function () {
27469
27482
  _vm._l(_vm.nextNode.noticeList, function (item) {
27470
27483
  return _c(
27471
27484
  "el-checkbox",
27472
- { key: item.cciValue, attrs: { label: item.cciValue } },
27485
+ {
27486
+ key: item.cciValue,
27487
+ attrs: {
27488
+ label: item.cciValue,
27489
+ disabled:
27490
+ _vm.readOnlyNotificationType.indexOf(
27491
+ item.cciValue
27492
+ ) != -1,
27493
+ },
27494
+ },
27473
27495
  [
27474
27496
  _vm._v(
27475
27497
  "\n " +
@@ -27497,7 +27519,28 @@ var processFormvue_type_template_id_38d27a4e_render = function () {
27497
27519
  ],
27498
27520
  attrs: { prop: "nextNode", label: "通知消息" },
27499
27521
  },
27500
- [_c("span", [_vm._v(_vm._s(_vm.nextNode.noticeInfo))])]
27522
+ [
27523
+ _c("es-input", {
27524
+ staticStyle: {
27525
+ "border-color": "#ccc",
27526
+ padding: "5px",
27527
+ "border-radius": "5px",
27528
+ "font-size": "13px",
27529
+ },
27530
+ attrs: {
27531
+ type: "textarea",
27532
+ readonly: _vm.notificationMessageReadOnly,
27533
+ },
27534
+ model: {
27535
+ value: _vm.nextNode.noticeInfo,
27536
+ callback: function ($$v) {
27537
+ _vm.$set(_vm.nextNode, "noticeInfo", $$v)
27538
+ },
27539
+ expression: "nextNode.noticeInfo",
27540
+ },
27541
+ }),
27542
+ ],
27543
+ 1
27501
27544
  ),
27502
27545
  _c("CustomPreset", {
27503
27546
  directives: [
@@ -27595,11 +27638,11 @@ var processFormvue_type_template_id_38d27a4e_render = function () {
27595
27638
  1
27596
27639
  )
27597
27640
  }
27598
- var processFormvue_type_template_id_38d27a4e_staticRenderFns = []
27599
- processFormvue_type_template_id_38d27a4e_render._withStripped = true
27641
+ var processFormvue_type_template_id_48e37642_staticRenderFns = []
27642
+ processFormvue_type_template_id_48e37642_render._withStripped = true
27600
27643
 
27601
27644
 
27602
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=38d27a4e&
27645
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=48e37642&
27603
27646
 
27604
27647
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=db651118&
27605
27648
  var selectUservue_type_template_id_db651118_render = function () {
@@ -29305,6 +29348,18 @@ var processFormvue_type_script_lang_js_components;
29305
29348
  //
29306
29349
  //
29307
29350
  //
29351
+ //
29352
+ //
29353
+ //
29354
+ //
29355
+ //
29356
+ //
29357
+ //
29358
+ //
29359
+ //
29360
+ //
29361
+ //
29362
+ //
29308
29363
 
29309
29364
 
29310
29365
 
@@ -29338,6 +29393,8 @@ var processFormvue_type_script_lang_js_components;
29338
29393
  multiple: false,
29339
29394
  readMultiple: true,
29340
29395
  customPresetHintMessage: '', //流程预设标题
29396
+ notificationMessageReadOnly: false,
29397
+ readOnlyNotificationType: '',
29341
29398
  show: true,
29342
29399
  radioList: [],
29343
29400
  activeNames: '',
@@ -29850,6 +29907,8 @@ var processFormvue_type_script_lang_js_components;
29850
29907
  _this7.quit();
29851
29908
  });
29852
29909
  _this7.customPresetHintMessage = data.customPresetHintMessage;
29910
+ _this7.readOnlyNotificationType = data.readOnlyNotificationType;
29911
+ _this7.notificationMessageReadOnly = data.notificationMessageReadOnly == 'true';
29853
29912
  _this7.nextNode.nodeInfo = data.nextNodeList;
29854
29913
  _this7.nextNode.nextNode = data.nextNodeList[0].nodeId;
29855
29914
  _this7.isPreset = data.isPreset;
@@ -29933,8 +29992,8 @@ var processFormvue_type_script_lang_js_components;
29933
29992
 
29934
29993
  var processForm_component = normalizeComponent(
29935
29994
  src_processFormvue_type_script_lang_js_,
29936
- processFormvue_type_template_id_38d27a4e_render,
29937
- processFormvue_type_template_id_38d27a4e_staticRenderFns,
29995
+ processFormvue_type_template_id_48e37642_render,
29996
+ processFormvue_type_template_id_48e37642_staticRenderFns,
29938
29997
  false,
29939
29998
  null,
29940
29999
  null,
@@ -30103,8 +30162,8 @@ var FileList_component = normalizeComponent(
30103
30162
  )
30104
30163
 
30105
30164
  /* harmony default export */ var FileList = (FileList_component.exports);
30106
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=template&id=79b8122f&
30107
- var SendMsgvue_type_template_id_79b8122f_render = function () {
30165
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=template&id=3dc7b24d&
30166
+ var SendMsgvue_type_template_id_3dc7b24d_render = function () {
30108
30167
  var _vm = this
30109
30168
  var _h = _vm.$createElement
30110
30169
  var _c = _vm._self._c || _h
@@ -30163,7 +30222,15 @@ var SendMsgvue_type_template_id_79b8122f_render = function () {
30163
30222
  _vm._l(_vm.notificationList, function (item) {
30164
30223
  return _c(
30165
30224
  "el-checkbox",
30166
- { key: item.cciValue, attrs: { label: item.cciValue } },
30225
+ {
30226
+ key: item.cciValue,
30227
+ attrs: {
30228
+ label: item.cciValue,
30229
+ disabled:
30230
+ _vm.readOnlyNotificationType.indexOf(item.cciValue) !=
30231
+ -1,
30232
+ },
30233
+ },
30167
30234
  [
30168
30235
  _vm._v(
30169
30236
  "\n " + _vm._s(item.shortName) + "\n "
@@ -30181,7 +30248,11 @@ var SendMsgvue_type_template_id_79b8122f_render = function () {
30181
30248
  { attrs: { prop: "nextNode", label: "通知消息" } },
30182
30249
  [
30183
30250
  _c("el-input", {
30184
- attrs: { type: "textarea", rows: 2 },
30251
+ attrs: {
30252
+ type: "textarea",
30253
+ rows: 2,
30254
+ readonly: _vm.notificationMessageReadOnly,
30255
+ },
30185
30256
  model: {
30186
30257
  value: _vm.sendInfo.notificationMsg,
30187
30258
  callback: function ($$v) {
@@ -30295,11 +30366,11 @@ var SendMsgvue_type_template_id_79b8122f_render = function () {
30295
30366
  1
30296
30367
  )
30297
30368
  }
30298
- var SendMsgvue_type_template_id_79b8122f_staticRenderFns = []
30299
- SendMsgvue_type_template_id_79b8122f_render._withStripped = true
30369
+ var SendMsgvue_type_template_id_3dc7b24d_staticRenderFns = []
30370
+ SendMsgvue_type_template_id_3dc7b24d_render._withStripped = true
30300
30371
 
30301
30372
 
30302
- // CONCATENATED MODULE: ./packages/flow/src/component/SendMsg.vue?vue&type=template&id=79b8122f&
30373
+ // CONCATENATED MODULE: ./packages/flow/src/component/SendMsg.vue?vue&type=template&id=3dc7b24d&
30303
30374
 
30304
30375
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=script&lang=js&
30305
30376
  //
@@ -30389,6 +30460,8 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
30389
30460
  //
30390
30461
  //
30391
30462
  //
30463
+ //
30464
+ //
30392
30465
 
30393
30466
 
30394
30467
 
@@ -30402,6 +30475,8 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
30402
30475
  notificationMsg: ''
30403
30476
  },
30404
30477
  appId: '',
30478
+ notificationMessageReadOnly: true,
30479
+ readOnlyNotificationType: '',
30405
30480
  loading: false,
30406
30481
  pendHistoryIds: '',
30407
30482
  notificationList: [],
@@ -30509,11 +30584,15 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
30509
30584
  _res$data = res.data,
30510
30585
  title = _res$data.title,
30511
30586
  wfHistoryList = _res$data.wfHistoryList,
30512
- appId = _res$data.appId;
30587
+ appId = _res$data.appId,
30588
+ notificationMessageReadOnly = _res$data.notificationMessageReadOnly,
30589
+ readOnlyNotificationType = _res$data.readOnlyNotificationType;
30513
30590
 
30514
30591
  _this3.loading = false;
30515
30592
  if (status === 'success') {
30516
30593
  _this3.sendInfo.title = title;
30594
+ _this3.readOnlyNotificationType = readOnlyNotificationType;
30595
+ _this3.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
30517
30596
  _this3.appId = appId;
30518
30597
  _this3.sendTable = wfHistoryList;
30519
30598
  _this3.checkList();
@@ -30541,8 +30620,8 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
30541
30620
 
30542
30621
  var SendMsg_component = normalizeComponent(
30543
30622
  component_SendMsgvue_type_script_lang_js_,
30544
- SendMsgvue_type_template_id_79b8122f_render,
30545
- SendMsgvue_type_template_id_79b8122f_staticRenderFns,
30623
+ SendMsgvue_type_template_id_3dc7b24d_render,
30624
+ SendMsgvue_type_template_id_3dc7b24d_staticRenderFns,
30546
30625
  false,
30547
30626
  null,
30548
30627
  null,
@@ -30950,8 +31029,8 @@ var TimeLimit_component = normalizeComponent(
30950
31029
  )
30951
31030
 
30952
31031
  /* harmony default export */ var TimeLimit = (TimeLimit_component.exports);
30953
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=7d0d950e&
30954
- var processRejectvue_type_template_id_7d0d950e_render = function () {
31032
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=7df0d512&
31033
+ var processRejectvue_type_template_id_7df0d512_render = function () {
30955
31034
  var _vm = this
30956
31035
  var _h = _vm.$createElement
30957
31036
  var _c = _vm._self._c || _h
@@ -30983,134 +31062,163 @@ var processRejectvue_type_template_id_7d0d950e_render = function () {
30983
31062
  },
30984
31063
  [
30985
31064
  _c(
30986
- "el-form-item",
30987
- { attrs: { prop: "nodeName", label: "当前节点" } },
30988
- [
30989
- _c("el-input", {
30990
- attrs: { disabled: "" },
30991
- model: {
30992
- value: _vm.nodeName,
30993
- callback: function ($$v) {
30994
- _vm.nodeName = $$v
30995
- },
30996
- expression: "nodeName",
30997
- },
30998
- }),
30999
- ],
31000
- 1
31001
- ),
31002
- _c(
31003
- "el-form-item",
31065
+ "div",
31004
31066
  {
31005
- attrs: {
31006
- prop: "nextNodeId",
31007
- label: "驳回对象",
31008
- rules: [
31009
- {
31010
- required: true,
31011
- message: "请选择驳回对象",
31012
- trigger: "blur",
31013
- },
31014
- ],
31067
+ staticStyle: {
31068
+ "max-height": "290px",
31069
+ "overflow-y": "auto",
31070
+ "margin-bottom": "10px",
31015
31071
  },
31016
31072
  },
31017
31073
  [
31018
31074
  _c(
31019
- "el-radio-group",
31020
- {
31021
- model: {
31022
- value: _vm.nextNode.nextNodeId,
31023
- callback: function ($$v) {
31024
- _vm.$set(_vm.nextNode, "nextNodeId", $$v)
31075
+ "el-form-item",
31076
+ { attrs: { prop: "nodeName", label: "当前节点" } },
31077
+ [
31078
+ _c("el-input", {
31079
+ attrs: { disabled: "" },
31080
+ model: {
31081
+ value: _vm.nodeName,
31082
+ callback: function ($$v) {
31083
+ _vm.nodeName = $$v
31084
+ },
31085
+ expression: "nodeName",
31025
31086
  },
31026
- expression: "nextNode.nextNodeId",
31027
- },
31028
- },
31029
- _vm._l(_vm.rejectObj, function (item) {
31030
- return _c(
31031
- "el-radio",
31032
- { key: item.id, attrs: { label: item.id } },
31033
- [
31034
- _vm._v(
31035
- "\n " + _vm._s(item.name) + "\n "
31036
- ),
31037
- ]
31038
- )
31039
- }),
31087
+ }),
31088
+ ],
31040
31089
  1
31041
31090
  ),
31042
- ],
31043
- 1
31044
- ),
31045
- _c(
31046
- "el-form-item",
31047
- {
31048
- attrs: {
31049
- prop: "noticeType",
31050
- label: "通知方式",
31051
- rules: [
31052
- {
31053
- required: false,
31054
- message: "请选择通知方式",
31055
- trigger: "blur",
31091
+ _c(
31092
+ "el-form-item",
31093
+ {
31094
+ attrs: {
31095
+ prop: "nextNodeId",
31096
+ label: "驳回对象",
31097
+ rules: [
31098
+ {
31099
+ required: true,
31100
+ message: "请选择驳回对象",
31101
+ trigger: "blur",
31102
+ },
31103
+ ],
31056
31104
  },
31105
+ },
31106
+ [
31107
+ _c(
31108
+ "el-radio-group",
31109
+ {
31110
+ model: {
31111
+ value: _vm.nextNode.nextNodeId,
31112
+ callback: function ($$v) {
31113
+ _vm.$set(_vm.nextNode, "nextNodeId", $$v)
31114
+ },
31115
+ expression: "nextNode.nextNodeId",
31116
+ },
31117
+ },
31118
+ _vm._l(_vm.rejectObj, function (item) {
31119
+ return _c(
31120
+ "el-radio",
31121
+ { key: item.id, attrs: { label: item.id } },
31122
+ [
31123
+ _vm._v(
31124
+ "\n " +
31125
+ _vm._s(item.name) +
31126
+ "\n "
31127
+ ),
31128
+ ]
31129
+ )
31130
+ }),
31131
+ 1
31132
+ ),
31057
31133
  ],
31058
- },
31059
- },
31060
- [
31134
+ 1
31135
+ ),
31061
31136
  _c(
31062
- "el-checkbox-group",
31137
+ "el-form-item",
31063
31138
  {
31064
- model: {
31065
- value: _vm.nextNode.noticeType,
31066
- callback: function ($$v) {
31067
- _vm.$set(_vm.nextNode, "noticeType", $$v)
31068
- },
31069
- expression: "nextNode.noticeType",
31139
+ attrs: {
31140
+ prop: "noticeType",
31141
+ label: "通知方式",
31142
+ rules: [
31143
+ {
31144
+ required: false,
31145
+ message: "请选择通知方式",
31146
+ trigger: "blur",
31147
+ },
31148
+ ],
31070
31149
  },
31071
31150
  },
31072
- _vm._l(_vm.nextNode.noticeList, function (item) {
31073
- return _c(
31074
- "el-checkbox",
31075
- { key: item.cciValue, attrs: { label: item.cciValue } },
31076
- [
31077
- _vm._v(
31078
- "\n " +
31079
- _vm._s(item.shortName) +
31080
- "\n "
31081
- ),
31082
- ]
31083
- )
31084
- }),
31151
+ [
31152
+ _c(
31153
+ "el-checkbox-group",
31154
+ {
31155
+ model: {
31156
+ value: _vm.nextNode.noticeType,
31157
+ callback: function ($$v) {
31158
+ _vm.$set(_vm.nextNode, "noticeType", $$v)
31159
+ },
31160
+ expression: "nextNode.noticeType",
31161
+ },
31162
+ },
31163
+ _vm._l(_vm.nextNode.noticeList, function (item) {
31164
+ return _c(
31165
+ "el-checkbox",
31166
+ {
31167
+ key: item.cciValue,
31168
+ attrs: {
31169
+ label: item.cciValue,
31170
+ disabled:
31171
+ _vm.readOnlyNotificationType.indexOf(
31172
+ item.cciValue
31173
+ ) != -1,
31174
+ },
31175
+ },
31176
+ [
31177
+ _vm._v(
31178
+ "\n " +
31179
+ _vm._s(item.shortName) +
31180
+ "\n "
31181
+ ),
31182
+ ]
31183
+ )
31184
+ }),
31185
+ 1
31186
+ ),
31187
+ ],
31085
31188
  1
31086
31189
  ),
31087
- ],
31088
- 1
31089
- ),
31090
- _c(
31091
- "el-form-item",
31092
- {
31093
- directives: [
31190
+ _c(
31191
+ "el-form-item",
31094
31192
  {
31095
- name: "show",
31096
- rawName: "v-show",
31097
- value: _vm.nextNode.noticeType.length != 0,
31098
- expression: "nextNode.noticeType.length != 0",
31099
- },
31100
- ],
31101
- attrs: { prop: "nextNode", label: "通知消息" },
31102
- },
31103
- [
31104
- _c("es-input", {
31105
- attrs: { type: "textarea", rows: 4, placeholder: "请输入内容" },
31106
- model: {
31107
- value: _vm.newsInformation,
31108
- callback: function ($$v) {
31109
- _vm.newsInformation = $$v
31110
- },
31111
- expression: "newsInformation",
31193
+ directives: [
31194
+ {
31195
+ name: "show",
31196
+ rawName: "v-show",
31197
+ value: _vm.nextNode.noticeType.length != 0,
31198
+ expression: "nextNode.noticeType.length != 0",
31199
+ },
31200
+ ],
31201
+ attrs: { prop: "nextNode", label: "通知消息" },
31112
31202
  },
31113
- }),
31203
+ [
31204
+ _c("es-input", {
31205
+ attrs: {
31206
+ type: "textarea",
31207
+ rows: 4,
31208
+ placeholder: "请输入内容",
31209
+ readonly: _vm.notificationMessageReadOnly,
31210
+ },
31211
+ model: {
31212
+ value: _vm.newsInformation,
31213
+ callback: function ($$v) {
31214
+ _vm.newsInformation = $$v
31215
+ },
31216
+ expression: "newsInformation",
31217
+ },
31218
+ }),
31219
+ ],
31220
+ 1
31221
+ ),
31114
31222
  ],
31115
31223
  1
31116
31224
  ),
@@ -31142,11 +31250,11 @@ var processRejectvue_type_template_id_7d0d950e_render = function () {
31142
31250
  1
31143
31251
  )
31144
31252
  }
31145
- var processRejectvue_type_template_id_7d0d950e_staticRenderFns = []
31146
- processRejectvue_type_template_id_7d0d950e_render._withStripped = true
31253
+ var processRejectvue_type_template_id_7df0d512_staticRenderFns = []
31254
+ processRejectvue_type_template_id_7df0d512_render._withStripped = true
31147
31255
 
31148
31256
 
31149
- // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=7d0d950e&
31257
+ // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=7df0d512&
31150
31258
 
31151
31259
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=script&lang=js&
31152
31260
  //
@@ -31228,6 +31336,10 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
31228
31336
  //
31229
31337
  //
31230
31338
  //
31339
+ //
31340
+ //
31341
+ //
31342
+ //
31231
31343
 
31232
31344
 
31233
31345
 
@@ -31242,6 +31354,8 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
31242
31354
  data: function data() {
31243
31355
  return {
31244
31356
  loading: false,
31357
+ notificationMessageReadOnly: false,
31358
+ readOnlyNotificationType: '',
31245
31359
  nextNode: {
31246
31360
  noticeType: [],
31247
31361
  opinion: undefined, // 审批意见
@@ -31280,7 +31394,10 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
31280
31394
 
31281
31395
  utils_util["a" /* default */].ajax({
31282
31396
  url: api["u" /* findCodeValues */],
31283
- params: { ccCode: 'notification_type', userId: utils_util["a" /* default */].getStorage('userId') }
31397
+ params: {
31398
+ ccCode: 'notification_type',
31399
+ userId: utils_util["a" /* default */].getStorage('userId')
31400
+ }
31284
31401
  }).then(function (res) {
31285
31402
  var status = res.status,
31286
31403
  data = res.data;
@@ -31380,11 +31497,15 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
31380
31497
  _res$data = res.data,
31381
31498
  rejectTaskNodes = _res$data.rejectTaskNodes,
31382
31499
  taskExamine = _res$data.taskExamine,
31383
- nodeInfoMap = _res$data.nodeInfoMap;
31500
+ nodeInfoMap = _res$data.nodeInfoMap,
31501
+ notificationMessageReadOnly = _res$data.notificationMessageReadOnly,
31502
+ readOnlyNotificationType = _res$data.readOnlyNotificationType;
31384
31503
 
31385
31504
  _this4.loading = false;
31386
31505
  if (status === 'success') {
31387
31506
  _this4.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
31507
+ _this4.readOnlyNotificationType = readOnlyNotificationType;
31508
+ _this4.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
31388
31509
  if (!_this4.isOpinionRequired) {
31389
31510
  _this4.isOpinionRequired = 0;
31390
31511
  }
@@ -31427,8 +31548,8 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
31427
31548
 
31428
31549
  var processReject_component = normalizeComponent(
31429
31550
  src_processRejectvue_type_script_lang_js_,
31430
- processRejectvue_type_template_id_7d0d950e_render,
31431
- processRejectvue_type_template_id_7d0d950e_staticRenderFns,
31551
+ processRejectvue_type_template_id_7df0d512_render,
31552
+ processRejectvue_type_template_id_7df0d512_staticRenderFns,
31432
31553
  false,
31433
31554
  null,
31434
31555
  null,
@@ -31437,8 +31558,8 @@ var processReject_component = normalizeComponent(
31437
31558
  )
31438
31559
 
31439
31560
  /* harmony default export */ var processReject = (processReject_component.exports);
31440
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=5ff37a1c&
31441
- var startTaskReadvue_type_template_id_5ff37a1c_render = function () {
31561
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=4a0a6b09&
31562
+ var startTaskReadvue_type_template_id_4a0a6b09_render = function () {
31442
31563
  var _vm = this
31443
31564
  var _h = _vm.$createElement
31444
31565
  var _c = _vm._self._c || _h
@@ -31751,7 +31872,16 @@ var startTaskReadvue_type_template_id_5ff37a1c_render = function () {
31751
31872
  _vm._l(_vm.noticeList, function (item) {
31752
31873
  return _c(
31753
31874
  "el-checkbox",
31754
- { key: item.cciValue, attrs: { label: item.cciValue } },
31875
+ {
31876
+ key: item.cciValue,
31877
+ attrs: {
31878
+ label: item.cciValue,
31879
+ disabled:
31880
+ _vm.configInfo.readOnlyNotificationType.indexOf(
31881
+ item.cciValue
31882
+ ) != -1,
31883
+ },
31884
+ },
31755
31885
  [
31756
31886
  _vm._v(
31757
31887
  "\n " +
@@ -31779,12 +31909,34 @@ var startTaskReadvue_type_template_id_5ff37a1c_render = function () {
31779
31909
  _vm.configInfo.isCdjxjTaskHandle != "true" &&
31780
31910
  _vm.type == "transfer",
31781
31911
  expression:
31782
- "\n nextNode.noticeType.length != 0 &&\n configInfo.isCdjxjTaskHandle != 'true' &&\n type == 'transfer'\n ",
31912
+ "\n nextNode.noticeType.length != 0 &&\n configInfo.isCdjxjTaskHandle != 'true' &&\n type == 'transfer'\n ",
31783
31913
  },
31784
31914
  ],
31785
31915
  attrs: { prop: "nextNode", label: "通知消息" },
31786
31916
  },
31787
- [_c("span", [_vm._v(_vm._s(_vm.newsInfo))])]
31917
+ [
31918
+ _c("es-input", {
31919
+ staticStyle: {
31920
+ "border-color": "#ccc",
31921
+ padding: "5px",
31922
+ "border-radius": "5px",
31923
+ "font-size": "13px",
31924
+ },
31925
+ attrs: {
31926
+ type: "textarea",
31927
+ readonly:
31928
+ _vm.configInfo.notificationMessageReadOnly == "true",
31929
+ },
31930
+ model: {
31931
+ value: _vm.newsNoice,
31932
+ callback: function ($$v) {
31933
+ _vm.newsNoice = $$v
31934
+ },
31935
+ expression: "newsNoice",
31936
+ },
31937
+ }),
31938
+ ],
31939
+ 1
31788
31940
  ),
31789
31941
  _c("el-form-item", [
31790
31942
  _c(
@@ -31814,11 +31966,11 @@ var startTaskReadvue_type_template_id_5ff37a1c_render = function () {
31814
31966
  1
31815
31967
  )
31816
31968
  }
31817
- var startTaskReadvue_type_template_id_5ff37a1c_staticRenderFns = []
31818
- startTaskReadvue_type_template_id_5ff37a1c_render._withStripped = true
31969
+ var startTaskReadvue_type_template_id_4a0a6b09_staticRenderFns = []
31970
+ startTaskReadvue_type_template_id_4a0a6b09_render._withStripped = true
31819
31971
 
31820
31972
 
31821
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=5ff37a1c&
31973
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=4a0a6b09&
31822
31974
 
31823
31975
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=script&lang=js&
31824
31976
  var startTaskReadvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -31968,6 +32120,18 @@ var startTaskReadvue_type_script_lang_js_components;
31968
32120
  //
31969
32121
  //
31970
32122
  //
32123
+ //
32124
+ //
32125
+ //
32126
+ //
32127
+ //
32128
+ //
32129
+ //
32130
+ //
32131
+ //
32132
+ //
32133
+ //
32134
+ //
31971
32135
 
31972
32136
 
31973
32137
 
@@ -31985,6 +32149,7 @@ var startTaskReadvue_type_script_lang_js_components;
31985
32149
  data: function data() {
31986
32150
  return {
31987
32151
  loading: false,
32152
+ newsNoice: '',
31988
32153
  nextNode: {
31989
32154
  nextUser: [],
31990
32155
  userInfo: [],
@@ -32035,6 +32200,7 @@ var startTaskReadvue_type_script_lang_js_components;
32035
32200
  }
32036
32201
  },
32037
32202
  mounted: function mounted() {
32203
+ this.newsNoice = this.newsInfo;
32038
32204
  this.getFind();
32039
32205
  if (utils_util["a" /* default */].getStorage('mainConfig')) {
32040
32206
  this.orgId = JSON.parse(utils_util["a" /* default */].getStorage('mainConfig')).userModel.orgId;
@@ -32243,7 +32409,7 @@ var startTaskReadvue_type_script_lang_js_components;
32243
32409
  var opinion = this.opinion,
32244
32410
  pendingId = this.pendingId,
32245
32411
  nextNode = this.nextNode,
32246
- newsInfo = this.newsInfo,
32412
+ newsNoice = this.newsNoice,
32247
32413
  multiple = this.multiple,
32248
32414
  type = this.type;
32249
32415
 
@@ -32258,7 +32424,7 @@ var startTaskReadvue_type_script_lang_js_components;
32258
32424
  opinion: opinion,
32259
32425
  pendingId: pendingId,
32260
32426
  notificationType: nextNode.noticeType.join(','),
32261
- notificationMsg: newsInfo
32427
+ notificationMsg: newsNoice
32262
32428
  },
32263
32429
  headers: { Accept: 'application/json,text/plain' },
32264
32430
  method: 'post'
@@ -32419,8 +32585,8 @@ var startTaskReadvue_type_script_lang_js_components;
32419
32585
 
32420
32586
  var startTaskRead_component = normalizeComponent(
32421
32587
  src_startTaskReadvue_type_script_lang_js_,
32422
- startTaskReadvue_type_template_id_5ff37a1c_render,
32423
- startTaskReadvue_type_template_id_5ff37a1c_staticRenderFns,
32588
+ startTaskReadvue_type_template_id_4a0a6b09_render,
32589
+ startTaskReadvue_type_template_id_4a0a6b09_staticRenderFns,
32424
32590
  false,
32425
32591
  null,
32426
32592
  null,
@@ -32429,8 +32595,8 @@ var startTaskRead_component = normalizeComponent(
32429
32595
  )
32430
32596
 
32431
32597
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
32432
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=537697de&
32433
- var taskUnionExaminevue_type_template_id_537697de_render = function () {
32598
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=74c4b024&
32599
+ var taskUnionExaminevue_type_template_id_74c4b024_render = function () {
32434
32600
  var _vm = this
32435
32601
  var _h = _vm.$createElement
32436
32602
  var _c = _vm._self._c || _h
@@ -32589,7 +32755,15 @@ var taskUnionExaminevue_type_template_id_537697de_render = function () {
32589
32755
  _vm._l(_vm.infoList.noticeList, function (item) {
32590
32756
  return _c(
32591
32757
  "el-checkbox",
32592
- { key: item.cciValue, attrs: { label: item.cciValue } },
32758
+ {
32759
+ key: item.cciValue,
32760
+ attrs: {
32761
+ label: item.cciValue,
32762
+ disabled:
32763
+ _vm.readOnlyNotificationType.indexOf(item.cciValue) !=
32764
+ -1,
32765
+ },
32766
+ },
32593
32767
  [
32594
32768
  _vm._v(
32595
32769
  "\n " + _vm._s(item.shortName) + "\n "
@@ -32615,7 +32789,28 @@ var taskUnionExaminevue_type_template_id_537697de_render = function () {
32615
32789
  ],
32616
32790
  attrs: { prop: "noticeInfo", label: "通知消息" },
32617
32791
  },
32618
- [_c("span", [_vm._v(_vm._s(_vm.infoList.noticeInfo))])]
32792
+ [
32793
+ _c("es-input", {
32794
+ staticStyle: {
32795
+ "border-color": "#ccc",
32796
+ padding: "5px",
32797
+ "border-radius": "5px",
32798
+ "font-size": "13px",
32799
+ },
32800
+ attrs: {
32801
+ type: "textarea",
32802
+ readonly: _vm.notificationMessageReadOnly,
32803
+ },
32804
+ model: {
32805
+ value: _vm.infoList.noticeInfo,
32806
+ callback: function ($$v) {
32807
+ _vm.$set(_vm.infoList, "noticeInfo", $$v)
32808
+ },
32809
+ expression: "infoList.noticeInfo",
32810
+ },
32811
+ }),
32812
+ ],
32813
+ 1
32619
32814
  ),
32620
32815
  _c("el-form-item", [
32621
32816
  _c(
@@ -32646,11 +32841,11 @@ var taskUnionExaminevue_type_template_id_537697de_render = function () {
32646
32841
  1
32647
32842
  )
32648
32843
  }
32649
- var taskUnionExaminevue_type_template_id_537697de_staticRenderFns = []
32650
- taskUnionExaminevue_type_template_id_537697de_render._withStripped = true
32844
+ var taskUnionExaminevue_type_template_id_74c4b024_staticRenderFns = []
32845
+ taskUnionExaminevue_type_template_id_74c4b024_render._withStripped = true
32651
32846
 
32652
32847
 
32653
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=537697de&
32848
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=74c4b024&
32654
32849
 
32655
32850
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
32656
32851
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -32761,6 +32956,18 @@ var taskUnionExaminevue_type_script_lang_js_components;
32761
32956
  //
32762
32957
  //
32763
32958
  //
32959
+ //
32960
+ //
32961
+ //
32962
+ //
32963
+ //
32964
+ //
32965
+ //
32966
+ //
32967
+ //
32968
+ //
32969
+ //
32970
+ //
32764
32971
 
32765
32972
 
32766
32973
 
@@ -32780,6 +32987,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
32780
32987
  data: function data() {
32781
32988
  return {
32782
32989
  opinion: '', //办理意见
32990
+ readOnlyNotificationType: '',
32991
+ notificationMessageReadOnly: false,
32783
32992
  infoList: {
32784
32993
  nextOtherOrgObj: [],
32785
32994
  nextCurrentOrgObj: [],
@@ -32921,6 +33130,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
32921
33130
  choiceOrgId = _res$data2.choiceOrgId,
32922
33131
  taskExamine = _res$data2.taskExamine,
32923
33132
  unionDispatchOrgName = _res$data2.unionDispatchOrgName,
33133
+ readOnlyNotificationType = _res$data2.readOnlyNotificationType,
33134
+ notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
32924
33135
  unionDispatchOrgId = _res$data2.unionDispatchOrgId,
32925
33136
  orgNames = _res$data2.orgNames,
32926
33137
  _res$data2$nodeInfoMa = _res$data2.nodeInfoMap.nodeExtAttr,
@@ -32929,6 +33140,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
32929
33140
  isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
32930
33141
  isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
32931
33142
 
33143
+ _this3.readOnlyNotificationType = readOnlyNotificationType;
33144
+ _this3.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
32932
33145
  _this3.isSinglePage = taskExamine.isSinglePage;
32933
33146
  _this3.isSubFlow = taskExamine.isSubFlow;
32934
33147
  _this3.opinion = taskExamine.opinion;
@@ -33128,8 +33341,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
33128
33341
 
33129
33342
  var taskUnionExamine_component = normalizeComponent(
33130
33343
  component_taskUnionExaminevue_type_script_lang_js_,
33131
- taskUnionExaminevue_type_template_id_537697de_render,
33132
- taskUnionExaminevue_type_template_id_537697de_staticRenderFns,
33344
+ taskUnionExaminevue_type_template_id_74c4b024_render,
33345
+ taskUnionExaminevue_type_template_id_74c4b024_staticRenderFns,
33133
33346
  false,
33134
33347
  null,
33135
33348
  null,
@@ -33827,6 +34040,19 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
33827
34040
  //
33828
34041
  //
33829
34042
  //
34043
+ //
34044
+ //
34045
+ //
34046
+ //
34047
+ //
34048
+ //
34049
+ //
34050
+ //
34051
+ //
34052
+ //
34053
+ //
34054
+ //
34055
+ //
33830
34056
 
33831
34057
 
33832
34058
 
@@ -33880,6 +34106,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
33880
34106
  return _ref = {
33881
34107
  styles: {},
33882
34108
  userModel: {},
34109
+ readOnlyNotificationType: '',
34110
+ notificationMessageReadOnly: false,
33883
34111
  isCanPreAddSign: false,
33884
34112
  isStartFlowChartView: undefined,
33885
34113
  nextOtherOrgObjSelect: [],
@@ -34982,49 +35210,51 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34982
35210
  } else {
34983
35211
  this.isReject = false;
34984
35212
  }
34985
- if (val == -1) {
34986
- this.nextNode.isSerialSubmit = 1;
34987
- this.loading.close();
34988
- return;
34989
- } else if (val == 0) {
34990
- this.isNextUser = true;
34991
- this.isShowNode = true;
34992
- } else if (val == 1) {
34993
- this.isNextUser = true;
34994
- this.isShowNode = true;
34995
- } else if (val == 2) {
34996
- this.nextNode.isReturnSubmitter = 1;
34997
- this.loading.close();
34998
- return;
34999
- } else if (val == 3) {
35000
- this.nextNode.isUndertakeReply = 1;
35001
- this.loading.close();
35002
- return;
35003
- } else if (val == 4) {
35004
- this.nextNode.isTakeAdviceReply = 1;
35005
- this.loading.close();
35006
- return;
35007
- } else if (val == 5) {
35008
- this.nextNode.isUndertakeEnd = 1;
35009
- this.loading.close();
35010
- return;
35011
- } else if (val == 6) {
35012
- this.nextNode.isTakeAdviceEnd = 1;
35013
- this.loading.close();
35014
- return;
35015
- } else if (val == 7) {
35016
- this.nextNode.isReadDealReply = 1;
35017
- this.loading.close();
35018
- return;
35019
- } else if (val == 8) {
35020
- this.nextNode.isReadDealEnd = 1;
35021
- this.loading.close();
35022
- return;
35023
- } else if (val == 9) {
35024
- this.nextNode.isReturnRejectNode = 1;
35025
- this.loading.close();
35026
- return;
35027
- } else {}
35213
+ if (this.isSpecial) {
35214
+ if (val == -1) {
35215
+ this.nextNode.isSerialSubmit = 1;
35216
+ this.loading.close();
35217
+ return;
35218
+ } else if (val == 0) {
35219
+ this.isNextUser = true;
35220
+ this.isShowNode = true;
35221
+ } else if (val == 1) {
35222
+ this.isNextUser = true;
35223
+ this.isShowNode = true;
35224
+ } else if (val == 2) {
35225
+ this.nextNode.isReturnSubmitter = 1;
35226
+ this.loading.close();
35227
+ return;
35228
+ } else if (val == 3) {
35229
+ this.nextNode.isUndertakeReply = 1;
35230
+ this.loading.close();
35231
+ return;
35232
+ } else if (val == 4) {
35233
+ this.nextNode.isTakeAdviceReply = 1;
35234
+ this.loading.close();
35235
+ return;
35236
+ } else if (val == 5) {
35237
+ this.nextNode.isUndertakeEnd = 1;
35238
+ this.loading.close();
35239
+ return;
35240
+ } else if (val == 6) {
35241
+ this.nextNode.isTakeAdviceEnd = 1;
35242
+ this.loading.close();
35243
+ return;
35244
+ } else if (val == 7) {
35245
+ this.nextNode.isReadDealReply = 1;
35246
+ this.loading.close();
35247
+ return;
35248
+ } else if (val == 8) {
35249
+ this.nextNode.isReadDealEnd = 1;
35250
+ this.loading.close();
35251
+ return;
35252
+ } else if (val == 9) {
35253
+ this.nextNode.isReturnRejectNode = 1;
35254
+ this.loading.close();
35255
+ return;
35256
+ } else {}
35257
+ }
35028
35258
 
35029
35259
  if (isDef !== true) this.getNodeInfo();
35030
35260
  },
@@ -35093,6 +35323,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35093
35323
  isPreset = _res$data2.isPreset,
35094
35324
  choiceOrgId = _res$data2.choiceOrgId,
35095
35325
  choiceDeptId = _res$data2.choiceDeptId,
35326
+ readOnlyNotificationType = _res$data2.readOnlyNotificationType,
35327
+ notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
35096
35328
  pOrgId = _res$data2.pOrgId,
35097
35329
  currentOrgName = _res$data2.currentOrgName,
35098
35330
  otherOrgName = _res$data2.otherOrgName,
@@ -35113,6 +35345,9 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35113
35345
  _this23.$emit('startTaskRead', res);
35114
35346
  _this23.$emit('start-task-read', res);
35115
35347
  _this23.currentOrgName = currentOrgName;
35348
+ _this23.readOnlyNotificationType = readOnlyNotificationType;
35349
+ _this23.isSpecial = isSpecial;
35350
+ _this23.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
35116
35351
  _this23.otherOrgName = otherOrgName;
35117
35352
  _this23.isCanPreAddSign = isCanPreAddSign;
35118
35353
  _this23.endFlowInfo.choiceOrgId = choiceOrgId;
@@ -35255,7 +35490,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35255
35490
  if (_this23.isCanRemoveSign) {
35256
35491
  _this23.nextNode.isRemoveSign = '2';
35257
35492
  }
35258
- _this23.isSpecial = isSpecial;
35259
35493
 
35260
35494
  if (!_this23.isOpinionRequired) {
35261
35495
  _this23.isOpinionRequired = 0;
@@ -35570,7 +35804,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35570
35804
  notificationType = _this27.nextNode.notificationType.join(',');
35571
35805
  addSignUserId = addSignUserId.join(',');
35572
35806
  removeSignUserId = removeSignUserId.join(',');
35573
- if (!_this27.isCanPreAddSign) {
35807
+ if (!_this27.isCanPreAddSign || _this27.nextNode.isAddSign != '1') {
35574
35808
  delete _this27.nextNode.addSignMode;
35575
35809
  }
35576
35810
  params = flow_src_mainvue_type_script_lang_js_extends({}, _this27.nextNode, {
@@ -35690,8 +35924,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35690
35924
 
35691
35925
  var flow_src_main_component = normalizeComponent(
35692
35926
  packages_flow_src_mainvue_type_script_lang_js_,
35693
- mainvue_type_template_id_242d804b_render,
35694
- mainvue_type_template_id_242d804b_staticRenderFns,
35927
+ mainvue_type_template_id_7e9b7c60_render,
35928
+ mainvue_type_template_id_7e9b7c60_staticRenderFns,
35695
35929
  false,
35696
35930
  null,
35697
35931
  null,
@@ -39194,8 +39428,8 @@ handle_user_src_main.install = function (Vue) {
39194
39428
  };
39195
39429
 
39196
39430
  /* harmony default export */ var handle_user = (handle_user_src_main);
39197
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=0bf8fbcc&
39198
- var mainvue_type_template_id_0bf8fbcc_render = function () {
39431
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=d2f4aaac&
39432
+ var mainvue_type_template_id_d2f4aaac_render = function () {
39199
39433
  var _vm = this
39200
39434
  var _h = _vm.$createElement
39201
39435
  var _c = _vm._self._c || _h
@@ -39418,11 +39652,11 @@ var mainvue_type_template_id_0bf8fbcc_render = function () {
39418
39652
  2
39419
39653
  )
39420
39654
  }
39421
- var mainvue_type_template_id_0bf8fbcc_staticRenderFns = []
39422
- mainvue_type_template_id_0bf8fbcc_render._withStripped = true
39655
+ var mainvue_type_template_id_d2f4aaac_staticRenderFns = []
39656
+ mainvue_type_template_id_d2f4aaac_render._withStripped = true
39423
39657
 
39424
39658
 
39425
- // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=0bf8fbcc&
39659
+ // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=d2f4aaac&
39426
39660
 
39427
39661
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=script&lang=js&
39428
39662
  //
@@ -39710,7 +39944,7 @@ mainvue_type_template_id_0bf8fbcc_render._withStripped = true
39710
39944
  handleQuit: function handleQuit() {
39711
39945
  var _this2 = this;
39712
39946
 
39713
- this.$confirm('确定注销吗?', '退出系统', {
39947
+ this.$confirm('确定退出吗?', '退出系统', {
39714
39948
  confirmButtonText: '确定',
39715
39949
  cancelButtonText: '取消',
39716
39950
  type: 'warning'
@@ -39779,8 +40013,8 @@ mainvue_type_template_id_0bf8fbcc_render._withStripped = true
39779
40013
 
39780
40014
  var handler_src_main_component = normalizeComponent(
39781
40015
  packages_handler_src_mainvue_type_script_lang_js_,
39782
- mainvue_type_template_id_0bf8fbcc_render,
39783
- mainvue_type_template_id_0bf8fbcc_staticRenderFns,
40016
+ mainvue_type_template_id_d2f4aaac_render,
40017
+ mainvue_type_template_id_d2f4aaac_staticRenderFns,
39784
40018
  false,
39785
40019
  null,
39786
40020
  null,
@@ -40058,7 +40292,7 @@ mainvue_type_template_id_32c03886_render._withStripped = true
40058
40292
  // CONCATENATED MODULE: ./packages/icons/src/main.vue?vue&type=template&id=32c03886&
40059
40293
 
40060
40294
  // EXTERNAL MODULE: ./packages/icons/src/icon.json
40061
- var src_icon = __webpack_require__(15);
40295
+ var src_icon = __webpack_require__(14);
40062
40296
 
40063
40297
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/icons/src/main.vue?vue&type=script&lang=js&
40064
40298
  //
@@ -41090,7 +41324,7 @@ itemvue_type_template_id_124bb300_render._withStripped = true
41090
41324
  // CONCATENATED MODULE: ./packages/layout/src/item.vue?vue&type=template&id=124bb300&
41091
41325
 
41092
41326
  // EXTERNAL MODULE: external "interactjs"
41093
- var external_interactjs_ = __webpack_require__(4);
41327
+ var external_interactjs_ = __webpack_require__(5);
41094
41328
  var external_interactjs_default = /*#__PURE__*/__webpack_require__.n(external_interactjs_);
41095
41329
 
41096
41330
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/layout/src/item.vue?vue&type=script&lang=js&
@@ -41328,8 +41562,8 @@ layout_src_main.install = function (Vue) {
41328
41562
  };
41329
41563
 
41330
41564
  /* harmony default export */ var packages_layout = (layout_src_main);
41331
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=7a4efc38&
41332
- var mainvue_type_template_id_7a4efc38_render = function () {
41565
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=2db7b10a&
41566
+ var mainvue_type_template_id_2db7b10a_render = function () {
41333
41567
  var _vm = this
41334
41568
  var _h = _vm.$createElement
41335
41569
  var _c = _vm._self._c || _h
@@ -41389,49 +41623,135 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41389
41623
  {
41390
41624
  staticClass: "es-login-main",
41391
41625
  class: {
41392
- "es-switchs": _vm.switchs > 2,
41626
+ "es-models": _vm.modelLength > 2 && _vm.mode !== "complex",
41627
+ "es-complex": _vm.mode == "complex",
41393
41628
  },
41394
41629
  style: _vm.getBackground(_vm.loginMainImg),
41395
41630
  },
41396
41631
  [
41397
- _vm.switchs > 1
41632
+ _vm.mode == "complex"
41633
+ ? _c("div", { staticClass: "es-login-complex-title" }, [
41634
+ _vm._v("\n 欢迎登录\n "),
41635
+ ])
41636
+ : _vm._e(),
41637
+ _vm.modelLength > 1 || _vm.mode == "complex"
41398
41638
  ? _c(
41399
41639
  "div",
41400
41640
  {
41401
41641
  class: {
41402
- "es-login-switch": _vm.switchs == 2,
41403
- "es-login-switchs":
41404
- _vm.switchs > 2 ||
41405
- (_vm.switchs == 2 && _vm.loginTitleImg),
41642
+ "es-login-models":
41643
+ _vm.modelLength > 2 && _vm.mode !== "complex",
41644
+ "es-login-model":
41645
+ _vm.modelLength == 2 || _vm.mode == "complex",
41406
41646
  },
41407
41647
  },
41408
- _vm._l(_vm.icons, function (item, index) {
41409
- return _c("i", {
41410
- directives: [
41411
- {
41412
- name: "show",
41413
- rawName: "v-show",
41414
- value:
41415
- _vm.switchs > 2 || _vm.active != item.type,
41416
- expression:
41417
- "switchs > 2 || active != item.type",
41418
- },
41419
- ],
41420
- key: index,
41421
- class: [
41422
- item.icon,
41423
- "es-icon",
41424
- { "es-icon-active": _vm.active == item.type },
41425
- ],
41426
- attrs: { title: _vm.switchs > 2 ? item.name : "" },
41427
- on: {
41428
- click: function ($event) {
41429
- _vm.switchLogin(item)
41430
- },
41431
- },
41432
- })
41433
- }),
41434
- 0
41648
+ [
41649
+ this.mode == "complex"
41650
+ ? [
41651
+ _vm._l(_vm.switchs, function (item) {
41652
+ return [
41653
+ item.tips
41654
+ ? _c(
41655
+ "div",
41656
+ {
41657
+ directives: [
41658
+ {
41659
+ name: "show",
41660
+ rawName: "v-show",
41661
+ value: _vm.active != item.type,
41662
+ expression:
41663
+ "active != item.type",
41664
+ },
41665
+ ],
41666
+ key: item.type + "_0",
41667
+ staticClass: "es-login-model-tips",
41668
+ style: _vm.getBackground(
41669
+ item.background
41670
+ ),
41671
+ },
41672
+ [
41673
+ _vm._v(
41674
+ "\n " +
41675
+ _vm._s(item.tips) +
41676
+ "\n "
41677
+ ),
41678
+ ]
41679
+ )
41680
+ : _vm._e(),
41681
+ _c(
41682
+ "span",
41683
+ {
41684
+ directives: [
41685
+ {
41686
+ name: "show",
41687
+ rawName: "v-show",
41688
+ value:
41689
+ _vm.switchActive != item.type,
41690
+ expression:
41691
+ "switchActive != item.type",
41692
+ },
41693
+ ],
41694
+ key: item.type + "_1",
41695
+ staticClass: "es-icon-box",
41696
+ attrs: {
41697
+ title:
41698
+ _vm.modelLength > 2
41699
+ ? item.name
41700
+ : "",
41701
+ },
41702
+ on: {
41703
+ click: function ($event) {
41704
+ _vm.switchLoginType(item)
41705
+ },
41706
+ },
41707
+ },
41708
+ [
41709
+ _c("i", {
41710
+ class: [item.icon, "es-icon"],
41711
+ }),
41712
+ ]
41713
+ ),
41714
+ ]
41715
+ }),
41716
+ ]
41717
+ : _vm._l(_vm.icons, function (item, index) {
41718
+ return _c(
41719
+ "span",
41720
+ {
41721
+ directives: [
41722
+ {
41723
+ name: "show",
41724
+ rawName: "v-show",
41725
+ value:
41726
+ _vm.modelLength > 2 ||
41727
+ _vm.active != item.type,
41728
+ expression:
41729
+ "modelLength > 2 || active != item.type",
41730
+ },
41731
+ ],
41732
+ key: index,
41733
+ staticClass: "es-icon-box",
41734
+ class: [
41735
+ {
41736
+ "es-icon-active":
41737
+ _vm.active == item.type,
41738
+ },
41739
+ ],
41740
+ attrs: {
41741
+ title:
41742
+ _vm.modelLength > 2 ? item.name : "",
41743
+ },
41744
+ on: {
41745
+ click: function ($event) {
41746
+ _vm.switchLogin(item)
41747
+ },
41748
+ },
41749
+ },
41750
+ [_c("i", { class: [item.icon, "es-icon"] })]
41751
+ )
41752
+ }),
41753
+ ],
41754
+ 2
41435
41755
  )
41436
41756
  : _vm._e(),
41437
41757
  _vm.loginTitleImg
@@ -41441,11 +41761,88 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41441
41761
  attrs: { src: _vm.loginTitleImg },
41442
41762
  }),
41443
41763
  ])
41764
+ : _vm.mode !== "complex"
41765
+ ? [
41766
+ _vm._t(
41767
+ "login-title",
41768
+ [
41769
+ _c("div", { staticClass: "es-login-title" }, [
41770
+ _c(
41771
+ "span",
41772
+ { staticClass: "es-login-title-content" },
41773
+ [_vm._v(_vm._s(_vm.title))]
41774
+ ),
41775
+ ]),
41776
+ ],
41777
+ { type: _vm.active }
41778
+ ),
41779
+ ]
41444
41780
  : _vm._e(),
41445
41781
  _c(
41446
41782
  "div",
41447
41783
  { staticClass: "es-login-form-box" },
41448
41784
  [
41785
+ _vm.mode == "complex"
41786
+ ? _c(
41787
+ "div",
41788
+ {
41789
+ staticClass: "es-login-complex-models",
41790
+ class: { "es-complex-title": _vm.active == "3" },
41791
+ },
41792
+ [
41793
+ _vm.active == "3"
41794
+ ? [
41795
+ _c(
41796
+ "div",
41797
+ {
41798
+ staticClass:
41799
+ "es-login-complex-models-item es-active",
41800
+ },
41801
+ [
41802
+ _vm._v(
41803
+ "\n " +
41804
+ _vm._s(_vm.title) +
41805
+ "\n "
41806
+ ),
41807
+ ]
41808
+ ),
41809
+ ]
41810
+ : [
41811
+ _vm._l(_vm.icons, function (item) {
41812
+ return [
41813
+ item.type !== "3"
41814
+ ? _c(
41815
+ "div",
41816
+ {
41817
+ key: item.type,
41818
+ staticClass:
41819
+ "es-login-complex-models-item",
41820
+ class: {
41821
+ "es-active":
41822
+ _vm.active == item.type,
41823
+ },
41824
+ on: {
41825
+ click: function ($event) {
41826
+ _vm.switchLogin(item)
41827
+ },
41828
+ },
41829
+ },
41830
+ [
41831
+ _vm._v(
41832
+ "\n " +
41833
+ _vm._s(item.name) +
41834
+ "\n "
41835
+ ),
41836
+ ]
41837
+ )
41838
+ : _vm._e(),
41839
+ ]
41840
+ }),
41841
+ ],
41842
+ ],
41843
+ 2
41844
+ )
41845
+ : _vm._e(),
41449
41846
  _vm.isShow(_vm.active) &&
41450
41847
  (_vm.active == 0 || _vm.active == 12)
41451
41848
  ? [
@@ -41457,35 +41854,10 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41457
41854
  attrs: { model: _vm.formData },
41458
41855
  },
41459
41856
  [
41460
- !_vm.loginTitleImg
41461
- ? [
41462
- _vm._t(
41463
- "login-title",
41464
- [
41465
- _c(
41466
- "div",
41467
- { staticClass: "es-login-title" },
41468
- [
41469
- _c(
41470
- "span",
41471
- {
41472
- staticClass:
41473
- "es-login-title-content",
41474
- },
41475
- [_vm._v(_vm._s(_vm.title))]
41476
- ),
41477
- ]
41478
- ),
41479
- ],
41480
- { type: _vm.active }
41481
- ),
41482
- ]
41483
- : _vm._e(),
41484
41857
  _c(
41485
41858
  "el-form-item",
41486
41859
  {
41487
41860
  attrs: {
41488
- size: "large",
41489
41861
  prop: "username",
41490
41862
  rules: _vm.username.rules,
41491
41863
  },
@@ -41495,7 +41867,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41495
41867
  "es-input",
41496
41868
  {
41497
41869
  attrs: {
41498
- size: "large",
41499
41870
  type: "text",
41500
41871
  name: "username",
41501
41872
  tabindex: "1",
@@ -41534,7 +41905,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41534
41905
  "el-form-item",
41535
41906
  {
41536
41907
  attrs: {
41537
- size: "large",
41538
41908
  prop: "password",
41539
41909
  rules: _vm.password.rules,
41540
41910
  },
@@ -41544,7 +41914,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41544
41914
  "el-input",
41545
41915
  {
41546
41916
  attrs: {
41547
- size: "large",
41548
41917
  name: "password",
41549
41918
  tabindex: "2",
41550
41919
  type: "password",
@@ -41590,7 +41959,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41590
41959
  "el-form-item",
41591
41960
  {
41592
41961
  attrs: {
41593
- size: "large",
41594
41962
  prop: "identifyingCode",
41595
41963
  rules: [
41596
41964
  {
@@ -41607,7 +41975,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41607
41975
  {
41608
41976
  staticClass: "es-label-image-code",
41609
41977
  attrs: {
41610
- size: "large",
41611
41978
  name: "identifyingCode",
41612
41979
  tabindex: "3",
41613
41980
  type: "text",
@@ -41635,67 +42002,32 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41635
42002
  "es-icon-yanzheng es-label-code-image",
41636
42003
  }),
41637
42004
  ]),
41638
- _c(
41639
- "template",
41640
- { slot: "suffix" },
41641
- [
41642
- _c(
41643
- "el-button",
42005
+ _c("template", { slot: "suffix" }, [
42006
+ _c("img", {
42007
+ directives: [
41644
42008
  {
41645
- directives: [
41646
- {
41647
- name: "show",
41648
- rawName: "v-show",
41649
- value:
41650
- _vm.active == 12 &&
41651
- _vm.showVerifyCode,
41652
- expression:
41653
- "active == 12 && showVerifyCode",
41654
- },
41655
- ],
41656
- staticClass: "es-get-code",
41657
- attrs: {
41658
- type: "primary",
41659
- disabled: _vm.disabled,
41660
- },
41661
- on: {
41662
- click: function ($event) {
41663
- $event.stopPropagation()
41664
- return _vm.getCode(
41665
- $event
41666
- )
41667
- },
41668
- },
42009
+ name: "show",
42010
+ rawName: "v-show",
42011
+ value:
42012
+ _vm.imgCode &&
42013
+ (_vm.active == "0" ||
42014
+ _vm.active == "12"),
42015
+ expression:
42016
+ "imgCode && (active == '0' || active == '12')",
41669
42017
  },
41670
- [_vm._v(_vm._s(_vm.btnText))]
41671
- ),
41672
- _c("img", {
41673
- directives: [
41674
- {
41675
- name: "show",
41676
- rawName: "v-show",
41677
- value:
41678
- _vm.imgCode &&
41679
- (_vm.active == "0" ||
41680
- _vm.active == "12"),
41681
- expression:
41682
- "imgCode && (active == '0' || active == '12')",
41683
- },
41684
- ],
41685
- staticClass: "es-img-code",
41686
- attrs: { src: _vm.imageCode },
41687
- on: {
41688
- click: function ($event) {
41689
- $event.stopPropagation()
41690
- return _vm.getImgCode(
41691
- $event
41692
- )
41693
- },
42018
+ ],
42019
+ staticClass: "es-img-code",
42020
+ attrs: { src: _vm.imageCode },
42021
+ on: {
42022
+ click: function ($event) {
42023
+ $event.stopPropagation()
42024
+ return _vm.getImgCode(
42025
+ $event
42026
+ )
41694
42027
  },
41695
- }),
41696
- ],
41697
- 1
41698
- ),
42028
+ },
42029
+ }),
42030
+ ]),
41699
42031
  ],
41700
42032
  2
41701
42033
  ),
@@ -41705,78 +42037,76 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41705
42037
  : _vm._e(),
41706
42038
  _c(
41707
42039
  "div",
41708
- {
41709
- directives: [
41710
- {
41711
- name: "show",
41712
- rawName: "v-show",
41713
- value: _vm.remember && _vm.forget,
41714
- expression: "remember && forget",
41715
- },
41716
- ],
41717
- staticClass: "es-password-handle",
41718
- },
41719
42040
  [
41720
42041
  _c(
41721
- "el-checkbox",
41722
- {
41723
- directives: [
42042
+ "div",
42043
+ { staticClass: "es-password-handle" },
42044
+ [
42045
+ _c(
42046
+ "el-checkbox",
41724
42047
  {
41725
- name: "show",
41726
- rawName: "v-show",
41727
- value:
41728
- _vm.remember &&
41729
- (_vm.active == "0" ||
41730
- _vm.active == "12"),
41731
- expression:
41732
- "remember && (active == '0' || active == '12')",
42048
+ directives: [
42049
+ {
42050
+ name: "show",
42051
+ rawName: "v-show",
42052
+ value:
42053
+ _vm.remember &&
42054
+ (_vm.active == "0" ||
42055
+ _vm.active == "12"),
42056
+ expression:
42057
+ "remember && (active == '0' || active == '12')",
42058
+ },
42059
+ ],
42060
+ model: {
42061
+ value: _vm.checked,
42062
+ callback: function ($$v) {
42063
+ _vm.checked = $$v
42064
+ },
42065
+ expression: "checked",
42066
+ },
41733
42067
  },
41734
- ],
41735
- model: {
41736
- value: _vm.checked,
41737
- callback: function ($$v) {
41738
- _vm.checked = $$v
42068
+ [_vm._v("记住密码")]
42069
+ ),
42070
+ _c(
42071
+ "div",
42072
+ {
42073
+ directives: [
42074
+ {
42075
+ name: "show",
42076
+ rawName: "v-show",
42077
+ value: _vm.forget,
42078
+ expression: "forget",
42079
+ },
42080
+ ],
42081
+ staticClass: "es-password-forget",
41739
42082
  },
41740
- expression: "checked",
41741
- },
41742
- },
41743
- [_vm._v("记住密码")]
42083
+ [
42084
+ _c(
42085
+ "span",
42086
+ {
42087
+ on: { click: _vm.handleForget },
42088
+ },
42089
+ [_vm._v("修改密码")]
42090
+ ),
42091
+ ]
42092
+ ),
42093
+ ],
42094
+ 1
41744
42095
  ),
41745
42096
  _c(
41746
- "div",
42097
+ "el-button",
41747
42098
  {
41748
- directives: [
41749
- {
41750
- name: "show",
41751
- rawName: "v-show",
41752
- value: _vm.forget,
41753
- expression: "forget",
41754
- },
41755
- ],
41756
- staticClass: "es-password-forget",
42099
+ staticClass: "es-button-submit",
42100
+ attrs: { type: "primary" },
42101
+ on: { click: _vm.handleLogin },
41757
42102
  },
41758
- [
41759
- _c(
41760
- "span",
41761
- { on: { click: _vm.handleForget } },
41762
- [_vm._v("修改密码")]
41763
- ),
41764
- ]
42103
+ [_vm._v("登录")]
41765
42104
  ),
41766
42105
  ],
41767
42106
  1
41768
42107
  ),
41769
- _c(
41770
- "el-button",
41771
- {
41772
- staticClass: "es-button-submit",
41773
- attrs: { type: "primary" },
41774
- on: { click: _vm.handleLogin },
41775
- },
41776
- [_vm._v("登录")]
41777
- ),
41778
42108
  ],
41779
- 2
42109
+ 1
41780
42110
  ),
41781
42111
  ]
41782
42112
  : _vm._e(),
@@ -41785,122 +42115,183 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41785
42115
  ? [
41786
42116
  _c(
41787
42117
  "div",
41788
- { staticClass: "es-login-qrcode" },
42118
+ {
42119
+ staticClass: "es-login-qrcode",
42120
+ class: {
42121
+ "es-login-qrcode-complex":
42122
+ _vm.mode == "complex",
42123
+ },
42124
+ },
41789
42125
  [
41790
- !_vm.loginTitleImg
41791
- ? [
41792
- _vm._t(
41793
- "login-title",
41794
- [
41795
- _c(
41796
- "div",
41797
- { staticClass: "es-login-title" },
41798
- [
41799
- _c(
41800
- "span",
41801
- {
41802
- staticClass:
41803
- "es-login-title-content",
41804
- },
41805
- [_vm._v(_vm._s(_vm.title))]
41806
- ),
42126
+ _vm.mode !== "complex"
42127
+ ? _c(
42128
+ "div",
42129
+ { staticClass: "es-login-down-app" },
42130
+ [
42131
+ _vm._v(
42132
+ "\n 打开\n "
42133
+ ),
42134
+ _vm.active == 3
42135
+ ? [
42136
+ _vm.downloadApp
42137
+ ? _c(
42138
+ "a",
42139
+ {
42140
+ staticClass:
42141
+ "es-login-app-name es-pointer",
42142
+ attrs: {
42143
+ target: "_blank",
42144
+ href: _vm.downloadApp,
42145
+ },
42146
+ },
42147
+ [
42148
+ _vm._v(
42149
+ _vm._s(_vm.app) + "app"
42150
+ ),
42151
+ ]
42152
+ )
42153
+ : _c(
42154
+ "span",
42155
+ {
42156
+ staticClass:
42157
+ "es-login-app-name es-pointer",
42158
+ on: {
42159
+ click:
42160
+ _vm.handleDownLoadApp,
42161
+ },
42162
+ },
42163
+ [
42164
+ _vm._v(
42165
+ _vm._s(_vm.app) +
42166
+ "app\n "
42167
+ ),
42168
+ ]
42169
+ ),
41807
42170
  ]
41808
- ),
41809
- ],
41810
- { type: _vm.active }
41811
- ),
41812
- ]
42171
+ : _c(
42172
+ "span",
42173
+ {
42174
+ staticClass:
42175
+ "es-login-app-name",
42176
+ },
42177
+ [
42178
+ _vm._v(
42179
+ _vm._s(
42180
+ _vm.active == 7
42181
+ ? "钉钉"
42182
+ : "微信"
42183
+ ) + "app "
42184
+ ),
42185
+ ]
42186
+ ),
42187
+ _vm._v(",扫描二维码\n "),
42188
+ ],
42189
+ 2
42190
+ )
41813
42191
  : _vm._e(),
41814
42192
  _c(
41815
42193
  "div",
41816
- { staticClass: "es-login-down-app" },
42194
+ { staticClass: "es-login-qrcode-box" },
41817
42195
  [
41818
- _vm._v(
41819
- "\n 打开\n "
41820
- ),
41821
- _vm.active == 3
41822
- ? [
41823
- _vm.downloadApp
41824
- ? _c(
41825
- "a",
41826
- {
41827
- staticClass:
41828
- "es-login-app-name es-pointer",
41829
- attrs: {
41830
- target: "_blank",
41831
- href: _vm.downloadApp,
41832
- },
41833
- },
41834
- [
41835
- _vm._v(
41836
- _vm._s(_vm.app) + "app"
41837
- ),
41838
- ]
41839
- )
41840
- : _c(
41841
- "span",
41842
- {
41843
- staticClass:
41844
- "es-login-app-name es-pointer",
41845
- on: {
41846
- click:
41847
- _vm.handleDownLoadApp,
41848
- },
41849
- },
41850
- [
41851
- _vm._v(
41852
- _vm._s(_vm.app) +
41853
- "app\n "
41854
- ),
41855
- ]
41856
- ),
41857
- ]
41858
- : _c(
41859
- "span",
41860
- { staticClass: "es-login-app-name" },
42196
+ _vm.active == 3 && _vm.identifyingId
42197
+ ? _c("es-qr-code", {
42198
+ attrs: {
42199
+ content: _vm.identifyingId,
42200
+ logo: _vm.qrimg,
42201
+ auto: "",
42202
+ },
42203
+ })
42204
+ : _vm._e(),
42205
+ _vm.active == 9
42206
+ ? _c(
42207
+ "div",
42208
+ { staticClass: "es-wx-qrcode-box" },
41861
42209
  [
41862
- _vm._v(
41863
- _vm._s(
41864
- _vm.active == 7
41865
- ? "钉钉"
41866
- : "微信"
41867
- ) + "app "
41868
- ),
41869
- ]
41870
- ),
41871
- _vm._v(",扫描二维码\n "),
42210
+ _c("es-wxlogin", {
42211
+ attrs: {
42212
+ href: "data:text/css;base64,LmltcG93ZXJCb3ggLnFyY29kZSB7CiAgICB3aWR0aDogMTAwJSAhaW1wb3J0YW50OwogICAgYm94LXNpemluZzogYm9yZGVyLWJveCAhaW1wb3J0YW50OwogICAgbWFyZ2luOiAwICFpbXBvcnRhbnQ7Cn0KCi5pbXBvd2VyQm94IC5pbmZvLAouaW1wb3dlckJveCAudGl0bGUgewogICAgZGlzcGxheTogbm9uZSAhaW1wb3J0YW50Owp9",
42213
+ auto: "",
42214
+ appid: _vm.wechatAppid,
42215
+ scope: _vm.wechatScope,
42216
+ redirect_uri: _vm.redirectUri,
42217
+ },
42218
+ }),
42219
+ ],
42220
+ 1
42221
+ )
42222
+ : _vm._e(),
41872
42223
  ],
41873
- 2
42224
+ 1
41874
42225
  ),
41875
- _vm.active == 3 && _vm.identifyingId
41876
- ? _c("es-qr-code", {
41877
- attrs: {
41878
- content: _vm.identifyingId,
41879
- logo: _vm.qrimg,
41880
- auto: "",
41881
- },
41882
- })
41883
- : _vm._e(),
41884
- _vm.active == 9
42226
+ _vm.active == 3 && _vm.mode == "complex"
41885
42227
  ? _c(
41886
42228
  "div",
41887
- { staticClass: "es-wx-qrcode-box" },
42229
+ { staticClass: "es-login-complex-app" },
41888
42230
  [
41889
- _c("es-wxlogin", {
41890
- attrs: {
41891
- href: "data:text/css;base64,LmltcG93ZXJCb3ggLnFyY29kZSB7CiAgICB3aWR0aDogMTAwJSAhaW1wb3J0YW50OwogICAgYm94LXNpemluZzogYm9yZGVyLWJveCAhaW1wb3J0YW50OwogICAgbWFyZ2luOiAwICFpbXBvcnRhbnQ7Cn0KCi5pbXBvd2VyQm94IC5pbmZvLAouaW1wb3dlckJveCAudGl0bGUgewogICAgZGlzcGxheTogbm9uZSAhaW1wb3J0YW50Owp9",
41892
- auto: "",
41893
- appid: _vm.wechatAppid,
41894
- scope: _vm.wechatScope,
41895
- redirect_uri: _vm.redirectUri,
42231
+ _vm._m(0),
42232
+ _c(
42233
+ "div",
42234
+ {
42235
+ staticClass:
42236
+ "es-login-complex-download",
41896
42237
  },
41897
- }),
41898
- ],
41899
- 1
42238
+ [
42239
+ _vm.downloadApp
42240
+ ? _c(
42241
+ "a",
42242
+ {
42243
+ staticClass:
42244
+ "es-login-app-name es-pointer",
42245
+ attrs: {
42246
+ target: "_blank",
42247
+ href: _vm.downloadApp,
42248
+ },
42249
+ },
42250
+ [_vm._v("下载app")]
42251
+ )
42252
+ : _c(
42253
+ "span",
42254
+ {
42255
+ staticClass:
42256
+ "es-login-app-name es-pointer",
42257
+ on: {
42258
+ click:
42259
+ _vm.handleDownLoadApp,
42260
+ },
42261
+ },
42262
+ [
42263
+ _vm._v(
42264
+ "下载app\n "
42265
+ ),
42266
+ ]
42267
+ ),
42268
+ ]
42269
+ ),
42270
+ ]
41900
42271
  )
41901
42272
  : _vm._e(),
41902
- ],
41903
- 2
42273
+ _vm.active == 3 && _vm.mode == "complex"
42274
+ ? _c("div", { staticClass: "es-to-login" }, [
42275
+ _c(
42276
+ "span",
42277
+ {
42278
+ staticClass: "es-pointer",
42279
+ on: {
42280
+ click: function ($event) {
42281
+ _vm.switchLoginType()
42282
+ },
42283
+ },
42284
+ },
42285
+ [
42286
+ _vm._v("账号登录"),
42287
+ _c("i", {
42288
+ staticClass: "es-icon-youbian",
42289
+ }),
42290
+ ]
42291
+ ),
42292
+ ])
42293
+ : _vm._e(),
42294
+ ]
41904
42295
  ),
41905
42296
  ]
41906
42297
  : _vm._e(),
@@ -41915,35 +42306,10 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41915
42306
  attrs: { model: _vm.formData },
41916
42307
  },
41917
42308
  [
41918
- !_vm.loginTitleImg
41919
- ? [
41920
- _vm._t(
41921
- "login-title",
41922
- [
41923
- _c(
41924
- "div",
41925
- { staticClass: "es-login-title" },
41926
- [
41927
- _c(
41928
- "span",
41929
- {
41930
- staticClass:
41931
- "es-login-title-content",
41932
- },
41933
- [_vm._v(_vm._s(_vm.title))]
41934
- ),
41935
- ]
41936
- ),
41937
- ],
41938
- { type: _vm.active }
41939
- ),
41940
- ]
41941
- : _vm._e(),
41942
42309
  _c(
41943
42310
  "el-form-item",
41944
42311
  {
41945
42312
  attrs: {
41946
- size: "large",
41947
42313
  prop: "target",
41948
42314
  rules:
41949
42315
  _vm.active == 6
@@ -41956,7 +42322,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41956
42322
  "el-input",
41957
42323
  {
41958
42324
  attrs: {
41959
- size: "large",
41960
42325
  type: "text",
41961
42326
  name: "target",
41962
42327
  tabindex: "4",
@@ -41995,7 +42360,6 @@ var mainvue_type_template_id_7a4efc38_render = function () {
41995
42360
  "el-form-item",
41996
42361
  {
41997
42362
  attrs: {
41998
- size: "large",
41999
42363
  prop: "verificationCode",
42000
42364
  rules: [
42001
42365
  {
@@ -42009,9 +42373,9 @@ var mainvue_type_template_id_7a4efc38_render = function () {
42009
42373
  _c(
42010
42374
  "el-input",
42011
42375
  {
42012
- staticClass: "es-label-image-code",
42376
+ staticClass:
42377
+ "es-label-image-code es-label-get-code",
42013
42378
  attrs: {
42014
- size: "large",
42015
42379
  name: "verificationCode",
42016
42380
  type: "text",
42017
42381
  placeholder: "请输入验证码",
@@ -42070,87 +42434,89 @@ var mainvue_type_template_id_7a4efc38_render = function () {
42070
42434
  ),
42071
42435
  _c(
42072
42436
  "div",
42073
- {
42074
- directives: [
42075
- {
42076
- name: "show",
42077
- rawName: "v-show",
42078
- value: _vm.remember || _vm.forget,
42079
- expression: "remember || forget",
42080
- },
42081
- ],
42082
- staticClass: "es-password-handle",
42083
- },
42084
42437
  [
42085
42438
  _c(
42086
- "el-checkbox",
42087
- {
42088
- directives: [
42439
+ "div",
42440
+ { staticClass: "es-password-handle" },
42441
+ [
42442
+ _c(
42443
+ "el-checkbox",
42089
42444
  {
42090
- name: "show",
42091
- rawName: "v-show",
42092
- value:
42093
- _vm.remember && _vm.active == "0",
42094
- expression:
42095
- "remember && active == '0'",
42445
+ directives: [
42446
+ {
42447
+ name: "show",
42448
+ rawName: "v-show",
42449
+ value:
42450
+ _vm.remember &&
42451
+ _vm.active == "0",
42452
+ expression:
42453
+ "remember && active == '0'",
42454
+ },
42455
+ ],
42456
+ model: {
42457
+ value: _vm.checked,
42458
+ callback: function ($$v) {
42459
+ _vm.checked = $$v
42460
+ },
42461
+ expression: "checked",
42462
+ },
42096
42463
  },
42097
- ],
42098
- model: {
42099
- value: _vm.checked,
42100
- callback: function ($$v) {
42101
- _vm.checked = $$v
42464
+ [_vm._v("记住密码")]
42465
+ ),
42466
+ _c(
42467
+ "div",
42468
+ {
42469
+ directives: [
42470
+ {
42471
+ name: "show",
42472
+ rawName: "v-show",
42473
+ value: _vm.forget,
42474
+ expression: "forget",
42475
+ },
42476
+ ],
42477
+ staticClass: "es-password-forget",
42478
+ on: { click: _vm.handleForget },
42102
42479
  },
42103
- expression: "checked",
42104
- },
42105
- },
42106
- [_vm._v("记住密码")]
42480
+ [
42481
+ _vm._v(
42482
+ "\n 修改密码\n "
42483
+ ),
42484
+ ]
42485
+ ),
42486
+ ],
42487
+ 1
42107
42488
  ),
42108
42489
  _c(
42109
- "div",
42490
+ "el-button",
42110
42491
  {
42111
- directives: [
42112
- {
42113
- name: "show",
42114
- rawName: "v-show",
42115
- value: _vm.forget,
42116
- expression: "forget",
42117
- },
42118
- ],
42119
- staticClass: "es-password-forget",
42120
- on: { click: _vm.handleForget },
42492
+ staticClass: "es-button-submit",
42493
+ attrs: { type: "primary" },
42494
+ on: { click: _vm.handleLogin },
42121
42495
  },
42122
- [
42123
- _vm._v(
42124
- "\n 忘记密码?\n "
42125
- ),
42126
- ]
42496
+ [_vm._v("登录")]
42127
42497
  ),
42128
42498
  ],
42129
42499
  1
42130
42500
  ),
42131
- _c(
42132
- "el-button",
42133
- {
42134
- staticClass: "es-button-submit",
42135
- attrs: { type: "primary" },
42136
- on: { click: _vm.handleLogin },
42137
- },
42138
- [_vm._v("登录")]
42139
- ),
42140
42501
  ],
42141
- 2
42502
+ 1
42142
42503
  ),
42143
42504
  ]
42144
42505
  : _vm._e(),
42145
- _vm.downloadSetup
42506
+ _vm.downloadSetup || _vm.$slots.button
42146
42507
  ? _c(
42147
42508
  "div",
42148
42509
  { staticClass: "es-downloadSetup" },
42149
42510
  [
42150
42511
  _vm._t("button"),
42151
- _c("span", { on: { click: _vm.downloadExe } }, [
42152
- _vm._v("初次使用请下载一键安装包"),
42153
- ]),
42512
+ _c(
42513
+ "span",
42514
+ {
42515
+ staticClass: "es-setup",
42516
+ on: { click: _vm.downloadExe },
42517
+ },
42518
+ [_vm._v("初次使用请下载一键安装包")]
42519
+ ),
42154
42520
  ],
42155
42521
  2
42156
42522
  )
@@ -42167,7 +42533,8 @@ var mainvue_type_template_id_7a4efc38_render = function () {
42167
42533
  ],
42168
42534
  2
42169
42535
  ),
42170
- ]
42536
+ ],
42537
+ 2
42171
42538
  ),
42172
42539
  ]
42173
42540
  ),
@@ -42316,11 +42683,25 @@ var mainvue_type_template_id_7a4efc38_render = function () {
42316
42683
  )
42317
42684
  : _vm._e()
42318
42685
  }
42319
- var mainvue_type_template_id_7a4efc38_staticRenderFns = []
42320
- mainvue_type_template_id_7a4efc38_render._withStripped = true
42686
+ var mainvue_type_template_id_2db7b10a_staticRenderFns = [
42687
+ function () {
42688
+ var _vm = this
42689
+ var _h = _vm.$createElement
42690
+ var _c = _vm._self._c || _h
42691
+ return _c("div", { staticClass: "es-login-complex-scan" }, [
42692
+ _c("i", { staticClass: "es-icon-scan" }),
42693
+ _c("span", { staticClass: "es-login-complex-scan-tips" }, [
42694
+ _vm._v("打开app"),
42695
+ _c("br"),
42696
+ _vm._v("扫一扫登录"),
42697
+ ]),
42698
+ ])
42699
+ },
42700
+ ]
42701
+ mainvue_type_template_id_2db7b10a_render._withStripped = true
42321
42702
 
42322
42703
 
42323
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=7a4efc38&
42704
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=2db7b10a&
42324
42705
 
42325
42706
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=cab38660&
42326
42707
  var resetPasswordvue_type_template_id_cab38660_render = function () {
@@ -43275,6 +43656,61 @@ function login_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
43275
43656
  //
43276
43657
  //
43277
43658
  //
43659
+ //
43660
+ //
43661
+ //
43662
+ //
43663
+ //
43664
+ //
43665
+ //
43666
+ //
43667
+ //
43668
+ //
43669
+ //
43670
+ //
43671
+ //
43672
+ //
43673
+ //
43674
+ //
43675
+ //
43676
+ //
43677
+ //
43678
+ //
43679
+ //
43680
+ //
43681
+ //
43682
+ //
43683
+ //
43684
+ //
43685
+ //
43686
+ //
43687
+ //
43688
+ //
43689
+ //
43690
+ //
43691
+ //
43692
+ //
43693
+ //
43694
+ //
43695
+ //
43696
+ //
43697
+ //
43698
+ //
43699
+ //
43700
+ //
43701
+ //
43702
+ //
43703
+ //
43704
+ //
43705
+ //
43706
+ //
43707
+ //
43708
+ //
43709
+ //
43710
+ //
43711
+ //
43712
+ //
43713
+ //
43278
43714
 
43279
43715
 
43280
43716
 
@@ -43301,6 +43737,25 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43301
43737
  type: String,
43302
43738
  default: 'default'
43303
43739
  },
43740
+ switchs: {
43741
+ type: Array,
43742
+ default: function _default() {
43743
+ return [{
43744
+ type: '0',
43745
+ icon: 'es-icon-zhuomian'
43746
+ }, {
43747
+ type: '3',
43748
+ name: '手机扫码登录',
43749
+ icon: 'es-icon-qrcode',
43750
+ tips: '扫码登陆在这里',
43751
+ background: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAAAoCAYAAAA2cfJIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDA2IDc5LmRhYmFjYmIsIDIwMjEvMDQvMTQtMDA6Mzk6NDQgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMi40IChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZFRTVERTUxQzRDMzExRUY4NkFGQ0U2RDY3NEFERkI0IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZFRTVERTUyQzRDMzExRUY4NkFGQ0U2RDY3NEFERkI0Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkVFNURFNEZDNEMzMTFFRjg2QUZDRTZENjc0QURGQjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkVFNURFNTBDNEMzMTFFRjg2QUZDRTZENjc0QURGQjQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz64XoEfAAAB/UlEQVR42uycOUsDQRiG99vdHJ4JHhFN1EhEQkBsRVACghBbKytBf4OiNrZipQHtRLASsbJIQDQGBVHBysIDAxIvPBCCGpO4ZvwWrCT+gZ33gWV2mam+95mZPWDpcGZYCYQjY4oQs0Y+lxDF4qcCLAFpWrVud/QqRJOpZHy55Jjn3dUODv/oJXU+krm9vkPZrIXL29JU2x5aIaIeluDyb7/KxyDP/C2Eb00yd+l7znfHzLlUvymAk5f9LEplXYRhPHHT8J8AQGIgAAQAEABAAAABAAQAEABAAAABAAQAEABYAiGKBW66A+FIGQSQkIfTk3UjnzM/+G2zBDUQQDK+C3kjfZic+cp+XPHlPkvQCgGk2waESB/vRfNvmdivBJ0QQEJuTw7Wsq/PS7/bQRgCSEjh4/2GlwTNXAAggGS4m9uaXT7/vEI0mkrGExBAIqoafZ6ato5FIprg8DdxDyAR5bUed317KEqqusDhr+ApQCLsFZXOhlDXPGnaBoc/h/cAkuEJdg2pmp7i0+m/fRBAAnjPt3FzxrNfQAAAAQAEABAAQAAAASAAgAAAAgAIAGQVIEeqWo5SWBfSdQ83j/8JENMdzgGXz+9FqayH+ZMozrefT+Ol+nXzz1GBcGS8LhBcdvv8iaJhPKJsFlnebTavbnf0KURTnPNFqTE/AgwAPZCY5D/YjJ4AAAAASUVORK5CYII='
43752
+ }];
43753
+ }
43754
+ },
43755
+ switchsActive: {
43756
+ type: String,
43757
+ default: '0'
43758
+ },
43304
43759
  launch: Boolean,
43305
43760
  param: {
43306
43761
  type: Object,
@@ -43539,7 +43994,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43539
43994
  }
43540
43995
  return '本系统为非涉密系统,禁止上传和处理任何涉密文件';
43541
43996
  },
43542
- switchs: function switchs() {
43997
+ modelLength: function modelLength() {
43543
43998
  return Array.isArray(this.loginModel) ? this.loginModel.length : this.loginModel.split(',').length;
43544
43999
  },
43545
44000
  iconfonts: function iconfonts() {
@@ -43718,7 +44173,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43718
44173
  showLaunch: false,
43719
44174
  launchImages: this.launchImage,
43720
44175
  launchKey: 'day',
43721
- launchTime: 3000
44176
+ launchTime: 2000,
44177
+ switchActive: this.switchsActive
43722
44178
  };
43723
44179
  },
43724
44180
  beforeCreate: function beforeCreate() {
@@ -43919,11 +44375,30 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43919
44375
  _this3.$refs[ref] && _this3.$refs[ref].clearValidate();
43920
44376
  });
43921
44377
  },
44378
+ switchLoginType: function switchLoginType(res) {
44379
+ var _this4 = this;
44380
+
44381
+ this.countdown = 0;
44382
+ if (res) {
44383
+ this.active = res.type;
44384
+ this.title = res.name || '';
44385
+ this.switchActive = res.type;
44386
+ } else {
44387
+ this.active = this.switchs[0].type;
44388
+ this.title = '';
44389
+ this.switchActive = this.switchs[0].type;
44390
+ }
44391
+ this.$emit('change-type', res, this.identifyingId);
44392
+ this.$nextTick(function () {
44393
+ var ref = 'login' + _this4.active;
44394
+ _this4.$refs[ref] && _this4.$refs[ref].clearValidate();
44395
+ });
44396
+ },
43922
44397
  isShow: function isShow(res) {
43923
44398
  return this.loginModel.indexOf(res) > -1;
43924
44399
  },
43925
44400
  getLogin: function getLogin() {
43926
- var _this4 = this;
44401
+ var _this5 = this;
43927
44402
 
43928
44403
  return login_src_mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
43929
44404
  var config;
@@ -43934,10 +44409,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43934
44409
  config = utils_util["a" /* default */].getStorage('initLogin');
43935
44410
 
43936
44411
  if (config) {
43937
- _this4.setConfig(JSON.parse(config));
44412
+ _this5.setConfig(JSON.parse(config));
43938
44413
  }
43939
44414
  _context.next = 4;
43940
- return utils_util["a" /* default */].ajax({ url: _this4.initLogin }).then(function (res) {
44415
+ return utils_util["a" /* default */].ajax({ url: _this5.initLogin }).then(function (res) {
43941
44416
  if (res && res.rCode === 0) {
43942
44417
  utils_store.set('initLogin', res.results);
43943
44418
  utils_util["a" /* default */].setStorage({
@@ -43945,10 +44420,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43945
44420
  key: 'initLogin',
43946
44421
  value: JSON.stringify(res.results)
43947
44422
  });
43948
- _this4.$emit('initLogin', res.results);
43949
- _this4.setConfig(res.results);
44423
+ _this5.$emit('initLogin', res.results);
44424
+ _this5.setConfig(res.results);
43950
44425
  } else {
43951
- _this4.$message({
44426
+ _this5.$message({
43952
44427
  message: res.msg || '系统错误,请联系管理员!',
43953
44428
  type: 'error',
43954
44429
  duration: 2000
@@ -43956,7 +44431,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43956
44431
  }
43957
44432
  }).catch(function (err) {
43958
44433
  if (err.message && err.message !== 'canceled') {
43959
- _this4.$message.error(err.message);
44434
+ _this5.$message.error(err.message);
43960
44435
  }
43961
44436
  });
43962
44437
 
@@ -43965,7 +44440,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43965
44440
  return _context.stop();
43966
44441
  }
43967
44442
  }
43968
- }, _callee, _this4);
44443
+ }, _callee, _this5);
43969
44444
  }))();
43970
44445
  },
43971
44446
  setConfig: function setConfig(res) {
@@ -44094,7 +44569,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44094
44569
  return this.imageCode;
44095
44570
  },
44096
44571
  getCode: function getCode() {
44097
- var _this5 = this;
44572
+ var _this6 = this;
44098
44573
 
44099
44574
  if (this.countdown) {
44100
44575
  return false;
@@ -44136,14 +44611,14 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44136
44611
  }
44137
44612
  this.countdown = 60;
44138
44613
  this.timer = setInterval(function () {
44139
- if (_this5.countdown > 0) {
44140
- _this5.countdown--;
44141
- _this5.disabled = true;
44142
- _this5.btnText = '重新获取' + _this5.countdown + 's';
44614
+ if (_this6.countdown > 0) {
44615
+ _this6.countdown--;
44616
+ _this6.disabled = true;
44617
+ _this6.btnText = '重新获取' + _this6.countdown + 's';
44143
44618
  } else {
44144
- _this5.btnText = '重新获取';
44145
- _this5.disabled = false;
44146
- _this5.submit = false;
44619
+ _this6.btnText = '重新获取';
44620
+ _this6.disabled = false;
44621
+ _this6.submit = false;
44147
44622
  }
44148
44623
  }, 1000);
44149
44624
  utils_util["a" /* default */].ajax({
@@ -44151,26 +44626,26 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44151
44626
  url: this.active == 12 ? this.getTwoFactorLoginCode : this.getLoginCode,
44152
44627
  data: data
44153
44628
  }).then(function (res) {
44154
- _this5.$message({
44629
+ _this6.$message({
44155
44630
  message: res.msg,
44156
44631
  duration: 2000,
44157
44632
  type: res.rCode == 0 ? 'success' : 'error'
44158
44633
  });
44159
44634
 
44160
44635
  if (res.rCode === 2) {
44161
- _this5.btnText = '获取验证码';
44162
- _this5.disabled = false;
44163
- _this5.countdown = 0;
44164
- clearInterval(_this5.timer);
44636
+ _this6.btnText = '获取验证码';
44637
+ _this6.disabled = false;
44638
+ _this6.countdown = 0;
44639
+ clearInterval(_this6.timer);
44165
44640
  }
44166
44641
  }).catch(function (err) {
44167
44642
  if (err.message && err.message !== 'canceled') {
44168
- _this5.$message.error(err.message);
44643
+ _this6.$message.error(err.message);
44169
44644
  }
44170
44645
  });
44171
44646
  },
44172
44647
  handleLogin: function handleLogin() {
44173
- var _this6 = this;
44648
+ var _this7 = this;
44174
44649
 
44175
44650
  if (this.submit) {
44176
44651
  return false;
@@ -44178,40 +44653,40 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44178
44653
  var ref = 'login' + this.active;
44179
44654
  this.$refs[ref].validate(function (valid) {
44180
44655
  if (valid) {
44181
- _this6.submit = true;
44656
+ _this7.submit = true;
44182
44657
  var param = utils_util["a" /* default */].getParams() || {};
44183
- var data = _this6.active == '0' ? {
44184
- username: _this6.formData.username,
44185
- password: _this6.secret && _this6.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
44186
- data: _this6.formData.password,
44187
- key: _this6.secret
44188
- }) : _this6.formData.password,
44189
- identifyingCode: _this6.formData.identifyingCode,
44190
- identifyingId: _this6.identifyingId
44191
- } : _this6.active == '12' ? {
44192
- username: _this6.formData.username,
44193
- password: _this6.secret && _this6.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
44194
- data: _this6.formData.password,
44195
- key: _this6.secret
44196
- }) : _this6.formData.password,
44197
- targetType: _this6.passModifyModel.indexOf('11') > -1 ? 'EMAIL' : 'SMS',
44198
- verificationCode: _this6.formData.identifyingCode
44658
+ var data = _this7.active == '0' ? {
44659
+ username: _this7.formData.username,
44660
+ password: _this7.secret && _this7.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
44661
+ data: _this7.formData.password,
44662
+ key: _this7.secret
44663
+ }) : _this7.formData.password,
44664
+ identifyingCode: _this7.formData.identifyingCode,
44665
+ identifyingId: _this7.identifyingId
44666
+ } : _this7.active == '12' ? {
44667
+ username: _this7.formData.username,
44668
+ password: _this7.secret && _this7.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
44669
+ data: _this7.formData.password,
44670
+ key: _this7.secret
44671
+ }) : _this7.formData.password,
44672
+ targetType: _this7.passModifyModel.indexOf('11') > -1 ? 'EMAIL' : 'SMS',
44673
+ verificationCode: _this7.formData.identifyingCode
44199
44674
  } : {
44200
- target: _this6.formData.target,
44201
- verificationCode: _this6.formData.verificationCode,
44202
- targetType: _this6.active == '6' ? 'SMS' : 'EMAIL'
44675
+ target: _this7.formData.target,
44676
+ verificationCode: _this7.formData.verificationCode,
44677
+ targetType: _this7.active == '6' ? 'SMS' : 'EMAIL'
44203
44678
  };
44204
- if (_this6.onLogin) {
44205
- if (_this6.active == '0') {
44206
- _this6.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data), _this6.getImgCode, _this6.handleRemember);
44679
+ if (_this7.onLogin) {
44680
+ if (_this7.active == '0') {
44681
+ _this7.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data), _this7.getImgCode, _this7.handleRemember);
44207
44682
  } else {
44208
- _this6.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data));
44683
+ _this7.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data));
44209
44684
  }
44210
44685
  } else {
44211
- _this6.handleUserLogin(login_src_mainvue_type_script_lang_js_extends({}, param, _this6.param, data));
44686
+ _this7.handleUserLogin(login_src_mainvue_type_script_lang_js_extends({}, param, _this7.param, data));
44212
44687
  }
44213
44688
  } else {
44214
- _this6.submit = false;
44689
+ _this7.submit = false;
44215
44690
  return false;
44216
44691
  }
44217
44692
  });
@@ -44227,7 +44702,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44227
44702
  }
44228
44703
  },
44229
44704
  handleUserLogin: function handleUserLogin(data) {
44230
- var _this7 = this;
44705
+ var _this8 = this;
44231
44706
 
44232
44707
  var extUserBindHandleId = sessionStorage.getItem('extUserBindHandleId');
44233
44708
  utils_util["a" /* default */].ajax({
@@ -44235,68 +44710,68 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44235
44710
  url: this.active == '0' ? this.actionUrl : this.active == '12' ? this.doTwoFactorLogin : this.doCodeLogin,
44236
44711
  data: extUserBindHandleId ? login_src_mainvue_type_script_lang_js_extends({}, data, { extUserBindHandleId: extUserBindHandleId }) : data
44237
44712
  }).then(function (res) {
44238
- _this7.submit = false;
44713
+ _this8.submit = false;
44239
44714
  if (res.rCode == 0) {
44240
44715
  utils_util["a" /* default */].removeStorage('extUserBindHandleId');
44241
- _this7.handleRemember();
44716
+ _this8.handleRemember();
44242
44717
  var results = res.results;
44243
- _this7.handleResults(results);
44244
- if (_this7.onSuccess) {
44245
- _this7.onSuccess(res);
44718
+ _this8.handleResults(results);
44719
+ if (_this8.onSuccess) {
44720
+ _this8.onSuccess(res);
44246
44721
  }
44247
44722
  } else {
44248
44723
  var msg = res.results && res.results.msg ? res.results.msg : res.msg;
44249
- _this7.$message({
44724
+ _this8.$message({
44250
44725
  message: msg || '系统错误,请联系管理员!',
44251
44726
  type: 'error',
44252
44727
  duration: 1500,
44253
44728
  onClose: function onClose() {
44254
- _this7.btnText = '获取验证码';
44255
- _this7.disabled = false;
44256
- _this7.countdown = 0;
44257
- clearInterval(_this7.timer);
44258
- _this7.getImgCode();
44729
+ _this8.btnText = '获取验证码';
44730
+ _this8.disabled = false;
44731
+ _this8.countdown = 0;
44732
+ clearInterval(_this8.timer);
44733
+ _this8.getImgCode();
44259
44734
  }
44260
44735
  });
44261
- _this7.onError(res);
44736
+ _this8.onError(res);
44262
44737
  }
44263
44738
  }).catch(function (err) {
44264
- _this7.submit = false;
44739
+ _this8.submit = false;
44265
44740
  if (err.message && err.message !== 'canceled') {
44266
- _this7.$message.error(err.message);
44741
+ _this8.$message.error(err.message);
44267
44742
  }
44268
44743
  });
44269
44744
  },
44270
44745
  caLogin: function caLogin(signedData) {
44271
- var _this8 = this;
44746
+ var _this9 = this;
44272
44747
 
44273
44748
  utils_util["a" /* default */].ajax({
44274
44749
  method: 'post',
44275
44750
  url: this.caAction,
44276
44751
  data: { identifyingId: this.identifyingId, signedData: signedData }
44277
44752
  }).then(function (res) {
44278
- _this8.submit = false;
44753
+ _this9.submit = false;
44279
44754
  if (res.rCode == 0) {
44280
44755
  var results = res.results;
44281
- _this8.handleResults(results);
44282
- if (_this8.onSuccess) {
44283
- _this8.onSuccess(res);
44756
+ _this9.handleResults(results);
44757
+ if (_this9.onSuccess) {
44758
+ _this9.onSuccess(res);
44284
44759
  }
44285
44760
  } else {
44286
44761
  var msg = res.results && res.results.msg ? res.results.msg : res.msg;
44287
- _this8.$message({
44762
+ _this9.$message({
44288
44763
  message: msg || '系统错误,请联系管理员!',
44289
44764
  type: 'error',
44290
44765
  duration: 1500,
44291
44766
  onClose: function onClose() {
44292
- _this8.getImgCode();
44767
+ _this9.getImgCode();
44293
44768
  }
44294
44769
  });
44295
- _this8.onError(res);
44770
+ _this9.onError(res);
44296
44771
  }
44297
44772
  }).catch(function (err) {
44298
44773
  if (err.message && err.message !== 'canceled') {
44299
- _this8.$message.error(err.message);
44774
+ _this9.$message.error(err.message);
44300
44775
  }
44301
44776
  });
44302
44777
  },
@@ -44313,17 +44788,17 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44313
44788
 
44314
44789
  //获取app登录信息
44315
44790
  loginInfo: function loginInfo(res) {
44316
- var _this9 = this;
44791
+ var _this10 = this;
44317
44792
 
44318
44793
  clearTimeout(this.interval);
44319
44794
  if (res) {
44320
44795
  this.interval = setTimeout(function () {
44321
- _this9.initRequestLoginInfo();
44796
+ _this10.initRequestLoginInfo();
44322
44797
  }, this.scanIntervalTime);
44323
44798
  }
44324
44799
  },
44325
44800
  initRequestLoginInfo: function initRequestLoginInfo() {
44326
- var _this10 = this;
44801
+ var _this11 = this;
44327
44802
 
44328
44803
  if (this.identifyingId == '') {
44329
44804
  return false;
@@ -44338,21 +44813,21 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44338
44813
  if (res.rCode === 0) {
44339
44814
  var results = res.results;
44340
44815
  if (results.statusCode === 0) {
44341
- clearTimeout(_this10.interval);
44342
- _this10.handleResults(results, 3);
44816
+ clearTimeout(_this11.interval);
44817
+ _this11.handleResults(results, 3);
44343
44818
  } else {
44344
- _this10.loginInfo(true);
44819
+ _this11.loginInfo(true);
44345
44820
  }
44346
44821
  }
44347
44822
  }).catch(function (err) {
44348
- clearTimeout(_this10.interval);
44823
+ clearTimeout(_this11.interval);
44349
44824
  if (err.message && err.message !== 'canceled') {
44350
- _this10.$message.error(err.message);
44825
+ _this11.$message.error(err.message);
44351
44826
  }
44352
44827
  });
44353
44828
  },
44354
44829
  handleResults: function handleResults(results, type) {
44355
- var _this11 = this;
44830
+ var _this12 = this;
44356
44831
 
44357
44832
  switch (results.statusCode) {
44358
44833
  case 0:
@@ -44377,9 +44852,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44377
44852
  });
44378
44853
  this.showLaunch = true;
44379
44854
  setTimeout(function () {
44380
- if (_this11.toUrl) {
44381
- window.location.href = _this11.toUrl;
44382
- } else if (results.doorIndex && _this11.doorIndex) {
44855
+ if (_this12.toUrl) {
44856
+ window.location.href = _this12.toUrl;
44857
+ } else if (results.doorIndex && _this12.doorIndex) {
44383
44858
  sessionStorage.setItem('doorIndex', results.doorIndex);
44384
44859
  localStorage.setItem('isLogined', true);
44385
44860
  window.location.href = results.doorIndex;
@@ -44387,9 +44862,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44387
44862
  if (window.location.href.indexOf('login.html') > -1) {
44388
44863
  window.location.href = './main.html';
44389
44864
  } else {
44390
- _this11.$router.push({ name: 'main' });
44391
- _this11.$nextTick(function () {
44392
- _this11.showLaunch = false;
44865
+ _this12.$router.push({ name: 'main' });
44866
+ _this12.$nextTick(function () {
44867
+ _this12.showLaunch = false;
44393
44868
  });
44394
44869
  }
44395
44870
  }
@@ -44400,9 +44875,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44400
44875
  type: 'success',
44401
44876
  duration: 1500,
44402
44877
  onClose: function onClose() {
44403
- if (_this11.toUrl) {
44404
- window.location.href = _this11.toUrl;
44405
- } else if (results.doorIndex && _this11.doorIndex) {
44878
+ if (_this12.toUrl) {
44879
+ window.location.href = _this12.toUrl;
44880
+ } else if (results.doorIndex && _this12.doorIndex) {
44406
44881
  sessionStorage.setItem('doorIndex', results.doorIndex);
44407
44882
  localStorage.setItem('isLogined', true);
44408
44883
  window.location.href = results.doorIndex;
@@ -44410,7 +44885,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44410
44885
  if (window.location.href.indexOf('login.html') > -1) {
44411
44886
  window.location.href = './main.html';
44412
44887
  } else {
44413
- _this11.$router.push({ name: 'main' });
44888
+ _this12.$router.push({ name: 'main' });
44414
44889
  }
44415
44890
  }
44416
44891
  }
@@ -44423,11 +44898,11 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44423
44898
  //cancelButtonText: '取消',
44424
44899
  type: 'warning'
44425
44900
  }).then(function () {
44426
- _this11.operationCheckCode = results.checkCode;
44427
- if (typeof _this11.forget === 'string') {
44428
- utils_util["a" /* default */].win.open(_this11.forgetUrl);
44901
+ _this12.operationCheckCode = results.checkCode;
44902
+ if (typeof _this12.forget === 'string') {
44903
+ utils_util["a" /* default */].win.open(_this12.forgetUrl);
44429
44904
  } else {
44430
- _this11.showResetPassword = true;
44905
+ _this12.showResetPassword = true;
44431
44906
  }
44432
44907
  }).catch(function (e) {});
44433
44908
  break;
@@ -44468,13 +44943,13 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44468
44943
  type: 'error',
44469
44944
  duration: 1500,
44470
44945
  onClose: function onClose() {
44471
- if (_this11.code) {
44946
+ if (_this12.code) {
44472
44947
  window.location.href = utils_util["a" /* default */].delUrlParam({ key: 'code' });
44473
44948
  if (window.location.hash) {
44474
44949
  location.reload();
44475
44950
  }
44476
44951
  } else {
44477
- _this11.getImgCode();
44952
+ _this12.getImgCode();
44478
44953
  }
44479
44954
  }
44480
44955
  });
@@ -44484,15 +44959,15 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44484
44959
  }
44485
44960
  },
44486
44961
  handleAssistance: function handleAssistance(data) {
44487
- var _this12 = this;
44962
+ var _this13 = this;
44488
44963
 
44489
44964
  clearTimeout(this.doAssistance);
44490
44965
  this.doAssistance = setTimeout(function () {
44491
- _this12.doAssistanceLogin(data);
44966
+ _this13.doAssistanceLogin(data);
44492
44967
  }, this.scanIntervalTime);
44493
44968
  },
44494
44969
  doAssistanceLogin: function doAssistanceLogin(data) {
44495
- var _this13 = this;
44970
+ var _this14 = this;
44496
44971
 
44497
44972
  utils_util["a" /* default */].ajax({
44498
44973
  method: 'post',
@@ -44502,19 +44977,19 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44502
44977
  if (res.rCode === 0) {
44503
44978
  var results = res.results;
44504
44979
  if (results.statusCode === 0) {
44505
- clearTimeout(_this13.doAssistance);
44506
- _this13.handleResults(results, 3);
44980
+ clearTimeout(_this14.doAssistance);
44981
+ _this14.handleResults(results, 3);
44507
44982
  } else {
44508
- _this13.handleAssistance(data);
44983
+ _this14.handleAssistance(data);
44509
44984
  }
44510
44985
  } else {
44511
- clearTimeout(_this13.doAssistance);
44512
- _this13.$message.error(res.msg);
44986
+ clearTimeout(_this14.doAssistance);
44987
+ _this14.$message.error(res.msg);
44513
44988
  }
44514
44989
  }).catch(function (err) {
44515
- clearTimeout(_this13.doAssistance);
44990
+ clearTimeout(_this14.doAssistance);
44516
44991
  if (err.message && err.message !== 'canceled') {
44517
- _this13.$message.error(err.message);
44992
+ _this14.$message.error(err.message);
44518
44993
  }
44519
44994
  });
44520
44995
  },
@@ -44551,8 +45026,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44551
45026
 
44552
45027
  var login_src_main_component = normalizeComponent(
44553
45028
  packages_login_src_mainvue_type_script_lang_js_,
44554
- mainvue_type_template_id_7a4efc38_render,
44555
- mainvue_type_template_id_7a4efc38_staticRenderFns,
45029
+ mainvue_type_template_id_2db7b10a_render,
45030
+ mainvue_type_template_id_2db7b10a_staticRenderFns,
44556
45031
  false,
44557
45032
  null,
44558
45033
  null,
@@ -44569,8 +45044,8 @@ login_src_main.install = function (Vue) {
44569
45044
  };
44570
45045
 
44571
45046
  /* harmony default export */ var login = (login_src_main);
44572
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=72ff8660&
44573
- var mainvue_type_template_id_72ff8660_render = function () {
45047
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=7a0c767d&
45048
+ var mainvue_type_template_id_7a0c767d_render = function () {
44574
45049
  var _vm = this
44575
45050
  var _h = _vm.$createElement
44576
45051
  var _c = _vm._self._c || _h
@@ -44590,7 +45065,10 @@ var mainvue_type_template_id_72ff8660_render = function () {
44590
45065
  appCode: _vm.appCode,
44591
45066
  "old-version": _vm.multiple,
44592
45067
  },
44593
- on: { "chang-layout": _vm.changLayout },
45068
+ on: {
45069
+ "chang-layout": _vm.changLayout,
45070
+ "bus-emit": _vm.busEmit,
45071
+ },
44594
45072
  },
44595
45073
  "simplicity",
44596
45074
  _vm.$attrs,
@@ -44606,7 +45084,10 @@ var mainvue_type_template_id_72ff8660_render = function () {
44606
45084
  {
44607
45085
  ref: "main",
44608
45086
  attrs: { "new-version": _vm.multiple, scene: _vm.layout },
44609
- on: { "chang-layout": _vm.changLayout },
45087
+ on: {
45088
+ "chang-layout": _vm.changLayout,
45089
+ "bus-emit": _vm.busEmit,
45090
+ },
44610
45091
  },
44611
45092
  "main-default",
44612
45093
  _vm.$attrs,
@@ -44626,7 +45107,7 @@ var mainvue_type_template_id_72ff8660_render = function () {
44626
45107
  "update:visible": function ($event) {
44627
45108
  _vm.$set(_vm.visibles, index, $event)
44628
45109
  },
44629
- closed: function ($event) {
45110
+ close: function ($event) {
44630
45111
  _vm.handleClosed(item, index)
44631
45112
  },
44632
45113
  },
@@ -44657,14 +45138,14 @@ var mainvue_type_template_id_72ff8660_render = function () {
44657
45138
  )
44658
45139
  : _vm._e()
44659
45140
  }
44660
- var mainvue_type_template_id_72ff8660_staticRenderFns = []
44661
- mainvue_type_template_id_72ff8660_render._withStripped = true
45141
+ var mainvue_type_template_id_7a0c767d_staticRenderFns = []
45142
+ mainvue_type_template_id_7a0c767d_render._withStripped = true
44662
45143
 
44663
45144
 
44664
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=72ff8660&
45145
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=7a0c767d&
44665
45146
 
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 () {
45147
+ // 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=468ae668&scoped=true&
45148
+ var simplicityvue_type_template_id_468ae668_scoped_true_render = function () {
44668
45149
  var _vm = this
44669
45150
  var _h = _vm.$createElement
44670
45151
  var _c = _vm._self._c || _h
@@ -45294,11 +45775,11 @@ var simplicityvue_type_template_id_2c8bf964_scoped_true_render = function () {
45294
45775
  ),
45295
45776
  ])
45296
45777
  }
45297
- var simplicityvue_type_template_id_2c8bf964_scoped_true_staticRenderFns = []
45298
- simplicityvue_type_template_id_2c8bf964_scoped_true_render._withStripped = true
45778
+ var simplicityvue_type_template_id_468ae668_scoped_true_staticRenderFns = []
45779
+ simplicityvue_type_template_id_468ae668_scoped_true_render._withStripped = true
45299
45780
 
45300
45781
 
45301
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=2c8bf964&scoped=true&
45782
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=468ae668&scoped=true&
45302
45783
 
45303
45784
  // 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
45785
  var avatarvue_type_template_id_1560e8bf_scoped_true_render = function () {
@@ -47954,8 +48435,8 @@ var user_component = normalizeComponent(
47954
48435
  )
47955
48436
 
47956
48437
  /* harmony default export */ var simplicity_user = (user_component.exports);
47957
- // 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/message.vue?vue&type=template&id=0ee7ab90&
47958
- var messagevue_type_template_id_0ee7ab90_render = function () {
48438
+ // 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/message.vue?vue&type=template&id=392f42f9&
48439
+ var messagevue_type_template_id_392f42f9_render = function () {
47959
48440
  var _vm = this
47960
48441
  var _h = _vm.$createElement
47961
48442
  var _c = _vm._self._c || _h
@@ -48113,17 +48594,18 @@ var messagevue_type_template_id_0ee7ab90_render = function () {
48113
48594
  "update:visible": function ($event) {
48114
48595
  _vm.$set(_vm.dialog, "show", $event)
48115
48596
  },
48597
+ close: _vm.handleClose,
48116
48598
  },
48117
48599
  }),
48118
48600
  ],
48119
48601
  1
48120
48602
  )
48121
48603
  }
48122
- var messagevue_type_template_id_0ee7ab90_staticRenderFns = []
48123
- messagevue_type_template_id_0ee7ab90_render._withStripped = true
48604
+ var messagevue_type_template_id_392f42f9_staticRenderFns = []
48605
+ messagevue_type_template_id_392f42f9_render._withStripped = true
48124
48606
 
48125
48607
 
48126
- // CONCATENATED MODULE: ./packages/main/src/simplicity/message.vue?vue&type=template&id=0ee7ab90&
48608
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/message.vue?vue&type=template&id=392f42f9&
48127
48609
 
48128
48610
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/message.vue?vue&type=script&lang=js&
48129
48611
  //
@@ -48193,6 +48675,7 @@ messagevue_type_template_id_0ee7ab90_render._withStripped = true
48193
48675
  //
48194
48676
  //
48195
48677
  //
48678
+ //
48196
48679
 
48197
48680
 
48198
48681
 
@@ -48341,10 +48824,20 @@ messagevue_type_template_id_0ee7ab90_render._withStripped = true
48341
48824
 
48342
48825
  //处理消息
48343
48826
  handleMessage: function handleMessage(item, index) {
48827
+ var _this4 = this;
48828
+
48344
48829
  this.count -= 1;
48345
48830
  this.msgs.splice(index, 1);
48346
48831
  if (this.winopen) {
48347
- utils_util["a" /* default */].win.open(item.handlerUrl);
48832
+ var mywin = utils_util["a" /* default */].win.open(item.handlerUrl);
48833
+ if (mywin) {
48834
+ var times = setInterval(function () {
48835
+ if (mywin.closed) {
48836
+ clearInterval(times);
48837
+ _this4.$parent.$emit('bus-emit', 'waitdone');
48838
+ }
48839
+ }, 1000);
48840
+ }
48348
48841
  } else {
48349
48842
  this.dialog = {
48350
48843
  show: true,
@@ -48368,6 +48861,10 @@ messagevue_type_template_id_0ee7ab90_render._withStripped = true
48368
48861
  this.$emit('handle', id);
48369
48862
  }
48370
48863
  this.dialog.show = false;
48864
+ },
48865
+ handleClose: function handleClose() {
48866
+ console.log(22222);
48867
+ this.$parent.$emit('bus-emit', 'waitdone');
48371
48868
  }
48372
48869
  }
48373
48870
  });
@@ -48383,8 +48880,8 @@ messagevue_type_template_id_0ee7ab90_render._withStripped = true
48383
48880
 
48384
48881
  var message_component = normalizeComponent(
48385
48882
  simplicity_messagevue_type_script_lang_js_,
48386
- messagevue_type_template_id_0ee7ab90_render,
48387
- messagevue_type_template_id_0ee7ab90_staticRenderFns,
48883
+ messagevue_type_template_id_392f42f9_render,
48884
+ messagevue_type_template_id_392f42f9_staticRenderFns,
48388
48885
  false,
48389
48886
  null,
48390
48887
  null,
@@ -48393,8 +48890,8 @@ var message_component = normalizeComponent(
48393
48890
  )
48394
48891
 
48395
48892
  /* harmony default export */ var simplicity_message = (message_component.exports);
48396
- // 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/notice.vue?vue&type=template&id=1c74f5bb&
48397
- var noticevue_type_template_id_1c74f5bb_render = function () {
48893
+ // 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/notice.vue?vue&type=template&id=4696772e&
48894
+ var noticevue_type_template_id_4696772e_render = function () {
48398
48895
  var _vm = this
48399
48896
  var _h = _vm.$createElement
48400
48897
  var _c = _vm._self._c || _h
@@ -48533,6 +49030,7 @@ var noticevue_type_template_id_1c74f5bb_render = function () {
48533
49030
  "update:visible": function ($event) {
48534
49031
  _vm.$set(_vm.dialog, "show", $event)
48535
49032
  },
49033
+ close: _vm.handleClose,
48536
49034
  },
48537
49035
  }),
48538
49036
  ],
@@ -48541,11 +49039,11 @@ var noticevue_type_template_id_1c74f5bb_render = function () {
48541
49039
  ]
48542
49040
  )
48543
49041
  }
48544
- var noticevue_type_template_id_1c74f5bb_staticRenderFns = []
48545
- noticevue_type_template_id_1c74f5bb_render._withStripped = true
49042
+ var noticevue_type_template_id_4696772e_staticRenderFns = []
49043
+ noticevue_type_template_id_4696772e_render._withStripped = true
48546
49044
 
48547
49045
 
48548
- // CONCATENATED MODULE: ./packages/main/src/simplicity/notice.vue?vue&type=template&id=1c74f5bb&
49046
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/notice.vue?vue&type=template&id=4696772e&
48549
49047
 
48550
49048
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/notice.vue?vue&type=script&lang=js&
48551
49049
  //
@@ -48611,6 +49109,7 @@ noticevue_type_template_id_1c74f5bb_render._withStripped = true
48611
49109
  //
48612
49110
  //
48613
49111
  //
49112
+ //
48614
49113
 
48615
49114
 
48616
49115
 
@@ -48705,8 +49204,18 @@ noticevue_type_template_id_1c74f5bb_render._withStripped = true
48705
49204
 
48706
49205
  //处理消息
48707
49206
  handleMessage: function handleMessage(item, index) {
49207
+ var _this3 = this;
49208
+
48708
49209
  if (item.urlopenmode === 1 || this.winopen) {
48709
- utils_util["a" /* default */].win.open(item.handlerUrl);
49210
+ var mywin = utils_util["a" /* default */].win.open(item.handlerUrl);
49211
+ if (mywin) {
49212
+ var times = setInterval(function () {
49213
+ if (mywin.closed) {
49214
+ clearInterval(times);
49215
+ _this3.$parent.$emit('bus-emit', 'waitdone');
49216
+ }
49217
+ }, 1000);
49218
+ }
48710
49219
  } else {
48711
49220
  this.dialog = {
48712
49221
  show: true,
@@ -48726,6 +49235,9 @@ noticevue_type_template_id_1c74f5bb_render._withStripped = true
48726
49235
  this.msgs = this.msgs.splice(this.index, 1);
48727
49236
  }
48728
49237
  this.dialog.show = false;
49238
+ },
49239
+ handleClose: function handleClose() {
49240
+ this.$parent.$emit('bus-emit', 'waitdone');
48729
49241
  }
48730
49242
  }
48731
49243
  });
@@ -48741,8 +49253,8 @@ noticevue_type_template_id_1c74f5bb_render._withStripped = true
48741
49253
 
48742
49254
  var notice_component = normalizeComponent(
48743
49255
  simplicity_noticevue_type_script_lang_js_,
48744
- noticevue_type_template_id_1c74f5bb_render,
48745
- noticevue_type_template_id_1c74f5bb_staticRenderFns,
49256
+ noticevue_type_template_id_4696772e_render,
49257
+ noticevue_type_template_id_4696772e_staticRenderFns,
48746
49258
  false,
48747
49259
  null,
48748
49260
  null,
@@ -49098,7 +49610,7 @@ settingsvue_type_template_id_47a98925_render._withStripped = true
49098
49610
  // CONCATENATED MODULE: ./packages/main/src/public/settings.vue?vue&type=template&id=47a98925&
49099
49611
 
49100
49612
  // EXTERNAL MODULE: external "slate"
49101
- var external_slate_ = __webpack_require__(22);
49613
+ var external_slate_ = __webpack_require__(21);
49102
49614
 
49103
49615
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/settings.vue?vue&type=script&lang=js&
49104
49616
  //
@@ -51115,13 +51627,6 @@ var events = [function (tabs, index, that) {
51115
51627
  }
51116
51628
  },
51117
51629
  created: function created() {
51118
- var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
51119
- if (mainConfig) {
51120
- var results = JSON.parse(mainConfig);
51121
- if (Object.keys(results).length) {
51122
- this.init(results);
51123
- }
51124
- }
51125
51630
  this.doorIndex = sessionStorage.getItem('doorIndex');
51126
51631
  },
51127
51632
  mounted: function mounted() {
@@ -51152,22 +51657,22 @@ var events = [function (tabs, index, that) {
51152
51657
  }
51153
51658
  var pathname = url.substring(url.indexOf('#/') + 1);
51154
51659
  pathname = pathname.split('?')[0];
51155
- var _code = void 0;
51660
+ var appCode = void 0;
51156
51661
  if (res.path !== '/' && pathname == _path) {
51157
51662
  if (res.components) {
51158
- if (!res.components[_code]) {
51159
- console.error('路由“命名视图”规范属性名称与菜单appCode不一致', res, _code);
51160
- _code = Object.keys(res.components).filter(function (item) {
51663
+ if (!res.components[code]) {
51664
+ console.error('路由“命名视图”规范属性名称与菜单appCode不一致', res, code);
51665
+ appCode = Object.keys(res.components).filter(function (item) {
51161
51666
  return item !== 'default';
51162
51667
  })[0];
51163
51668
  }
51164
51669
  } else {
51165
51670
  console.error('请根据路由“命名视图”规范,正确添加components属性名称', res);
51166
51671
  }
51167
- return _code ? { path: pathname, appCode: _code } : pathname;
51672
+ return appCode ? { path: pathname, appCode: appCode } : pathname;
51168
51673
  }
51169
51674
  if (res && Object.prototype.hasOwnProperty.call(res, 'children')) {
51170
- var _path2 = this.hasRouter(res.children, url, _code);
51675
+ var _path2 = this.hasRouter(res.children, url, code);
51171
51676
  if (_path2) {
51172
51677
  return _path2;
51173
51678
  }
@@ -51181,9 +51686,9 @@ var events = [function (tabs, index, that) {
51181
51686
  * @author huangbo
51182
51687
  * @date 2024年9月7日
51183
51688
  **/
51184
- init: function init(results) {
51689
+ init: function init(results, first) {
51185
51690
  this.setConfig(results);
51186
- if (this.remote) {
51691
+ if (this.remote && first) {
51187
51692
  this.getApplications();
51188
51693
  }
51189
51694
  },
@@ -51197,7 +51702,7 @@ var events = [function (tabs, index, that) {
51197
51702
  if (this.socket) {
51198
51703
  this.initWebSocket();
51199
51704
  }
51200
- sessionStorage.setItem('mainConfig', JSON.stringify(results));
51705
+ localStorage.setItem('mainConfig', JSON.stringify(results));
51201
51706
  utils_util["a" /* default */].setStorage({
51202
51707
  type: this.storage,
51203
51708
  key: {
@@ -51681,6 +52186,7 @@ var events = [function (tabs, index, that) {
51681
52186
  _this4.notice = data[i];
51682
52187
  if (_this4.showMsg) {
51683
52188
  _this4.$refs.message.getMsg(true);
52189
+ _this4.$emit('bus-emit', 'waitdone');
51684
52190
  }
51685
52191
  }
51686
52192
  if (i === 'menuTipsMap') {
@@ -51910,13 +52416,13 @@ var events = [function (tabs, index, that) {
51910
52416
  if (name == 'userHeadUrl') {
51911
52417
  this.$set(this.userModel, 'userHeadUrl', res);
51912
52418
  utils_store.set('userModel', this.userModel);
51913
- var mainConfig = JSON.parse(sessionStorage.getItem('mainConfig'));
52419
+ var mainConfig = JSON.parse(localStorage.getItem('mainConfig'));
51914
52420
  sessionStorage.setItem('mainConfig', JSON.stringify(simplicityvue_type_script_lang_js_extends({}, mainConfig, { userModel: this.userModel })));
51915
52421
  } else {
51916
52422
  this.$set(this.userStyle, 'notify', res);
51917
52423
  utils_store.set('userStyle', this.userStyle);
51918
- var _mainConfig = JSON.parse(sessionStorage.getItem('mainConfig'));
51919
- sessionStorage.setItem('mainConfig', JSON.stringify(simplicityvue_type_script_lang_js_extends({}, _mainConfig, { userStyle: this.userStyle })));
52424
+ var _mainConfig = JSON.parse(localStorage.getItem('mainConfig'));
52425
+ localStorage.setItem('mainConfig', JSON.stringify(simplicityvue_type_script_lang_js_extends({}, _mainConfig, { userStyle: this.userStyle })));
51920
52426
  }
51921
52427
  },
51922
52428
 
@@ -52111,7 +52617,7 @@ var events = [function (tabs, index, that) {
52111
52617
  handleQuit: function handleQuit() {
52112
52618
  var _this5 = this;
52113
52619
 
52114
- this.$confirm('确定注销吗?', '退出系统', {
52620
+ this.$confirm('确定退出吗?', '退出系统', {
52115
52621
  confirmButtonText: '确定',
52116
52622
  cancelButtonText: '取消',
52117
52623
  type: 'warning'
@@ -52310,18 +52816,18 @@ var events = [function (tabs, index, that) {
52310
52816
 
52311
52817
  var simplicity_component = normalizeComponent(
52312
52818
  src_simplicityvue_type_script_lang_js_,
52313
- simplicityvue_type_template_id_2c8bf964_scoped_true_render,
52314
- simplicityvue_type_template_id_2c8bf964_scoped_true_staticRenderFns,
52819
+ simplicityvue_type_template_id_468ae668_scoped_true_render,
52820
+ simplicityvue_type_template_id_468ae668_scoped_true_staticRenderFns,
52315
52821
  false,
52316
52822
  null,
52317
- "2c8bf964",
52823
+ "468ae668",
52318
52824
  null
52319
52825
 
52320
52826
  )
52321
52827
 
52322
52828
  /* harmony default export */ var simplicity = (simplicity_component.exports);
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 () {
52829
+ // 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=7a464108&
52830
+ var defaultvue_type_template_id_7a464108_render = function () {
52325
52831
  var _vm = this
52326
52832
  var _h = _vm.$createElement
52327
52833
  var _c = _vm._self._c || _h
@@ -52709,11 +53215,11 @@ var defaultvue_type_template_id_215ab02a_render = function () {
52709
53215
  1
52710
53216
  )
52711
53217
  }
52712
- var defaultvue_type_template_id_215ab02a_staticRenderFns = []
52713
- defaultvue_type_template_id_215ab02a_render._withStripped = true
53218
+ var defaultvue_type_template_id_7a464108_staticRenderFns = []
53219
+ defaultvue_type_template_id_7a464108_render._withStripped = true
52714
53220
 
52715
53221
 
52716
- // CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=215ab02a&
53222
+ // CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=7a464108&
52717
53223
 
52718
53224
  // 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&
52719
53225
  var userinfovue_type_template_id_d207c2e8_render = function () {
@@ -53195,8 +53701,8 @@ var default_userinfo_component = normalizeComponent(
53195
53701
  )
53196
53702
 
53197
53703
  /* harmony default export */ var default_userinfo = (default_userinfo_component.exports);
53198
- // 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/message.vue?vue&type=template&id=503171a2&
53199
- var messagevue_type_template_id_503171a2_render = function () {
53704
+ // 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/message.vue?vue&type=template&id=016a2883&
53705
+ var messagevue_type_template_id_016a2883_render = function () {
53200
53706
  var _vm = this
53201
53707
  var _h = _vm.$createElement
53202
53708
  var _c = _vm._self._c || _h
@@ -53327,17 +53833,18 @@ var messagevue_type_template_id_503171a2_render = function () {
53327
53833
  "update:visible": function ($event) {
53328
53834
  _vm.$set(_vm.dialog, "show", $event)
53329
53835
  },
53836
+ close: _vm.handleClose,
53330
53837
  },
53331
53838
  }),
53332
53839
  ],
53333
53840
  1
53334
53841
  )
53335
53842
  }
53336
- var messagevue_type_template_id_503171a2_staticRenderFns = []
53337
- messagevue_type_template_id_503171a2_render._withStripped = true
53843
+ var messagevue_type_template_id_016a2883_staticRenderFns = []
53844
+ messagevue_type_template_id_016a2883_render._withStripped = true
53338
53845
 
53339
53846
 
53340
- // CONCATENATED MODULE: ./packages/main/src/default/message.vue?vue&type=template&id=503171a2&
53847
+ // CONCATENATED MODULE: ./packages/main/src/default/message.vue?vue&type=template&id=016a2883&
53341
53848
 
53342
53849
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/message.vue?vue&type=script&lang=js&
53343
53850
  //
@@ -53397,6 +53904,7 @@ messagevue_type_template_id_503171a2_render._withStripped = true
53397
53904
  //
53398
53905
  //
53399
53906
  //
53907
+ //
53400
53908
 
53401
53909
 
53402
53910
 
@@ -53545,10 +54053,20 @@ messagevue_type_template_id_503171a2_render._withStripped = true
53545
54053
 
53546
54054
  //处理消息
53547
54055
  handleMessage: function handleMessage(item, index) {
54056
+ var _this4 = this;
54057
+
53548
54058
  this.count -= 1;
53549
54059
  this.msgs.splice(index, 1);
53550
54060
  if (this.winopen) {
53551
- utils_util["a" /* default */].win.open(item.handlerUrl);
54061
+ var mywin = utils_util["a" /* default */].win.open(item.handlerUrl);
54062
+ if (mywin) {
54063
+ var times = setInterval(function () {
54064
+ if (mywin.closed) {
54065
+ clearInterval(times);
54066
+ _this4.$parent.$emit('bus-emit', 'waitdone');
54067
+ }
54068
+ }, 1000);
54069
+ }
53552
54070
  } else {
53553
54071
  this.dialog = {
53554
54072
  show: true,
@@ -53572,6 +54090,9 @@ messagevue_type_template_id_503171a2_render._withStripped = true
53572
54090
  this.$emit('handle', id);
53573
54091
  }
53574
54092
  this.dialog.show = false;
54093
+ },
54094
+ handleClose: function handleClose() {
54095
+ this.$parent.$emit('bus-emit', 'waitdone');
53575
54096
  }
53576
54097
  }
53577
54098
  });
@@ -53587,8 +54108,8 @@ messagevue_type_template_id_503171a2_render._withStripped = true
53587
54108
 
53588
54109
  var default_message_component = normalizeComponent(
53589
54110
  src_default_messagevue_type_script_lang_js_,
53590
- messagevue_type_template_id_503171a2_render,
53591
- messagevue_type_template_id_503171a2_staticRenderFns,
54111
+ messagevue_type_template_id_016a2883_render,
54112
+ messagevue_type_template_id_016a2883_staticRenderFns,
53592
54113
  false,
53593
54114
  null,
53594
54115
  null,
@@ -53597,8 +54118,8 @@ var default_message_component = normalizeComponent(
53597
54118
  )
53598
54119
 
53599
54120
  /* harmony default export */ var default_message = (default_message_component.exports);
53600
- // 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/notice.vue?vue&type=template&id=2f7f31eb&
53601
- var noticevue_type_template_id_2f7f31eb_render = function () {
54121
+ // 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/notice.vue?vue&type=template&id=6c63684e&
54122
+ var noticevue_type_template_id_6c63684e_render = function () {
53602
54123
  var _vm = this
53603
54124
  var _h = _vm.$createElement
53604
54125
  var _c = _vm._self._c || _h
@@ -53728,6 +54249,7 @@ var noticevue_type_template_id_2f7f31eb_render = function () {
53728
54249
  "update:visible": function ($event) {
53729
54250
  _vm.$set(_vm.dialog, "show", $event)
53730
54251
  },
54252
+ close: _vm.handleClose,
53731
54253
  },
53732
54254
  }),
53733
54255
  ],
@@ -53736,11 +54258,11 @@ var noticevue_type_template_id_2f7f31eb_render = function () {
53736
54258
  ]
53737
54259
  )
53738
54260
  }
53739
- var noticevue_type_template_id_2f7f31eb_staticRenderFns = []
53740
- noticevue_type_template_id_2f7f31eb_render._withStripped = true
54261
+ var noticevue_type_template_id_6c63684e_staticRenderFns = []
54262
+ noticevue_type_template_id_6c63684e_render._withStripped = true
53741
54263
 
53742
54264
 
53743
- // CONCATENATED MODULE: ./packages/main/src/default/notice.vue?vue&type=template&id=2f7f31eb&
54265
+ // CONCATENATED MODULE: ./packages/main/src/default/notice.vue?vue&type=template&id=6c63684e&
53744
54266
 
53745
54267
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/notice.vue?vue&type=script&lang=js&
53746
54268
  //
@@ -53797,6 +54319,7 @@ noticevue_type_template_id_2f7f31eb_render._withStripped = true
53797
54319
  //
53798
54320
  //
53799
54321
  //
54322
+ //
53800
54323
 
53801
54324
 
53802
54325
 
@@ -53866,8 +54389,18 @@ noticevue_type_template_id_2f7f31eb_render._withStripped = true
53866
54389
 
53867
54390
  //处理消息
53868
54391
  handleMessage: function handleMessage(item, index) {
54392
+ var _this2 = this;
54393
+
53869
54394
  if (item.urlopenmode === 1 || this.winopen) {
53870
- utils_util["a" /* default */].win.open(item.handlerUrl);
54395
+ var mywin = utils_util["a" /* default */].win.open(item.handlerUrl);
54396
+ if (mywin) {
54397
+ var times = setInterval(function () {
54398
+ if (mywin.closed) {
54399
+ clearInterval(times);
54400
+ _this2.$parent.$emit('bus-emit', 'waitdone');
54401
+ }
54402
+ }, 1000);
54403
+ }
53871
54404
  } else {
53872
54405
  this.dialog = {
53873
54406
  show: true,
@@ -53887,6 +54420,9 @@ noticevue_type_template_id_2f7f31eb_render._withStripped = true
53887
54420
  this.msgs = this.msgs.splice(this.index, 1);
53888
54421
  }
53889
54422
  this.dialog.show = false;
54423
+ },
54424
+ handleClose: function handleClose() {
54425
+ this.$parent.$emit('bus-emit', 'waitdone');
53890
54426
  }
53891
54427
  }
53892
54428
  });
@@ -53902,8 +54438,8 @@ noticevue_type_template_id_2f7f31eb_render._withStripped = true
53902
54438
 
53903
54439
  var default_notice_component = normalizeComponent(
53904
54440
  src_default_noticevue_type_script_lang_js_,
53905
- noticevue_type_template_id_2f7f31eb_render,
53906
- noticevue_type_template_id_2f7f31eb_staticRenderFns,
54441
+ noticevue_type_template_id_6c63684e_render,
54442
+ noticevue_type_template_id_6c63684e_staticRenderFns,
53907
54443
  false,
53908
54444
  null,
53909
54445
  null,
@@ -54551,16 +55087,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54551
55087
  this.isLoadHomePage = false;
54552
55088
  }
54553
55089
  this.isHeader = params.header;
54554
- var sysLogoIco = sessionStorage.getItem('sysLogoIco');
54555
- sysLogoIco && utils_util["a" /* default */].setFavicon(sysLogoIco);
54556
55090
 
54557
- var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
54558
- if (mainConfig) {
54559
- var results = JSON.parse(mainConfig);
54560
- if (Object.keys(results).length) {
54561
- this.init(results);
54562
- }
54563
- }
54564
55091
  this.doorIndex = sessionStorage.getItem('doorIndex');
54565
55092
  },
54566
55093
  mounted: function mounted() {
@@ -54757,7 +55284,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54757
55284
  utils_util["a" /* default */].setStorage('loginPage', results[i]);
54758
55285
  }
54759
55286
  if (i === 'sysLogoIco' && results[i]) {
54760
- sessionStorage.setItem('sysLogoIco', results[i]);
55287
+ localStorage.setItem('sysLogoIco', results[i]);
54761
55288
  utils_util["a" /* default */].setFavicon(results[i]);
54762
55289
  }
54763
55290
  if (i === 'userStyle' && results[i] && results[i].color) {
@@ -55823,6 +56350,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
55823
56350
  _this11.notice = data[i];
55824
56351
  if (_this11.showMsg) {
55825
56352
  _this11.$refs.message.getMsg(true);
56353
+ _this11.$emit('bus-emit', 'waitdone');
55826
56354
  }
55827
56355
  }
55828
56356
  if (i === 'menuTipsMap') {
@@ -55899,8 +56427,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
55899
56427
 
55900
56428
  var default_component = normalizeComponent(
55901
56429
  src_defaultvue_type_script_lang_js_,
55902
- defaultvue_type_template_id_215ab02a_render,
55903
- defaultvue_type_template_id_215ab02a_staticRenderFns,
56430
+ defaultvue_type_template_id_7a464108_render,
56431
+ defaultvue_type_template_id_7a464108_staticRenderFns,
55904
56432
  false,
55905
56433
  null,
55906
56434
  null,
@@ -55956,14 +56484,14 @@ var default_component = normalizeComponent(
55956
56484
  //
55957
56485
  //
55958
56486
  //
56487
+ //
56488
+ //
55959
56489
 
55960
56490
 
55961
56491
 
55962
56492
 
55963
56493
 
55964
56494
 
55965
- var src_mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
55966
-
55967
56495
  /* harmony default export */ var main_src_mainvue_type_script_lang_js_ = ({
55968
56496
  name: 'EsMain',
55969
56497
  inheritAttrs: false,
@@ -56012,7 +56540,8 @@ var src_mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
56012
56540
  visibles: [],
56013
56541
  isLogin: false,
56014
56542
  layoutType: this.type,
56015
- layout: this.scene
56543
+ layout: this.scene,
56544
+ emit: false
56016
56545
  };
56017
56546
  },
56018
56547
  created: function created() {
@@ -56039,12 +56568,12 @@ var src_mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
56039
56568
  utils_util["a" /* default */].win.windowOpen = this.openPage;
56040
56569
  utils_util["a" /* default */].win.refresh = this.$refs.main.handleRefresh;
56041
56570
  utils_util["a" /* default */].win.jumpMenu = this.$refs.main.jumpMenu;
56042
- src_mainvue_type_script_lang_js_bus.$on('reLogin', this.handleReLogin);
56043
- src_mainvue_type_script_lang_js_bus.$on('refresh', this.$refs.main.handleRefresh);
56044
- src_mainvue_type_script_lang_js_bus.$on('jumpMenu', this.$refs.main.jumpMenu);
56045
- src_mainvue_type_script_lang_js_bus.$on('emit', function (method, args) {
56571
+ external_wujie_vue2_default.a.bus.$on('reLogin', this.handleReLogin);
56572
+ external_wujie_vue2_default.a.bus.$on('refresh', this.$refs.main.handleRefresh);
56573
+ external_wujie_vue2_default.a.bus.$on('jumpMenu', this.$refs.main.jumpMenu);
56574
+ external_wujie_vue2_default.a.bus.$on('emit', function (method, args) {
56046
56575
  // 主应用发送事件
56047
- src_mainvue_type_script_lang_js_bus.$emit(method, args);
56576
+ external_wujie_vue2_default.a.bus.$emit(method, args);
56048
56577
  });
56049
56578
 
56050
56579
  window.addEventListener('message', function (method, args) {
@@ -56188,12 +56717,18 @@ var src_mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
56188
56717
  return false;
56189
56718
  }
56190
56719
  var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
56191
- if (!mainConfig || mainConfig == '{}') {
56192
- utils_util["a" /* default */].getMainConfig(function (res) {
56193
- _this3.$refs.main.init(res);
56720
+ if (mainConfig) {
56721
+ mainConfig = JSON.parse(mainConfig);
56722
+ this.$nextTick(function () {
56723
+ _this3.$refs.main.init(mainConfig, true);
56724
+ utils_util["a" /* default */].getMainConfig(function (res) {
56725
+ _this3.$refs.main.init(res, false);
56726
+ });
56194
56727
  });
56195
56728
  } else {
56196
- mainConfig = JSON.parse(mainConfig);
56729
+ utils_util["a" /* default */].getMainConfig(function (res) {
56730
+ _this3.$refs.main.init(res, true);
56731
+ });
56197
56732
  }
56198
56733
  },
56199
56734
 
@@ -56249,9 +56784,30 @@ var src_mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
56249
56784
  handleClosed: function handleClosed(res, index) {
56250
56785
  this.dialogs.splice(index, 1);
56251
56786
  this.visibles.splice(index, 1);
56787
+ },
56788
+
56789
+ /**
56790
+ * @desc:主应用相子应用发送事件
56791
+ * @author huangbo
56792
+ * @date 2024年9月7日
56793
+ **/
56794
+ busEmit: function busEmit(event, args) {
56795
+ if (this.emit) {
56796
+ external_wujie_vue2_default.a.bus.$emit(event, args);
56797
+ window.postMessage({ method: event, query: args }, '*');
56798
+ var bus = this.bus || this.$root.Bus;
56799
+ bus && bus.$emit(event, args);
56800
+ this.$emit('busEvent', event, args);
56801
+ }
56802
+ this.emit = true;
56252
56803
  }
56253
56804
  },
56254
- beforeDestroy: function beforeDestroy() {}
56805
+ beforeDestroy: function beforeDestroy() {
56806
+ external_wujie_vue2_default.a.bus.$off('reLogin');
56807
+ external_wujie_vue2_default.a.bus.$off('refresh');
56808
+ external_wujie_vue2_default.a.bus.$off('jumpMenu');
56809
+ external_wujie_vue2_default.a.bus.$off('emit');
56810
+ }
56255
56811
  });
56256
56812
  // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=script&lang=js&
56257
56813
  /* harmony default export */ var packages_main_src_mainvue_type_script_lang_js_ = (main_src_mainvue_type_script_lang_js_);
@@ -56265,8 +56821,8 @@ var src_mainvue_type_script_lang_js_bus = external_wujie_vue2_default.a.bus;
56265
56821
 
56266
56822
  var main_src_main_component = normalizeComponent(
56267
56823
  packages_main_src_mainvue_type_script_lang_js_,
56268
- mainvue_type_template_id_72ff8660_render,
56269
- mainvue_type_template_id_72ff8660_staticRenderFns,
56824
+ mainvue_type_template_id_7a0c767d_render,
56825
+ mainvue_type_template_id_7a0c767d_staticRenderFns,
56270
56826
  false,
56271
56827
  null,
56272
56828
  null,
@@ -58468,11 +59024,11 @@ var external_video_js_ = __webpack_require__(8);
58468
59024
  var external_video_js_default = /*#__PURE__*/__webpack_require__.n(external_video_js_);
58469
59025
 
58470
59026
  // EXTERNAL MODULE: external "video.js/dist/lang/zh-CN.json"
58471
- var zh_CN_json_ = __webpack_require__(16);
59027
+ var zh_CN_json_ = __webpack_require__(15);
58472
59028
  var zh_CN_json_default = /*#__PURE__*/__webpack_require__.n(zh_CN_json_);
58473
59029
 
58474
59030
  // EXTERNAL MODULE: external "video.js/dist/video-js.css"
58475
- var video_js_css_ = __webpack_require__(23);
59031
+ var video_js_css_ = __webpack_require__(22);
58476
59032
 
58477
59033
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/player/src/main.vue?vue&type=script&lang=js&
58478
59034
  var player_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -58767,7 +59323,7 @@ mainvue_type_template_id_15448f0a_render._withStripped = true
58767
59323
  //
58768
59324
 
58769
59325
 
58770
- var QRCode = __webpack_require__(24);
59326
+ var QRCode = __webpack_require__(23);
58771
59327
  /* harmony default export */ var qr_code_src_mainvue_type_script_lang_js_ = ({
58772
59328
  name: 'EsQrCode',
58773
59329
  props: {
@@ -58942,8 +59498,8 @@ qr_code_src_main.install = function (Vue) {
58942
59498
  };
58943
59499
 
58944
59500
  /* harmony default export */ var qr_code = (qr_code_src_main);
58945
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=template&id=d774d48e&
58946
- var mainvue_type_template_id_d774d48e_render = function () {
59501
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=template&id=0fe3af8b&
59502
+ var mainvue_type_template_id_0fe3af8b_render = function () {
58947
59503
  var _vm = this
58948
59504
  var _h = _vm.$createElement
58949
59505
  var _c = _vm._self._c || _h
@@ -59072,11 +59628,11 @@ var mainvue_type_template_id_d774d48e_render = function () {
59072
59628
  )
59073
59629
  : _vm._e()
59074
59630
  }
59075
- var mainvue_type_template_id_d774d48e_staticRenderFns = []
59076
- mainvue_type_template_id_d774d48e_render._withStripped = true
59631
+ var mainvue_type_template_id_0fe3af8b_staticRenderFns = []
59632
+ mainvue_type_template_id_0fe3af8b_render._withStripped = true
59077
59633
 
59078
59634
 
59079
- // CONCATENATED MODULE: ./packages/radio-group/src/main.vue?vue&type=template&id=d774d48e&
59635
+ // CONCATENATED MODULE: ./packages/radio-group/src/main.vue?vue&type=template&id=0fe3af8b&
59080
59636
 
59081
59637
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=script&lang=js&
59082
59638
  var radio_group_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -59144,7 +59700,6 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
59144
59700
 
59145
59701
 
59146
59702
 
59147
-
59148
59703
  /* harmony default export */ var radio_group_src_mainvue_type_script_lang_js_ = ({
59149
59704
  name: 'EsRadioGroup',
59150
59705
  inheritAttrs: false,
@@ -59355,7 +59910,8 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
59355
59910
  if (res.rCode === 0) {
59356
59911
  _this3.options = JSON.parse(JSON.stringify(res.results));
59357
59912
  if (sysCode || _this3.dataKey) {
59358
- bus.$emit(sysCode || _this3.dataKey, JSON.parse(JSON.stringify(_this3.options)));
59913
+ var bus = _this3.bus || _this3.$root.Bus;
59914
+ bus && bus.$emit(sysCode || _this3.dataKey, JSON.parse(JSON.stringify(_this3.options)));
59359
59915
  utils_store.set(sysCode, JSON.parse(JSON.stringify(res.results)));
59360
59916
  }
59361
59917
  }
@@ -59381,10 +59937,12 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
59381
59937
  this.options = val;
59382
59938
  },
59383
59939
  bindEventBus: function bindEventBus() {
59384
- bus.$on(this.sysCode || this.dataKey, this.setOptions);
59940
+ var bus = this.bus || this.$root.Bus;
59941
+ bus && bus.$on(this.sysCode || this.dataKey, this.setOptions);
59385
59942
  },
59386
59943
  unbindEventBus: function unbindEventBus() {
59387
- bus.$off(this.sysCode || this.dataKey, this.setOptions);
59944
+ var bus = this.bus || this.$root.Bus;
59945
+ bus && bus.$off(this.sysCode || this.dataKey, this.setOptions);
59388
59946
  }
59389
59947
  },
59390
59948
  beforeDestroy: function beforeDestroy() {
@@ -59403,8 +59961,8 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
59403
59961
 
59404
59962
  var radio_group_src_main_component = normalizeComponent(
59405
59963
  packages_radio_group_src_mainvue_type_script_lang_js_,
59406
- mainvue_type_template_id_d774d48e_render,
59407
- mainvue_type_template_id_d774d48e_staticRenderFns,
59964
+ mainvue_type_template_id_0fe3af8b_render,
59965
+ mainvue_type_template_id_0fe3af8b_staticRenderFns,
59408
59966
  false,
59409
59967
  null,
59410
59968
  null,
@@ -59897,7 +60455,6 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
59897
60455
 
59898
60456
 
59899
60457
 
59900
-
59901
60458
  /* harmony default export */ var select_src_mainvue_type_script_lang_js_ = ({
59902
60459
  name: 'EsSelect',
59903
60460
  componentName: 'EsSelect',
@@ -60225,7 +60782,8 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
60225
60782
  _this4.options = JSON.parse(JSON.stringify(res.results));
60226
60783
  }
60227
60784
  if (sysCode || _this4.dataKey) {
60228
- bus.$emit(sysCode || _this4.dataKey, JSON.parse(JSON.stringify(_this4.options)));
60785
+ var bus = _this4.bus || _this4.$root.Bus;
60786
+ bus && bus.$emit(sysCode || _this4.dataKey, JSON.parse(JSON.stringify(_this4.options)));
60229
60787
  utils_store.set(sysCode, JSON.parse(JSON.stringify(_this4.options)));
60230
60788
  }
60231
60789
  } else {
@@ -60422,10 +60980,12 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
60422
60980
  this.options = val;
60423
60981
  },
60424
60982
  bindEventBus: function bindEventBus() {
60425
- bus.$on(this.sysCode || this.dataKey, this.setOptions);
60983
+ var bus = this.bus || this.$root.Bus;
60984
+ bus && bus.$on(this.sysCode || this.dataKey, this.setOptions);
60426
60985
  },
60427
60986
  unbindEventBus: function unbindEventBus() {
60428
- bus.$off(this.sysCode || this.dataKey, this.setOptions);
60987
+ var bus = this.bus || this.$root.Bus;
60988
+ bus && bus.$off(this.sysCode || this.dataKey, this.setOptions);
60429
60989
  }
60430
60990
  },
60431
60991
  beforeDestroy: function beforeDestroy() {
@@ -61801,7 +62361,7 @@ mainvue_type_template_id_495533b9_render._withStripped = true
61801
62361
  // CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=495533b9&
61802
62362
 
61803
62363
  // EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
61804
- var clickoutside_ = __webpack_require__(17);
62364
+ var clickoutside_ = __webpack_require__(16);
61805
62365
  var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
61806
62366
 
61807
62367
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=script&lang=js&
@@ -63225,7 +63785,7 @@ selectionvue_type_template_id_a9db4d6e_render._withStripped = true
63225
63785
  // CONCATENATED MODULE: ./packages/selector-panel/src/selection.vue?vue&type=template&id=a9db4d6e&
63226
63786
 
63227
63787
  // EXTERNAL MODULE: external "sortablejs"
63228
- var external_sortablejs_ = __webpack_require__(18);
63788
+ var external_sortablejs_ = __webpack_require__(17);
63229
63789
  var external_sortablejs_default = /*#__PURE__*/__webpack_require__.n(external_sortablejs_);
63230
63790
 
63231
63791
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/selection.vue?vue&type=script&lang=js&
@@ -69104,8 +69664,8 @@ tree_src_main.install = function (Vue) {
69104
69664
  };
69105
69665
 
69106
69666
  /* harmony default export */ var packages_tree = (tree_src_main);
69107
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=template&id=90d6042e&
69108
- var mainvue_type_template_id_90d6042e_render = function () {
69667
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=template&id=49489bf3&
69668
+ var mainvue_type_template_id_49489bf3_render = function () {
69109
69669
  var _vm = this
69110
69670
  var _h = _vm.$createElement
69111
69671
  var _c = _vm._self._c || _h
@@ -69473,11 +70033,11 @@ var mainvue_type_template_id_90d6042e_render = function () {
69473
70033
  2
69474
70034
  )
69475
70035
  }
69476
- var mainvue_type_template_id_90d6042e_staticRenderFns = []
69477
- mainvue_type_template_id_90d6042e_render._withStripped = true
70036
+ var mainvue_type_template_id_49489bf3_staticRenderFns = []
70037
+ mainvue_type_template_id_49489bf3_render._withStripped = true
69478
70038
 
69479
70039
 
69480
- // CONCATENATED MODULE: ./packages/tree-group/src/main.vue?vue&type=template&id=90d6042e&
70040
+ // CONCATENATED MODULE: ./packages/tree-group/src/main.vue?vue&type=template&id=49489bf3&
69481
70041
 
69482
70042
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=script&lang=js&
69483
70043
  var tree_group_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -69927,7 +70487,8 @@ var src_mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].w
69927
70487
  }
69928
70488
  if (tree) {
69929
70489
  var ref = this.tabs && this.tabs.length ? this.tabs[Number(this.active)].ref ? this.tabs[Number(this.active)].ref : 'groupTree' + this.active : 'groupTree';
69930
- this.$refs[ref] && this.$refs[ref].getTreeData();
70490
+ var _tree = this.$refs[ref] && this.$refs[ref][0] ? this.$refs[ref][0] : this.$refs[ref];
70491
+ _tree && _tree.getTreeData();
69931
70492
  }
69932
70493
  },
69933
70494
 
@@ -70036,8 +70597,8 @@ var src_mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].w
70036
70597
 
70037
70598
  var tree_group_src_main_component = normalizeComponent(
70038
70599
  packages_tree_group_src_mainvue_type_script_lang_js_,
70039
- mainvue_type_template_id_90d6042e_render,
70040
- mainvue_type_template_id_90d6042e_staticRenderFns,
70600
+ mainvue_type_template_id_49489bf3_render,
70601
+ mainvue_type_template_id_49489bf3_staticRenderFns,
70041
70602
  false,
70042
70603
  null,
70043
70604
  null,
@@ -75052,7 +75613,7 @@ mainvue_type_template_id_2842c2fa_render._withStripped = true
75052
75613
  pdf: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJQAAACUCAYAAAB1PADUAAAAAXNSR0IArs4c6QAAEAlJREFUeF7tnQl0FEUax/81wxCIucRogCCHaMZAOm8lkJBgFA8UPBYFd/WpeN8HHuu1Xhvv++l68RAVBfEgoqhZbyUxkEAkgCgCGkCEBIQACQkQEtK1rzokJKSTrunp6ulMV72XF2C++qq+f//4qrq6appAlk4VmDFyZDJphEI8UFRKFAIoAI7ik43mTCpZ+BCfbXhYkfAII/goZqZl9yHdGhWoUECoogKpBGQIQCPMe5dAmdeui9ScmpYW2dPnU4gKhRCWdaA0gYME60OQQFmvaQg9zhw+yk+8VIFKFRAoFGDg+O3rkgTKPq0tbGn6iBG9u3k8Ctgch4FDSTIo/CCIs7AZE64kUCZEs6/K9NGje/h21SvwsKwDRSVIJkASgEH29SKQliRQgagl1HZWRsYxaiNS4fEqoKofhLChiv1ECm3YUucSKEvl5HE2IyvrCE8DVeCBwoYpFdRPKGHDVV+e+s62kUAJuz6zhwzp3hAdrUAlSqOH+Amb4wB+NmRRoJuwhkPqWAJlifwzMzOPRiNSAOJnwxXxkCTKsg5ovCUNdBknEqiALtW7aWnxjT5fClQGC0kCaPM85+iAHIWtsQRK99JOTUvzRXkihqpQk7Sso02QNXjYHVZM2PIQdGASKEwfOXKgj3qS2FClUuInLPMQDZ7+QevrOgcuBGpGRtYkBo8HhE2O/ZTCTwiCeH7lOmo6CZjmQEVBuCni8dKa2n37Vl5bWrr74NjIzPRMGm4By3hsU2ApQL6YVFJ0X3OLEijbtA/rhuqhelInLV6wWgIV1tfZxuAIFkxaVHy8BMpGzcO9KUrp5RKocL/KNsZHQV6SQAkUPPWqK5F69ZUCWwit63cystp0gAC5EiiB18RtQIEiXwIlgTKtwMEZCkCBBMq0nMYVXZehJFDGUARj4UKgfpAZKhhiDOq6EKhCCZQEyrQCOnMoCZRpNTkqui9DkfkyQ3GAYdbEdUBRLJBAmaWFo57rgCISKA4szJvYAVT5giLs2rQZ3ojuOCz5WMQdbd/ua505VJHMUOZ5MawpGqjlr7+B5dPeaOlHj169kHHPXTjyxBMM+2aFgQTKChUD8CESqJqN5fhk4j/a9SZh2DCMmfJyAL00b6rzLK9YZijzehrWFAnUhvwCFNz975Y+jH1zGr684mrt7xfOL4DH5zPsX7AG7TMUXSiBClbVTuqLBOrg4e7iRUXIPf0M7K2qwjlz5yCqTx+BkTW5bg8UkUCJVF0kUH988y3m3/9gS/cZUN9cfxP+WrIEY19/DfFKisjQOgAKi2SGEii7SKC2r/4Nn19y2YEh741p+Pq6G6A2NIQsQ1GKEglUFwVqX10dPh4/QRviWFGuuAw/v/kWuvXsiQvyvxMY1QHX7SblRAIlVHiRGYp1vOTpZ/HbnI+0GHr5k8Cy1mFDkjFu+oGlBJEB6iwb/CgzlEDFRQP1V+kSfHPDTW0iSJo4Ael33SEwqo4zFAUWS6AESi8aKNb1vIsuQVVZWUsUmQ/ch8FnnSkwqo6BggRKrO52APXrrHex5MUDC5lnf/AuYgcOFBvYfu86Q16pzFACpbcDqLrt2/HhuLNaojhnTi6i+iUKjKqTSTkggRKpvB1AbSopwXc339oSRr/sbIx+9imRYbX4bpehKJbIDCVQejuAKnroEaz9/Is2UZz4zFM48oRsgZE1uT4YKAoslUAJlF00UPU1tcg9bSyoqraJopffj7FvvCb8eZ7OHMo+oPpkpKNbRAQ8ERHaby/76RGBbj16oHtUFLrHxCAiNhYRMTHoHhvT9DsmBo11ddhbvVNbwKvdvBnVa9ehtrwc1evXY9uvKwXiELxr0UCVffIpFj7+pG5H2Yll1r7IogPUMtsyFHvWZHXZtKgEf87Lx4b8fNTtaFoxdlIRDdT3t96OiuKFiEpMxNBLLsaiJ9rOnYZNvglDLrpQmCQ6uw1+6tJANStVW1GBZVOm4o+vvxEmnhnHIoFi2fmLy5syUPqddyDpvAlY9OTT+P3juW26yjbcHXPuOWa6b1hHZ7dBeADVHPnKWe+h9MWXDIWwy0AkUCwb/T73Ey2Ui4rng3g82p/ZA+ItS5e1CXHUwzlIzMxE7aYK1FZsAvsPyKYN7M+HJCQg7ujBiBnQH33S0wOSRmdSvjwsMlRrFVa8PRNLX50SkDCijEUBVb1uHT674CKt230zM3HyC8+1hMCe531/y62mpgD9so9H1n8eRPfoKC5JdOZQ4QdUY30DvrrqGmxfvZpLFJFGooBqnZ1GP/MU+u1fImA3LpW/rMC2lavANuCZKckXnI+0227hqqqzDvVz2GUopsS6L77CgpzQv5lVBFD1O3di9pix2gVn23zHvPISNpcuQeWKFdi+ahX2VG7rFIZukZHoNyoLfUdlITErE4319doQ+PU112v1AtmTrpOhfglLoJgw826/A+yIUSiLCKDYHJHNFVnpGR+PPZWV7UKMPOIIHK6koPfwNPROT9eydekLL2L3li1tbNm869CkJOyt2oG9VdVge6yCylBA+AL1x1dfY/6DOaHkSVsHsvIb7DYWFiL/jrt1Y0oYdpw29MWnpGgw6RUG1cr33u9QE1/Pnsh+/FH0zcrk0k1nUr7CURmqo3G//0knIW4w54vIW0kx54yzsWdb50MAl3ImjawCiu0fX/NpHthzu9bFd8ghGDDmFAw89VT0HjGcq5csS239+RdsWfYTKoqKUbNxo1aPbXk55tzxGpC8RWfI+9VRQLEtrD9NfU03nvihQ5F262Qcnsrecs9X2N0eu+sLVQkWqDWf5aHsszxs/Wl5mxCiEvvCP3Ei+p96snbbH6rieKCMbvl9UVHIeuA+HDn6RC4N2R3Pl1c2nVULRTELVN22bViQ8zA2lfyo2+0Tnnwc/U8aHYqQ2rSpA9RKR2WogzeL6SnGFt9OeekFLjHZhHXOmX/nshVhZAYoto707Y03o76mpk2X4o4ahKq16zDg1FOQ/dgjIrobsE/HA7Xq/Q+w+Pn/GgZ2xoy3tE35PGVWVjZoYyOPqeU2gQK1a/Nf+Hj8uW36wTLRzvXrNZi6R0fjtKlTTM0nLQ9Ob/sKwSpHZahVs3Ox+LnnDWMP5En63Annoba8wtCnCINAgWq91BE7aBBOeOJRFN57vwYTK+wObMApJ4voqimfOhnKvne98Ow2YEeC2NEgo8IeEYx+9mkjM+3z5tO0XMYWGwUCVOsTLGxPOJsnrsnLa1modBpMTCrHA1U291MsfEJ/f0/rax15eDwm5H3KdfnZ6Vo2LwlFCQQo1r+550zUvudp99ZKNOza1dLlQDKynXHqbF/5zVFD3pq8/6H4kccMNWELcOdzno7tSkMeWyYofvTxlvgP6Z2Av113LQaNa3rU4rSik6F+dxRQbG802yNtVKL7JWL8nFwjM+3z3NPGYW91NZet1UaBZijWfvn8Bahe/6c28WYr3mzx0qnF8UDxPi5hi5unT5vKpXNXusvjCshBRjpAlTkqQ63/9jsU3veAoWS8cwr29P3zS68w9CfKwEyGEtUXEX4dD9SGefkouOdew9jPfn8W2G21UVkx4x0sfeVVIzNhn7sQqDWOylAbfyhE/p36T9Obrzpbh2G30Dyl4K57sKHgBx5TITYuBGqto4AqLyrCvNs6/uaQQGBihHx01njs3rpVCCw8Tt0GFAGcBRQ7FvXd5APHqpsvGlvoGzTudKRcdinPddRseJcguB2aMHQbUGyzrKMy1ObFpVid+yGiE/uiZ/zhiDg0Dj3i4rSdh4F+q63e6Q8TTARVxW1AUeAPRwEV1NVrVZkd/vyBY3JvVXsd+XEbUCRcgZr3rzu1BcJQF7cBBWB92GUotv2FbYNxQnEdUCTMgGLvPTF7Hk0EgK4DCvgzbDKU02BigLoNKAq6ocsDtW/PHnx742TtoKPTSkdAOSmL8mjW0dcCtX95EOnaQLGJ96Knnml3gJFHJDtsOgIqlJv+zMTd0eZInWd5G7tchmLn9zcWzseGgkKwg49OLm4DigLljgKq9csEDwZlR1mZ9n3c7D1xXaW4DSi2nctxQHW1+UVncLsOKIoKCZTAdOc6oIBNEigJlKECAUzKJVCGagZh4LZlAwpslhkqCGCMqrptYRMSKCMkgvvchUD9JTNUcMx0WtuFQG2RQEmgTCugs1IugTKtJkdFt03KQbFVZigOMMyauG8dilZKoMzSwlHPfUARCRQHF6ZN3AcUtskMZRoX44oSKGONTFvwfOGYE3ddmg64kx2b4bofigDbZYYKhhiDui7MUDskUCEAin39YVcqCWnDdLursw4lgRJ5YV24Ul5lW4YadvONiIhrOlredMT8UETExbb5hja3zKFEQmynb50MVW0bUJ0FykCLYC+ujotr9xoKOwWyui23ZSgCOAMoqy+kU/y5DSgAOx2RoZwCgNX96Owuz+q2RPobM+Vl3km5BErkhXDhskGNzFACiXIhULUSKAmUoQK8hxQIIIEyVDMIAxdmqF0yQwUBjFFVtwFFgd0SKCMqgvjcbUBBAhUELRxVXbgOtUdmKA4wzJq4DSgCSKDMwsJTz21AAaiTGYqHDJM2bgOKUuyVQJmEhaea24ACJFA8XLjehndhE0C9zFCux8VYgACAapBAGevpegsJlOsRsFaAAIDaJzOUtdqHpbcAgGqUQIUlAtYGJYGyVk/Xe+MGilJVZiiBuLhwHUoCJZAn1708CACVGUogUS7MUJBASaBMK6Bz0FMCZVpNjooyQ3GIJE34FZBA8WslLTkUkEBxiCRN+BWQQPFrJS05FJBAcYgkTfgVcCFQpXLZgJ8PaWmkAMVrEigjkeTn3ApQ4J8SKG65pGFnChBgxcUlxSkSKMmJFQrUAfTJSSULH5JAWSGnO31UAcgH6DJvY8MrF5aWVjIZyIyMrEmgqp+A+AEkAWC/I9ypkdVR0xyoKLDaayj8Ea+3TiWN1T6vt7qhpqb6kuXLd+n1gxz8j9NHjhzoVYkflPgJVD8I+02SKOiRoQika7dJc9gw0LVjCKz37YDSqz57yJDueyJjhxIv8ROq+gEGWVM2o0BUYE26yVoCFdDVnpaRkRBBvUObIQOBBhoFjgrIUdgaS6AsubQzh4/yw0tT2NyMZTOKJtAAHGpJA13GiQRK2KX6LC0tcofPpxAVCpufsWzW6iZAWLuhdSyBsl3/tzMzEz37oIBAaZqTUe0mAMARtnfG8gYlUJZLatbhuyNGDd3noQpUmgoP/KAtw6bPrE/760mg7Nc8gBbfyciIaQRSPSpRQDwKhXrs/myWGIAbG00lUDaKbV1Ts47LGkB9VBs2VZWmEkKO3T8/i7SuFTOeJFBmVHNknRzAMzj9eIUSNZVQyuZn7CcZwAD7OiyBsk/rELU0OzOz194Gmko8TTcClHoUAppMgVjruySBsl7TLuLxrbSswV5v07AJitT9GY0tbQRRJFBBiBd+Vdkjp4boaEVVvakgVCFaRtOGzgS+aN0H1P8Bsc7nGJl4EGkAAAAASUVORK5CYII='
75053
75614
  });
75054
75615
  // EXTERNAL MODULE: external "js-base64"
75055
- var external_js_base64_ = __webpack_require__(19);
75616
+ var external_js_base64_ = __webpack_require__(18);
75056
75617
 
75057
75618
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=script&lang=js&
75058
75619
  var upload_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
@@ -76663,7 +77224,7 @@ if (typeof window !== 'undefined' && window.Vue) {
76663
77224
  }
76664
77225
 
76665
77226
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
76666
- version: '0.6.0',
77227
+ version: '0.6.11',
76667
77228
  install: install,
76668
77229
  Button: packages_button,
76669
77230
  ButtonGroup: button_group,