eoss-ui 0.6.40 → 0.6.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/button-group.js +5 -0
- package/lib/button.js +5 -0
- package/lib/checkbox-group.js +5 -0
- package/lib/data-table-form.js +5 -0
- package/lib/data-table.js +11 -6
- package/lib/date-picker.js +5 -0
- package/lib/dialog.js +5 -0
- package/lib/eoss-ui.common.js +831 -433
- package/lib/flow-group.js +5 -0
- package/lib/flow-list.js +5 -0
- package/lib/flow.js +37 -35
- package/lib/form.js +5 -0
- package/lib/handle-user.js +5 -0
- package/lib/handler.js +152 -76
- package/lib/icon.js +5 -0
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- package/lib/input-number.js +5 -0
- package/lib/input.js +5 -0
- package/lib/login.js +248 -160
- package/lib/main.js +329 -113
- package/lib/nav.js +5 -0
- package/lib/page.js +5 -0
- package/lib/pagination.js +5 -0
- package/lib/player.js +5 -0
- package/lib/qr-code.js +5 -0
- package/lib/radio-group.js +5 -0
- package/lib/retrial-auth.js +5 -0
- package/lib/select-ganged.js +5 -0
- package/lib/select.js +5 -0
- package/lib/selector-panel.js +7 -3
- package/lib/selector.js +42 -5
- package/lib/sizer.js +5 -0
- package/lib/steps.js +5 -0
- package/lib/switch.js +5 -0
- package/lib/table-form.js +5 -0
- package/lib/tabs.js +5 -0
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
- package/lib/theme-chalk/fonts/iconfont.woff +0 -0
- package/lib/theme-chalk/icon.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/tips.js +5 -0
- package/lib/tree-group.js +5 -0
- package/lib/tree.js +5 -0
- package/lib/upload.js +5 -0
- package/lib/utils/util.js +5 -0
- package/lib/wujie.js +5 -0
- package/lib/wxlogin.js +5 -0
- package/package.json +1 -1
- package/packages/.DS_Store +0 -0
- package/packages/data-table/.DS_Store +0 -0
- package/packages/data-table/src/main.vue +3 -1
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow/src/component/taskUnionExamine.vue +34 -26
- package/packages/flow/src/main.vue +0 -2
- package/packages/flow/src/processForm.vue +29 -18
- package/packages/flow/src/reset.vue +0 -2
- package/packages/handler/src/main.vue +163 -77
- package/packages/icons/src/icon.json +1 -1
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/main.vue +61 -18
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/default/index.vue +32 -3
- package/packages/main/src/public/search.vue +14 -7
- package/packages/main/src/simplicity/handler.vue +64 -26
- package/packages/main/src/simplicity/index.vue +80 -26
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector/src/main.vue +17 -5
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/src/main.vue +0 -1
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/icon.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/icon.scss +29 -0
- package/packages/theme-chalk/src/login.scss +8 -0
- package/packages/theme-chalk/src/main.scss +7 -0
- package/src/.DS_Store +0 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +5 -0
package/lib/eoss-ui.common.js
CHANGED
|
@@ -559,6 +559,7 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
559
559
|
var lastProcessedIndex = 0;
|
|
560
560
|
var done = false;
|
|
561
561
|
var finishThink = false;
|
|
562
|
+
var hasThink = false;
|
|
562
563
|
ajax(_extends({
|
|
563
564
|
timeout: 990000,
|
|
564
565
|
format: false,
|
|
@@ -612,8 +613,12 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
612
613
|
var start = parsedData.message.match(startRegex);
|
|
613
614
|
var end = parsedData.message.match(endRegex);
|
|
614
615
|
if (start) {
|
|
616
|
+
hasThink = true;
|
|
615
617
|
var _thinkContent = start[1] ? start[1].trim() : ''; // <think> 标签内的数据
|
|
616
618
|
info.thinkContent += _thinkContent;
|
|
619
|
+
} else if (hasThink === false) {
|
|
620
|
+
info.content += parsedData.message;
|
|
621
|
+
chunks += parsedData.message;
|
|
617
622
|
} else {
|
|
618
623
|
if (end) {
|
|
619
624
|
finishThink = true;
|
|
@@ -4055,7 +4060,7 @@ module.exports = require("stompjs");
|
|
|
4055
4060
|
/* 14 */
|
|
4056
4061
|
/***/ (function(module) {
|
|
4057
4062
|
|
|
4058
|
-
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\",\"saomadenglu\",\"zhanghaodenglu\",\"zhengfangti\",\"tingzhi\"]");
|
|
4063
|
+
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\",\"saomadenglu\",\"zhanghaodenglu\",\"zhengfangti\",\"tingzhi\",\"youxiangdenglu\",\"duanxindenglu\",\"liaotian\",\"zhixiangyou\",\"zhixiangshang\",\"zhixiangxia\",\"zhixiangzuo\"]");
|
|
4059
4064
|
|
|
4060
4065
|
/***/ }),
|
|
4061
4066
|
/* 15 */
|
|
@@ -7242,8 +7247,8 @@ clients_src_main.install = function (Vue) {
|
|
|
7242
7247
|
};
|
|
7243
7248
|
|
|
7244
7249
|
/* harmony default export */ var clients = (clients_src_main);
|
|
7245
|
-
// 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=
|
|
7246
|
-
var
|
|
7250
|
+
// 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=6d159d95&
|
|
7251
|
+
var mainvue_type_template_id_6d159d95_render = function () {
|
|
7247
7252
|
var _vm = this
|
|
7248
7253
|
var _h = _vm.$createElement
|
|
7249
7254
|
var _c = _vm._self._c || _h
|
|
@@ -7643,11 +7648,11 @@ var mainvue_type_template_id_2246a7e8_render = function () {
|
|
|
7643
7648
|
1
|
|
7644
7649
|
)
|
|
7645
7650
|
}
|
|
7646
|
-
var
|
|
7647
|
-
|
|
7651
|
+
var mainvue_type_template_id_6d159d95_staticRenderFns = []
|
|
7652
|
+
mainvue_type_template_id_6d159d95_render._withStripped = true
|
|
7648
7653
|
|
|
7649
7654
|
|
|
7650
|
-
// CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=
|
|
7655
|
+
// CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=6d159d95&
|
|
7651
7656
|
|
|
7652
7657
|
// 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&
|
|
7653
7658
|
var childrenvue_type_template_id_271bb842_render = function () {
|
|
@@ -11388,7 +11393,7 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
|
|
|
11388
11393
|
}
|
|
11389
11394
|
}
|
|
11390
11395
|
height -= _this15.showToolbar ? _this15.$refs.toolbar.$el.offsetHeight : 0;
|
|
11391
|
-
height -= _this15.page === false ? 0 : _this15.$refs.pagination.$el.offsetHeight;
|
|
11396
|
+
height -= _this15.page === false || _this15.showPage == false ? 0 : _this15.$refs.pagination.$el.offsetHeight;
|
|
11392
11397
|
height -= _this15.title ? _this15.$refs.title.offsetHeight : 0;
|
|
11393
11398
|
height -= parseInt(utils_util["a" /* default */].getStyle(_this15.$refs.esTableContent, 'padding-top'), 10);
|
|
11394
11399
|
height -= parseInt(utils_util["a" /* default */].getStyle(_this15.$refs.esTableContent, 'padding-bottom'), 10);
|
|
@@ -11512,8 +11517,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
|
|
|
11512
11517
|
|
|
11513
11518
|
var data_table_src_main_component = normalizeComponent(
|
|
11514
11519
|
packages_data_table_src_mainvue_type_script_lang_js_,
|
|
11515
|
-
|
|
11516
|
-
|
|
11520
|
+
mainvue_type_template_id_6d159d95_render,
|
|
11521
|
+
mainvue_type_template_id_6d159d95_staticRenderFns,
|
|
11517
11522
|
false,
|
|
11518
11523
|
null,
|
|
11519
11524
|
null,
|
|
@@ -24582,8 +24587,8 @@ form_src_main.install = function (Vue) {
|
|
|
24582
24587
|
};
|
|
24583
24588
|
|
|
24584
24589
|
/* harmony default export */ var packages_form = (form_src_main);
|
|
24585
|
-
// 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=
|
|
24586
|
-
var
|
|
24590
|
+
// 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=5d052dc2&
|
|
24591
|
+
var mainvue_type_template_id_5d052dc2_render = function () {
|
|
24587
24592
|
var _vm = this
|
|
24588
24593
|
var _h = _vm.$createElement
|
|
24589
24594
|
var _c = _vm._self._c || _h
|
|
@@ -26689,11 +26694,11 @@ var mainvue_type_template_id_2feffd01_render = function () {
|
|
|
26689
26694
|
)
|
|
26690
26695
|
: _vm._e()
|
|
26691
26696
|
}
|
|
26692
|
-
var
|
|
26693
|
-
|
|
26697
|
+
var mainvue_type_template_id_5d052dc2_staticRenderFns = []
|
|
26698
|
+
mainvue_type_template_id_5d052dc2_render._withStripped = true
|
|
26694
26699
|
|
|
26695
26700
|
|
|
26696
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
26701
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5d052dc2&
|
|
26697
26702
|
|
|
26698
26703
|
// 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=f5e5d4e8&
|
|
26699
26704
|
var CommonOpinionsvue_type_template_id_f5e5d4e8_render = function () {
|
|
@@ -27689,8 +27694,8 @@ var CommonOpinions_component = normalizeComponent(
|
|
|
27689
27694
|
)
|
|
27690
27695
|
|
|
27691
27696
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
27692
|
-
// 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=
|
|
27693
|
-
var
|
|
27697
|
+
// 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=4c3e6186&
|
|
27698
|
+
var processFormvue_type_template_id_4c3e6186_render = function () {
|
|
27694
27699
|
var _vm = this
|
|
27695
27700
|
var _h = _vm.$createElement
|
|
27696
27701
|
var _c = _vm._self._c || _h
|
|
@@ -28211,11 +28216,11 @@ var processFormvue_type_template_id_3ec67af0_render = function () {
|
|
|
28211
28216
|
1
|
|
28212
28217
|
)
|
|
28213
28218
|
}
|
|
28214
|
-
var
|
|
28215
|
-
|
|
28219
|
+
var processFormvue_type_template_id_4c3e6186_staticRenderFns = []
|
|
28220
|
+
processFormvue_type_template_id_4c3e6186_render._withStripped = true
|
|
28216
28221
|
|
|
28217
28222
|
|
|
28218
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
28223
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=4c3e6186&
|
|
28219
28224
|
|
|
28220
28225
|
// 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=615d0e78&
|
|
28221
28226
|
var selectUservue_type_template_id_615d0e78_render = function () {
|
|
@@ -30094,7 +30099,6 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30094
30099
|
this.getUserInfo();
|
|
30095
30100
|
},
|
|
30096
30101
|
mounted: function mounted() {
|
|
30097
|
-
console.log('发起流程开始');
|
|
30098
30102
|
this.getNodeType();
|
|
30099
30103
|
this.getStartFlow(this.processDefinitionId);
|
|
30100
30104
|
this.newOpinion = this.opinion;
|
|
@@ -30328,7 +30332,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30328
30332
|
newParm.submitTaskParamJson = JSON.stringify(_this4.taskParams);
|
|
30329
30333
|
params = newParm;
|
|
30330
30334
|
}
|
|
30331
|
-
utils_util["a" /* default */].ajax({
|
|
30335
|
+
utils_util["a" /* default */].ajax({
|
|
30336
|
+
url: _this4.isFreeStartFlow ? api["z" /* freeStartFlowWithSubmitTask */] : api["pb" /* register */],
|
|
30337
|
+
method: 'post',
|
|
30338
|
+
data: params
|
|
30339
|
+
}).then(function (res) {
|
|
30332
30340
|
var status = res.status,
|
|
30333
30341
|
message = res.message;
|
|
30334
30342
|
|
|
@@ -30630,8 +30638,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30630
30638
|
|
|
30631
30639
|
var processForm_component = normalizeComponent(
|
|
30632
30640
|
src_processFormvue_type_script_lang_js_,
|
|
30633
|
-
|
|
30634
|
-
|
|
30641
|
+
processFormvue_type_template_id_4c3e6186_render,
|
|
30642
|
+
processFormvue_type_template_id_4c3e6186_staticRenderFns,
|
|
30635
30643
|
false,
|
|
30636
30644
|
null,
|
|
30637
30645
|
null,
|
|
@@ -33286,8 +33294,8 @@ var startTaskRead_component = normalizeComponent(
|
|
|
33286
33294
|
)
|
|
33287
33295
|
|
|
33288
33296
|
/* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
|
|
33289
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=
|
|
33290
|
-
var
|
|
33297
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=2b7d4b66&
|
|
33298
|
+
var resetvue_type_template_id_2b7d4b66_render = function () {
|
|
33291
33299
|
var _vm = this
|
|
33292
33300
|
var _h = _vm.$createElement
|
|
33293
33301
|
var _c = _vm._self._c || _h
|
|
@@ -33718,11 +33726,11 @@ var resetvue_type_template_id_138bb789_render = function () {
|
|
|
33718
33726
|
1
|
|
33719
33727
|
)
|
|
33720
33728
|
}
|
|
33721
|
-
var
|
|
33722
|
-
|
|
33729
|
+
var resetvue_type_template_id_2b7d4b66_staticRenderFns = []
|
|
33730
|
+
resetvue_type_template_id_2b7d4b66_render._withStripped = true
|
|
33723
33731
|
|
|
33724
33732
|
|
|
33725
|
-
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=
|
|
33733
|
+
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=2b7d4b66&
|
|
33726
33734
|
|
|
33727
33735
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
|
|
33728
33736
|
var resetvue_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; };
|
|
@@ -34504,7 +34512,6 @@ var resetvue_type_script_lang_js_components;
|
|
|
34504
34512
|
_this7.readOnlyNotificationType = data.readOnlyNotificationType;
|
|
34505
34513
|
_this7.notificationMessageReadOnly = data.notificationMessageReadOnly == 'true';
|
|
34506
34514
|
var flowList = [];
|
|
34507
|
-
console.log(data.taskNodeList);
|
|
34508
34515
|
if (data.taskNodeList && data.taskNodeList.length > 0) {
|
|
34509
34516
|
for (var key in data.taskNodeList[0]) {
|
|
34510
34517
|
flowList.push({
|
|
@@ -34522,7 +34529,6 @@ var resetvue_type_script_lang_js_components;
|
|
|
34522
34529
|
}
|
|
34523
34530
|
|
|
34524
34531
|
_this7.nextNode.nodeInfo = flowList;
|
|
34525
|
-
console.log(_this7.nextNode.nodeInfo, 'this.nextNode.nodeInfo');
|
|
34526
34532
|
_this7.nextNode.nextNode = flowList[0].nodeId;
|
|
34527
34533
|
_this7.taskExamine = data.taskExamine;
|
|
34528
34534
|
_this7.processDefinitionId = data.taskExamine.processDefinitionId;
|
|
@@ -34582,8 +34588,8 @@ var resetvue_type_script_lang_js_components;
|
|
|
34582
34588
|
|
|
34583
34589
|
var reset_component = normalizeComponent(
|
|
34584
34590
|
src_resetvue_type_script_lang_js_,
|
|
34585
|
-
|
|
34586
|
-
|
|
34591
|
+
resetvue_type_template_id_2b7d4b66_render,
|
|
34592
|
+
resetvue_type_template_id_2b7d4b66_staticRenderFns,
|
|
34587
34593
|
false,
|
|
34588
34594
|
null,
|
|
34589
34595
|
null,
|
|
@@ -34592,8 +34598,8 @@ var reset_component = normalizeComponent(
|
|
|
34592
34598
|
)
|
|
34593
34599
|
|
|
34594
34600
|
/* harmony default export */ var src_reset = (reset_component.exports);
|
|
34595
|
-
// 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=
|
|
34596
|
-
var
|
|
34601
|
+
// 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=3d269602&
|
|
34602
|
+
var taskUnionExaminevue_type_template_id_3d269602_render = function () {
|
|
34597
34603
|
var _vm = this
|
|
34598
34604
|
var _h = _vm.$createElement
|
|
34599
34605
|
var _c = _vm._self._c || _h
|
|
@@ -34832,7 +34838,7 @@ var taskUnionExaminevue_type_template_id_e8b3de86_render = function () {
|
|
|
34832
34838
|
attrs: { type: "primary", size: "small" },
|
|
34833
34839
|
on: { click: _vm.subMit },
|
|
34834
34840
|
},
|
|
34835
|
-
[_vm._v("
|
|
34841
|
+
[_vm._v(" 确定 ")]
|
|
34836
34842
|
),
|
|
34837
34843
|
_c(
|
|
34838
34844
|
"el-button",
|
|
@@ -34846,11 +34852,11 @@ var taskUnionExaminevue_type_template_id_e8b3de86_render = function () {
|
|
|
34846
34852
|
1
|
|
34847
34853
|
)
|
|
34848
34854
|
}
|
|
34849
|
-
var
|
|
34850
|
-
|
|
34855
|
+
var taskUnionExaminevue_type_template_id_3d269602_staticRenderFns = []
|
|
34856
|
+
taskUnionExaminevue_type_template_id_3d269602_render._withStripped = true
|
|
34851
34857
|
|
|
34852
34858
|
|
|
34853
|
-
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=
|
|
34859
|
+
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=3d269602&
|
|
34854
34860
|
|
|
34855
34861
|
// 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&
|
|
34856
34862
|
var taskUnionExaminevue_type_script_lang_js_components;
|
|
@@ -34984,9 +34990,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
34984
34990
|
//
|
|
34985
34991
|
//
|
|
34986
34992
|
//
|
|
34987
|
-
//
|
|
34988
|
-
//
|
|
34989
|
-
//
|
|
34990
34993
|
|
|
34991
34994
|
|
|
34992
34995
|
|
|
@@ -35168,7 +35171,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
35168
35171
|
_this3.currentOrgTabs = res.data.customizedConfig.currentOrgSelectorItemList.split(',');
|
|
35169
35172
|
var param = res.data.customizedConfig.currentOrgSelectorRangeList.split(',');
|
|
35170
35173
|
_this3.currentOrgTabs.map(function (x, i) {
|
|
35171
|
-
_this3.params[x] = {
|
|
35174
|
+
_this3.params[x] = {
|
|
35175
|
+
filid: param[i] == 'my' ? _this3.params.filid = JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId : param[i]
|
|
35176
|
+
};
|
|
35172
35177
|
});
|
|
35173
35178
|
} else {
|
|
35174
35179
|
if (_this3.type == 'takeAdvice') {
|
|
@@ -35272,7 +35277,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
35272
35277
|
method: 'POST'
|
|
35273
35278
|
};
|
|
35274
35279
|
this.loading = true;
|
|
35275
|
-
console.log(param.data, nextCurrentOrgObj, 'data');
|
|
35276
35280
|
utils_util["a" /* default */].ajax(param).then(function (res) {
|
|
35277
35281
|
var message = res.message,
|
|
35278
35282
|
status = res.status;
|
|
@@ -35407,8 +35411,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
35407
35411
|
|
|
35408
35412
|
var taskUnionExamine_component = normalizeComponent(
|
|
35409
35413
|
component_taskUnionExaminevue_type_script_lang_js_,
|
|
35410
|
-
|
|
35411
|
-
|
|
35414
|
+
taskUnionExaminevue_type_template_id_3d269602_render,
|
|
35415
|
+
taskUnionExaminevue_type_template_id_3d269602_staticRenderFns,
|
|
35412
35416
|
false,
|
|
35413
35417
|
null,
|
|
35414
35418
|
null,
|
|
@@ -42682,7 +42686,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42682
42686
|
_this27.value = _this27.value.replace(RegExp('同意。', 'g'), '');
|
|
42683
42687
|
_this27.value = val + _this27.value;
|
|
42684
42688
|
}
|
|
42685
|
-
console.log(112);
|
|
42686
42689
|
if (!_this27.validInfo()) {
|
|
42687
42690
|
_this27.freeValid = false;
|
|
42688
42691
|
return;
|
|
@@ -42727,7 +42730,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42727
42730
|
return false;
|
|
42728
42731
|
}
|
|
42729
42732
|
if (!this.value && this.isOpinionRequired === 1) {
|
|
42730
|
-
console.log(1);
|
|
42731
42733
|
this.$message.warning('请选择输入审批意见');
|
|
42732
42734
|
return false;
|
|
42733
42735
|
}
|
|
@@ -42948,8 +42950,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42948
42950
|
|
|
42949
42951
|
var flow_src_main_component = normalizeComponent(
|
|
42950
42952
|
packages_flow_src_mainvue_type_script_lang_js_,
|
|
42951
|
-
|
|
42952
|
-
|
|
42953
|
+
mainvue_type_template_id_5d052dc2_render,
|
|
42954
|
+
mainvue_type_template_id_5d052dc2_staticRenderFns,
|
|
42953
42955
|
false,
|
|
42954
42956
|
null,
|
|
42955
42957
|
null,
|
|
@@ -46485,8 +46487,8 @@ handle_user_src_main.install = function (Vue) {
|
|
|
46485
46487
|
};
|
|
46486
46488
|
|
|
46487
46489
|
/* harmony default export */ var handle_user = (handle_user_src_main);
|
|
46488
|
-
// 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=
|
|
46489
|
-
var
|
|
46490
|
+
// 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=781785ca&
|
|
46491
|
+
var mainvue_type_template_id_781785ca_render = function () {
|
|
46490
46492
|
var _vm = this
|
|
46491
46493
|
var _h = _vm.$createElement
|
|
46492
46494
|
var _c = _vm._self._c || _h
|
|
@@ -46535,7 +46537,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46535
46537
|
),
|
|
46536
46538
|
]
|
|
46537
46539
|
)
|
|
46538
|
-
: item.type === "
|
|
46540
|
+
: item.type === "dateTime"
|
|
46539
46541
|
? _c("div", { staticClass: "es-handler-date" }, [
|
|
46540
46542
|
_c("div", [
|
|
46541
46543
|
_vm._v(
|
|
@@ -46576,7 +46578,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46576
46578
|
placement: "bottom",
|
|
46577
46579
|
trigger: "hover",
|
|
46578
46580
|
"popper-class":
|
|
46579
|
-
_vm.
|
|
46581
|
+
_vm.systemData.length > 4
|
|
46580
46582
|
? "es-popper-sub-system is-width"
|
|
46581
46583
|
: "es-popper-sub-system",
|
|
46582
46584
|
},
|
|
@@ -46590,7 +46592,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46590
46592
|
},
|
|
46591
46593
|
},
|
|
46592
46594
|
[
|
|
46593
|
-
_vm.
|
|
46595
|
+
_vm.systemData.length
|
|
46594
46596
|
? _c(
|
|
46595
46597
|
"el-scrollbar",
|
|
46596
46598
|
{ attrs: { "max-height": _vm.maxHeight } },
|
|
@@ -46598,7 +46600,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46598
46600
|
_c(
|
|
46599
46601
|
"ul",
|
|
46600
46602
|
{ staticClass: "es-sub-system" },
|
|
46601
|
-
_vm._l(_vm.
|
|
46603
|
+
_vm._l(_vm.systemData, function (ele) {
|
|
46602
46604
|
return _c(
|
|
46603
46605
|
"li",
|
|
46604
46606
|
{
|
|
@@ -46689,9 +46691,9 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46689
46691
|
{
|
|
46690
46692
|
staticClass: "es-badge",
|
|
46691
46693
|
attrs: {
|
|
46692
|
-
value: _vm.
|
|
46694
|
+
value: _vm.noticeNum,
|
|
46693
46695
|
max: 99,
|
|
46694
|
-
hidden: _vm.
|
|
46696
|
+
hidden: _vm.noticeNum < 1,
|
|
46695
46697
|
},
|
|
46696
46698
|
},
|
|
46697
46699
|
[
|
|
@@ -46729,15 +46731,17 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46729
46731
|
2
|
|
46730
46732
|
)
|
|
46731
46733
|
}
|
|
46732
|
-
var
|
|
46733
|
-
|
|
46734
|
+
var mainvue_type_template_id_781785ca_staticRenderFns = []
|
|
46735
|
+
mainvue_type_template_id_781785ca_render._withStripped = true
|
|
46734
46736
|
|
|
46735
46737
|
|
|
46736
|
-
// CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=
|
|
46738
|
+
// CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=781785ca&
|
|
46737
46739
|
|
|
46738
46740
|
// 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&
|
|
46739
46741
|
var handler_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; };
|
|
46740
46742
|
|
|
46743
|
+
var _props;
|
|
46744
|
+
|
|
46741
46745
|
//
|
|
46742
46746
|
//
|
|
46743
46747
|
//
|
|
@@ -46864,7 +46868,7 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46864
46868
|
default: ''
|
|
46865
46869
|
}
|
|
46866
46870
|
},
|
|
46867
|
-
props: {
|
|
46871
|
+
props: (_props = {
|
|
46868
46872
|
contact: Object,
|
|
46869
46873
|
jobScrollbar: Boolean,
|
|
46870
46874
|
data: Array,
|
|
@@ -46879,20 +46883,12 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46879
46883
|
return [];
|
|
46880
46884
|
}
|
|
46881
46885
|
},
|
|
46882
|
-
notice: {
|
|
46883
|
-
type: Number,
|
|
46884
|
-
default: 0
|
|
46885
|
-
},
|
|
46886
46886
|
hide: {
|
|
46887
46887
|
type: Object,
|
|
46888
46888
|
default: function _default() {
|
|
46889
|
-
return {
|
|
46889
|
+
return {};
|
|
46890
46890
|
}
|
|
46891
46891
|
},
|
|
46892
|
-
online: {
|
|
46893
|
-
type: [Number, Boolean],
|
|
46894
|
-
default: 1
|
|
46895
|
-
},
|
|
46896
46892
|
photo: String,
|
|
46897
46893
|
storage: String,
|
|
46898
46894
|
application: {
|
|
@@ -46902,8 +46898,128 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46902
46898
|
maxHeight: {
|
|
46903
46899
|
type: String,
|
|
46904
46900
|
default: '100%'
|
|
46901
|
+
},
|
|
46902
|
+
user: {
|
|
46903
|
+
type: Object,
|
|
46904
|
+
default: function _default() {
|
|
46905
|
+
return {
|
|
46906
|
+
type: 'user'
|
|
46907
|
+
};
|
|
46908
|
+
}
|
|
46909
|
+
},
|
|
46910
|
+
dateTime: {
|
|
46911
|
+
type: Object,
|
|
46912
|
+
default: function _default() {
|
|
46913
|
+
return {
|
|
46914
|
+
type: 'dateTime'
|
|
46915
|
+
};
|
|
46916
|
+
}
|
|
46917
|
+
},
|
|
46918
|
+
system: {
|
|
46919
|
+
type: Object,
|
|
46920
|
+
default: function _default() {
|
|
46921
|
+
return {
|
|
46922
|
+
type: 'system',
|
|
46923
|
+
icon: 'es-icon-yingyong',
|
|
46924
|
+
title: '切换子系统'
|
|
46925
|
+
};
|
|
46926
|
+
}
|
|
46927
|
+
},
|
|
46928
|
+
home: {
|
|
46929
|
+
type: Object,
|
|
46930
|
+
default: function _default() {
|
|
46931
|
+
return {
|
|
46932
|
+
type: 'home',
|
|
46933
|
+
icon: 'es-icon-zuomian',
|
|
46934
|
+
title: '个人工作台'
|
|
46935
|
+
};
|
|
46936
|
+
}
|
|
46937
|
+
},
|
|
46938
|
+
search: {
|
|
46939
|
+
type: Object,
|
|
46940
|
+
default: function _default() {
|
|
46941
|
+
return {
|
|
46942
|
+
type: 'search',
|
|
46943
|
+
icon: 'es-icon-magnifier',
|
|
46944
|
+
title: '搜索'
|
|
46945
|
+
};
|
|
46946
|
+
}
|
|
46947
|
+
},
|
|
46948
|
+
im: {
|
|
46949
|
+
type: Object,
|
|
46950
|
+
default: function _default() {
|
|
46951
|
+
return {
|
|
46952
|
+
type: 'im',
|
|
46953
|
+
icon: 'es-icon-liaotian',
|
|
46954
|
+
title: 'IM'
|
|
46955
|
+
};
|
|
46956
|
+
}
|
|
46957
|
+
},
|
|
46958
|
+
index: {
|
|
46959
|
+
type: Object,
|
|
46960
|
+
default: function _default() {
|
|
46961
|
+
return {
|
|
46962
|
+
type: 'index',
|
|
46963
|
+
icon: 'es-icon-home',
|
|
46964
|
+
title: '门户'
|
|
46965
|
+
};
|
|
46966
|
+
}
|
|
46905
46967
|
}
|
|
46906
|
-
},
|
|
46968
|
+
}, _props['home'] = {
|
|
46969
|
+
type: Object,
|
|
46970
|
+
default: function _default() {
|
|
46971
|
+
return {
|
|
46972
|
+
type: 'home',
|
|
46973
|
+
icon: 'es-icon-zuomian',
|
|
46974
|
+
title: '个人工作台'
|
|
46975
|
+
};
|
|
46976
|
+
}
|
|
46977
|
+
}, _props.notice = {
|
|
46978
|
+
type: Object,
|
|
46979
|
+
default: function _default() {
|
|
46980
|
+
return {
|
|
46981
|
+
type: 'notice',
|
|
46982
|
+
icon: 'es-icon-tongzhi',
|
|
46983
|
+
title: '通知消息'
|
|
46984
|
+
};
|
|
46985
|
+
}
|
|
46986
|
+
}, _props.refresh = {
|
|
46987
|
+
type: Object,
|
|
46988
|
+
default: function _default() {
|
|
46989
|
+
return {
|
|
46990
|
+
type: 'refresh',
|
|
46991
|
+
icon: 'es-icon-shuaxin',
|
|
46992
|
+
title: '刷新'
|
|
46993
|
+
};
|
|
46994
|
+
}
|
|
46995
|
+
}, _props.quit = {
|
|
46996
|
+
type: Object,
|
|
46997
|
+
default: function _default() {
|
|
46998
|
+
return {
|
|
46999
|
+
type: 'quit',
|
|
47000
|
+
icon: 'es-icon-guanji',
|
|
47001
|
+
title: '退出'
|
|
47002
|
+
};
|
|
47003
|
+
}
|
|
47004
|
+
}, _props.set = {
|
|
47005
|
+
type: Object,
|
|
47006
|
+
default: function _default() {
|
|
47007
|
+
return {
|
|
47008
|
+
type: 'set',
|
|
47009
|
+
icon: 'es-icon-xitongguanli',
|
|
47010
|
+
title: '设置'
|
|
47011
|
+
};
|
|
47012
|
+
}
|
|
47013
|
+
}, _props.msgNum = {
|
|
47014
|
+
type: Number,
|
|
47015
|
+
default: 0
|
|
47016
|
+
}, _props.noticeNum = {
|
|
47017
|
+
type: Number,
|
|
47018
|
+
default: 0
|
|
47019
|
+
}, _props.online = {
|
|
47020
|
+
type: Number,
|
|
47021
|
+
default: 1
|
|
47022
|
+
}, _props),
|
|
46907
47023
|
watch: {
|
|
46908
47024
|
subSystem: {
|
|
46909
47025
|
handler: function handler(val) {
|
|
@@ -46916,60 +47032,17 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46916
47032
|
},
|
|
46917
47033
|
computed: {
|
|
46918
47034
|
lists: function lists() {
|
|
46919
|
-
var
|
|
46920
|
-
|
|
46921
|
-
|
|
46922
|
-
|
|
46923
|
-
|
|
46924
|
-
|
|
46925
|
-
|
|
46926
|
-
|
|
46927
|
-
|
|
46928
|
-
icon: 'es-icon-yingyong',
|
|
46929
|
-
title: '切换子系统'
|
|
46930
|
-
}, {
|
|
46931
|
-
type: 'home',
|
|
46932
|
-
icon: 'es-icon-zuomian',
|
|
46933
|
-
title: '个人工作台'
|
|
46934
|
-
}, {
|
|
46935
|
-
type: 'index',
|
|
46936
|
-
icon: 'es-icon-home',
|
|
46937
|
-
title: '门户'
|
|
46938
|
-
}, {
|
|
46939
|
-
type: 'notice',
|
|
46940
|
-
icon: 'es-icon-tongzhi',
|
|
46941
|
-
title: '通知消息'
|
|
46942
|
-
}, {
|
|
46943
|
-
type: 'refresh',
|
|
46944
|
-
icon: 'es-icon-shuaxin',
|
|
46945
|
-
title: '刷新'
|
|
46946
|
-
}, {
|
|
46947
|
-
type: 'quit',
|
|
46948
|
-
icon: 'es-icon-guanji',
|
|
46949
|
-
title: '退出'
|
|
46950
|
-
}, {
|
|
46951
|
-
type: 'set',
|
|
46952
|
-
icon: 'es-icon-xitongguanli',
|
|
46953
|
-
title: '设置'
|
|
46954
|
-
}].filter(function (item) {
|
|
46955
|
-
return Object.keys(item).length;
|
|
46956
|
-
});
|
|
46957
|
-
if (Object.keys(this.hide).length) {
|
|
46958
|
-
list.forEach(function (item) {
|
|
46959
|
-
item.hide = _this.hide[item.type];
|
|
46960
|
-
});
|
|
46961
|
-
}
|
|
46962
|
-
return list;
|
|
46963
|
-
} else {
|
|
46964
|
-
if (Object.keys(this.hide).length) {
|
|
46965
|
-
this.data.forEach(function (item) {
|
|
46966
|
-
item.hide = _this.hide[item.type];
|
|
46967
|
-
});
|
|
46968
|
-
}
|
|
46969
|
-
}
|
|
46970
|
-
return this.data;
|
|
47035
|
+
var hide = handler_src_mainvue_type_script_lang_js_extends({
|
|
47036
|
+
system: true,
|
|
47037
|
+
new: true,
|
|
47038
|
+
im: true
|
|
47039
|
+
}, this.hide);
|
|
47040
|
+
var data = this.data ? this.data : [this.user, this.contact ? handler_src_mainvue_type_script_lang_js_extends({}, this.contact, { type: 'contact' }) : {}, this.dateTime, this.system, this.search, this.im, this.index, this.home, this.notice, this.refresh, this.quit, this.set];
|
|
47041
|
+
return data.filter(function (item) {
|
|
47042
|
+
return item && Object.keys(item).length && !item.hide && !hide[item.type];
|
|
47043
|
+
});
|
|
46971
47044
|
},
|
|
46972
|
-
|
|
47045
|
+
systemData: function systemData() {
|
|
46973
47046
|
return this.subSystem;
|
|
46974
47047
|
},
|
|
46975
47048
|
show: function show() {
|
|
@@ -47034,7 +47107,7 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47034
47107
|
}
|
|
47035
47108
|
},
|
|
47036
47109
|
handleQuit: function handleQuit() {
|
|
47037
|
-
var
|
|
47110
|
+
var _this = this;
|
|
47038
47111
|
|
|
47039
47112
|
this.$confirm('确定退出吗?', '退出系统', {
|
|
47040
47113
|
confirmButtonText: '确定',
|
|
@@ -47044,8 +47117,8 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47044
47117
|
utils_util["a" /* default */].ajax({ method: 'post', url: api["gb" /* logout */] }).then(function (res) {
|
|
47045
47118
|
if (res.rCode == 0) {
|
|
47046
47119
|
utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
|
|
47047
|
-
if (
|
|
47048
|
-
|
|
47120
|
+
if (_this.onQuit && typeof _this.onQuit === 'function') {
|
|
47121
|
+
_this.onQuit();
|
|
47049
47122
|
} else {
|
|
47050
47123
|
try {
|
|
47051
47124
|
var loginPage = utils_util["a" /* default */].getStorage('login') || utils_util["a" /* default */].getStorage('loginPage');
|
|
@@ -47083,7 +47156,7 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47083
47156
|
}
|
|
47084
47157
|
}).catch(function (err) {
|
|
47085
47158
|
if (err.message && err.message !== 'canceled') {
|
|
47086
|
-
|
|
47159
|
+
_this.$message.error(err.message);
|
|
47087
47160
|
}
|
|
47088
47161
|
});
|
|
47089
47162
|
}).catch(function (e) {});
|
|
@@ -47105,8 +47178,8 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47105
47178
|
|
|
47106
47179
|
var handler_src_main_component = normalizeComponent(
|
|
47107
47180
|
packages_handler_src_mainvue_type_script_lang_js_,
|
|
47108
|
-
|
|
47109
|
-
|
|
47181
|
+
mainvue_type_template_id_781785ca_render,
|
|
47182
|
+
mainvue_type_template_id_781785ca_staticRenderFns,
|
|
47110
47183
|
false,
|
|
47111
47184
|
null,
|
|
47112
47185
|
null,
|
|
@@ -48660,8 +48733,8 @@ layout_src_main.install = function (Vue) {
|
|
|
48660
48733
|
};
|
|
48661
48734
|
|
|
48662
48735
|
/* harmony default export */ var packages_layout = (layout_src_main);
|
|
48663
|
-
// 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=
|
|
48664
|
-
var
|
|
48736
|
+
// 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=68362bbf&
|
|
48737
|
+
var mainvue_type_template_id_68362bbf_render = function () {
|
|
48665
48738
|
var _vm = this
|
|
48666
48739
|
var _h = _vm.$createElement
|
|
48667
48740
|
var _c = _vm._self._c || _h
|
|
@@ -48757,7 +48830,8 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
48757
48830
|
},
|
|
48758
48831
|
},
|
|
48759
48832
|
[
|
|
48760
|
-
this.mode == "complex"
|
|
48833
|
+
this.mode == "complex" &&
|
|
48834
|
+
_vm.loginModel.indexOf("3") > -1
|
|
48761
48835
|
? [
|
|
48762
48836
|
_vm._l(_vm.switchs, function (item) {
|
|
48763
48837
|
return [
|
|
@@ -48769,9 +48843,10 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
48769
48843
|
{
|
|
48770
48844
|
name: "show",
|
|
48771
48845
|
rawName: "v-show",
|
|
48772
|
-
value:
|
|
48846
|
+
value:
|
|
48847
|
+
_vm.switchActive != item.type,
|
|
48773
48848
|
expression:
|
|
48774
|
-
"
|
|
48849
|
+
"switchActive != item.type",
|
|
48775
48850
|
},
|
|
48776
48851
|
],
|
|
48777
48852
|
key: item.type + "_0",
|
|
@@ -48825,42 +48900,76 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
48825
48900
|
]
|
|
48826
48901
|
}),
|
|
48827
48902
|
]
|
|
48828
|
-
:
|
|
48829
|
-
|
|
48830
|
-
|
|
48831
|
-
|
|
48832
|
-
|
|
48903
|
+
: [
|
|
48904
|
+
_vm._l(_vm.icons, function (item) {
|
|
48905
|
+
return [
|
|
48906
|
+
_c(
|
|
48907
|
+
"div",
|
|
48833
48908
|
{
|
|
48834
|
-
|
|
48835
|
-
|
|
48836
|
-
|
|
48837
|
-
|
|
48838
|
-
|
|
48839
|
-
|
|
48840
|
-
|
|
48909
|
+
directives: [
|
|
48910
|
+
{
|
|
48911
|
+
name: "show",
|
|
48912
|
+
rawName: "v-show",
|
|
48913
|
+
value:
|
|
48914
|
+
_vm.modelLength == 2 &&
|
|
48915
|
+
_vm.active != item.type &&
|
|
48916
|
+
_vm.modelTips,
|
|
48917
|
+
expression:
|
|
48918
|
+
"modelLength == 2 && active != item.type && modelTips",
|
|
48919
|
+
},
|
|
48920
|
+
],
|
|
48921
|
+
key: item.type,
|
|
48922
|
+
staticClass: "es-login-model-item-tips",
|
|
48841
48923
|
},
|
|
48842
|
-
|
|
48843
|
-
|
|
48844
|
-
|
|
48845
|
-
|
|
48924
|
+
[
|
|
48925
|
+
_vm._v(
|
|
48926
|
+
"\n " +
|
|
48927
|
+
_vm._s(item.name) +
|
|
48928
|
+
"点这里"
|
|
48929
|
+
),
|
|
48930
|
+
_c("i", {
|
|
48931
|
+
staticClass: "es-icon-zhixiangyou",
|
|
48932
|
+
}),
|
|
48933
|
+
]
|
|
48934
|
+
),
|
|
48935
|
+
_c(
|
|
48936
|
+
"span",
|
|
48846
48937
|
{
|
|
48847
|
-
|
|
48848
|
-
|
|
48849
|
-
|
|
48850
|
-
|
|
48851
|
-
|
|
48852
|
-
|
|
48853
|
-
|
|
48854
|
-
|
|
48855
|
-
|
|
48856
|
-
|
|
48857
|
-
|
|
48938
|
+
directives: [
|
|
48939
|
+
{
|
|
48940
|
+
name: "show",
|
|
48941
|
+
rawName: "v-show",
|
|
48942
|
+
value:
|
|
48943
|
+
_vm.modelLength > 2 ||
|
|
48944
|
+
_vm.active != item.type,
|
|
48945
|
+
expression:
|
|
48946
|
+
"modelLength > 2 || active != item.type",
|
|
48947
|
+
},
|
|
48948
|
+
],
|
|
48949
|
+
key: item.name,
|
|
48950
|
+
staticClass: "es-icon-box",
|
|
48951
|
+
class: [
|
|
48952
|
+
{
|
|
48953
|
+
"es-icon-active":
|
|
48954
|
+
_vm.active == item.type,
|
|
48955
|
+
},
|
|
48956
|
+
],
|
|
48957
|
+
attrs: { title: item.name },
|
|
48958
|
+
on: {
|
|
48959
|
+
click: function ($event) {
|
|
48960
|
+
_vm.switchLogin(item)
|
|
48961
|
+
},
|
|
48962
|
+
},
|
|
48858
48963
|
},
|
|
48859
|
-
|
|
48860
|
-
|
|
48861
|
-
|
|
48862
|
-
|
|
48863
|
-
|
|
48964
|
+
[
|
|
48965
|
+
_c("i", {
|
|
48966
|
+
class: [item.icon, "es-icon"],
|
|
48967
|
+
}),
|
|
48968
|
+
]
|
|
48969
|
+
),
|
|
48970
|
+
]
|
|
48971
|
+
}),
|
|
48972
|
+
],
|
|
48864
48973
|
],
|
|
48865
48974
|
2
|
|
48866
48975
|
)
|
|
@@ -49381,7 +49490,9 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
49381
49490
|
]
|
|
49382
49491
|
)
|
|
49383
49492
|
: _vm._e(),
|
|
49384
|
-
_vm.active == 3 &&
|
|
49493
|
+
_vm.active == 3 &&
|
|
49494
|
+
_vm.loginModel.indexOf("0") > -1 &&
|
|
49495
|
+
_vm.mode == "complex"
|
|
49385
49496
|
? _c("div", { staticClass: "es-to-login" }, [
|
|
49386
49497
|
_c(
|
|
49387
49498
|
"span",
|
|
@@ -49794,7 +49905,7 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
49794
49905
|
)
|
|
49795
49906
|
: _vm._e()
|
|
49796
49907
|
}
|
|
49797
|
-
var
|
|
49908
|
+
var mainvue_type_template_id_68362bbf_staticRenderFns = [
|
|
49798
49909
|
function () {
|
|
49799
49910
|
var _vm = this
|
|
49800
49911
|
var _h = _vm.$createElement
|
|
@@ -49809,10 +49920,10 @@ var mainvue_type_template_id_462127d5_staticRenderFns = [
|
|
|
49809
49920
|
])
|
|
49810
49921
|
},
|
|
49811
49922
|
]
|
|
49812
|
-
|
|
49923
|
+
mainvue_type_template_id_68362bbf_render._withStripped = true
|
|
49813
49924
|
|
|
49814
49925
|
|
|
49815
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
49926
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=68362bbf&
|
|
49816
49927
|
|
|
49817
49928
|
// 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=45dccfdc&
|
|
49818
49929
|
var resetPasswordvue_type_template_id_45dccfdc_render = function () {
|
|
@@ -50836,6 +50947,23 @@ function login_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
|
|
|
50836
50947
|
//
|
|
50837
50948
|
//
|
|
50838
50949
|
//
|
|
50950
|
+
//
|
|
50951
|
+
//
|
|
50952
|
+
//
|
|
50953
|
+
//
|
|
50954
|
+
//
|
|
50955
|
+
//
|
|
50956
|
+
//
|
|
50957
|
+
//
|
|
50958
|
+
//
|
|
50959
|
+
//
|
|
50960
|
+
//
|
|
50961
|
+
//
|
|
50962
|
+
//
|
|
50963
|
+
//
|
|
50964
|
+
//
|
|
50965
|
+
//
|
|
50966
|
+
//
|
|
50839
50967
|
|
|
50840
50968
|
|
|
50841
50969
|
|
|
@@ -50903,6 +51031,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
50903
51031
|
type: Boolean,
|
|
50904
51032
|
default: true
|
|
50905
51033
|
},
|
|
51034
|
+
modelTips: Boolean,
|
|
50906
51035
|
model: {
|
|
50907
51036
|
type: Object,
|
|
50908
51037
|
default: function _default() {
|
|
@@ -51149,10 +51278,14 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51149
51278
|
0: { type: '0', icon: 'es-icon-zhanghaodenglu', name: '账号登录' },
|
|
51150
51279
|
1: { type: '1', icon: 'es-icon-ca', name: '证书登录' },
|
|
51151
51280
|
3: { type: '3', icon: 'es-icon-saomadenglu', name: '扫码登录' },
|
|
51152
|
-
6: { type: '6', icon: 'es-icon-
|
|
51281
|
+
6: { type: '6', icon: 'es-icon-duanxindenglu', name: '短信登录' },
|
|
51153
51282
|
7: { type: '7', icon: 'es-icon-dingding', name: '钉钉扫码登录' },
|
|
51154
51283
|
9: { type: '9', icon: 'es-icon-weixin', name: '微信扫码登录' },
|
|
51155
|
-
11: {
|
|
51284
|
+
11: {
|
|
51285
|
+
type: '11',
|
|
51286
|
+
icon: 'es-icon-youxiangdenglu',
|
|
51287
|
+
name: '邮箱登录'
|
|
51288
|
+
},
|
|
51156
51289
|
12: { type: '12', icon: 'es-icon-zhanghaodenglu', name: '账号登录' //双因素
|
|
51157
51290
|
} };
|
|
51158
51291
|
},
|
|
@@ -51187,8 +51320,16 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51187
51320
|
loginModel: {
|
|
51188
51321
|
immediate: true,
|
|
51189
51322
|
handler: function handler(val) {
|
|
51323
|
+
var _this2 = this;
|
|
51324
|
+
|
|
51190
51325
|
this.active = val.split(',')[0];
|
|
51191
51326
|
this.title = this.iconfonts[this.active].name;
|
|
51327
|
+
this.switchs.forEach(function (item) {
|
|
51328
|
+
if (item.type == _this2.active) {
|
|
51329
|
+
_this2.switchActive = item.type;
|
|
51330
|
+
return;
|
|
51331
|
+
}
|
|
51332
|
+
});
|
|
51192
51333
|
}
|
|
51193
51334
|
},
|
|
51194
51335
|
active: {
|
|
@@ -51354,7 +51495,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51354
51495
|
loginBoxAlign && (this.align = loginBoxAlign);
|
|
51355
51496
|
},
|
|
51356
51497
|
doWechatLogin: function doWechatLogin(code) {
|
|
51357
|
-
var
|
|
51498
|
+
var _this3 = this;
|
|
51358
51499
|
|
|
51359
51500
|
utils_util["a" /* default */].ajax({
|
|
51360
51501
|
method: 'post',
|
|
@@ -51363,10 +51504,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51363
51504
|
}).then(function (res) {
|
|
51364
51505
|
if (res.rCode == 0) {
|
|
51365
51506
|
var results = res.results;
|
|
51366
|
-
|
|
51507
|
+
_this3.handleResults(results);
|
|
51367
51508
|
} else {
|
|
51368
51509
|
var msg = res.results && res.results.msg ? res.results.msg : res.msg;
|
|
51369
|
-
|
|
51510
|
+
_this3.$message({
|
|
51370
51511
|
message: msg || '系统错误,请联系管理员!',
|
|
51371
51512
|
type: 'error',
|
|
51372
51513
|
duration: 1500,
|
|
@@ -51380,7 +51521,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51380
51521
|
}
|
|
51381
51522
|
}).catch(function (err) {
|
|
51382
51523
|
if (err.message && err.message !== 'canceled') {
|
|
51383
|
-
|
|
51524
|
+
_this3.$message.error(err.message);
|
|
51384
51525
|
}
|
|
51385
51526
|
});
|
|
51386
51527
|
},
|
|
@@ -51509,7 +51650,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51509
51650
|
}
|
|
51510
51651
|
},
|
|
51511
51652
|
switchLogin: function switchLogin(res) {
|
|
51512
|
-
var
|
|
51653
|
+
var _this4 = this;
|
|
51513
51654
|
|
|
51514
51655
|
if (res != 1) {
|
|
51515
51656
|
this.active = res.type;
|
|
@@ -51519,18 +51660,33 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51519
51660
|
this.countdown = 0;
|
|
51520
51661
|
this.$emit('change-type', res, this.identifyingId);
|
|
51521
51662
|
this.$nextTick(function () {
|
|
51522
|
-
var ref = 'login' +
|
|
51523
|
-
|
|
51663
|
+
var ref = 'login' + _this4.active;
|
|
51664
|
+
_this4.$refs[ref] && _this4.$refs[ref].clearValidate();
|
|
51524
51665
|
});
|
|
51525
51666
|
},
|
|
51526
51667
|
switchLoginType: function switchLoginType(res) {
|
|
51527
|
-
var
|
|
51668
|
+
var _this5 = this;
|
|
51528
51669
|
|
|
51529
51670
|
this.countdown = 0;
|
|
51530
51671
|
if (res) {
|
|
51531
|
-
this.active = res.type;
|
|
51532
|
-
this.title = res.name || '';
|
|
51533
51672
|
this.switchActive = res.type;
|
|
51673
|
+
this.title = res.name || '';
|
|
51674
|
+
if (this.loginModel.indexOf(res.type) > -1) {
|
|
51675
|
+
this.active = res.type;
|
|
51676
|
+
} else {
|
|
51677
|
+
var other = this.switchs.filter(function (item) {
|
|
51678
|
+
return item.type != res.type;
|
|
51679
|
+
})[0];
|
|
51680
|
+
var model = this.loginModel.split(',').filter(function (item) {
|
|
51681
|
+
return item != res.type && item != other.type;
|
|
51682
|
+
})[0];
|
|
51683
|
+
if (model) {
|
|
51684
|
+
this.active = model;
|
|
51685
|
+
this.title = this.iconfonts[model].name;
|
|
51686
|
+
} else {
|
|
51687
|
+
console.error('complex风格的登录方式,loginModel配置错误!');
|
|
51688
|
+
}
|
|
51689
|
+
}
|
|
51534
51690
|
} else {
|
|
51535
51691
|
this.active = this.switchs[0].type;
|
|
51536
51692
|
this.title = '';
|
|
@@ -51538,15 +51694,15 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51538
51694
|
}
|
|
51539
51695
|
this.$emit('change-type', res, this.identifyingId);
|
|
51540
51696
|
this.$nextTick(function () {
|
|
51541
|
-
var ref = 'login' +
|
|
51542
|
-
|
|
51697
|
+
var ref = 'login' + _this5.active;
|
|
51698
|
+
_this5.$refs[ref] && _this5.$refs[ref].clearValidate();
|
|
51543
51699
|
});
|
|
51544
51700
|
},
|
|
51545
51701
|
isShow: function isShow(res) {
|
|
51546
51702
|
return this.loginModel.indexOf(res) > -1;
|
|
51547
51703
|
},
|
|
51548
51704
|
getLogin: function getLogin() {
|
|
51549
|
-
var
|
|
51705
|
+
var _this6 = this;
|
|
51550
51706
|
|
|
51551
51707
|
return login_src_mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
|
|
51552
51708
|
var config;
|
|
@@ -51557,10 +51713,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51557
51713
|
config = utils_util["a" /* default */].getStorage('initLogin');
|
|
51558
51714
|
|
|
51559
51715
|
if (config) {
|
|
51560
|
-
|
|
51716
|
+
_this6.setConfig(JSON.parse(config));
|
|
51561
51717
|
}
|
|
51562
51718
|
_context.next = 4;
|
|
51563
|
-
return utils_util["a" /* default */].ajax({ url:
|
|
51719
|
+
return utils_util["a" /* default */].ajax({ url: _this6.initLogin }).then(function (res) {
|
|
51564
51720
|
if (res && res.rCode === 0) {
|
|
51565
51721
|
utils_store.set('initLogin', res.results);
|
|
51566
51722
|
utils_util["a" /* default */].setStorage({
|
|
@@ -51568,10 +51724,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51568
51724
|
key: 'initLogin',
|
|
51569
51725
|
value: JSON.stringify(res.results)
|
|
51570
51726
|
});
|
|
51571
|
-
|
|
51572
|
-
|
|
51727
|
+
_this6.$emit('initLogin', res.results);
|
|
51728
|
+
_this6.setConfig(res.results);
|
|
51573
51729
|
} else {
|
|
51574
|
-
|
|
51730
|
+
_this6.$message({
|
|
51575
51731
|
message: res.msg || '系统错误,请联系管理员!',
|
|
51576
51732
|
type: 'error',
|
|
51577
51733
|
duration: 2000
|
|
@@ -51579,7 +51735,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51579
51735
|
}
|
|
51580
51736
|
}).catch(function (err) {
|
|
51581
51737
|
if (err.message && err.message !== 'canceled') {
|
|
51582
|
-
|
|
51738
|
+
_this6.$message.error(err.message);
|
|
51583
51739
|
}
|
|
51584
51740
|
});
|
|
51585
51741
|
|
|
@@ -51588,7 +51744,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51588
51744
|
return _context.stop();
|
|
51589
51745
|
}
|
|
51590
51746
|
}
|
|
51591
|
-
}, _callee,
|
|
51747
|
+
}, _callee, _this6);
|
|
51592
51748
|
}))();
|
|
51593
51749
|
},
|
|
51594
51750
|
setConfig: function setConfig(res) {
|
|
@@ -51723,7 +51879,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51723
51879
|
return this.imageCode;
|
|
51724
51880
|
},
|
|
51725
51881
|
getCode: function getCode() {
|
|
51726
|
-
var
|
|
51882
|
+
var _this7 = this;
|
|
51727
51883
|
|
|
51728
51884
|
if (this.countdown) {
|
|
51729
51885
|
return false;
|
|
@@ -51765,14 +51921,14 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51765
51921
|
}
|
|
51766
51922
|
this.countdown = 60;
|
|
51767
51923
|
this.timer = setInterval(function () {
|
|
51768
|
-
if (
|
|
51769
|
-
|
|
51770
|
-
|
|
51771
|
-
|
|
51924
|
+
if (_this7.countdown > 0) {
|
|
51925
|
+
_this7.countdown--;
|
|
51926
|
+
_this7.disabled = true;
|
|
51927
|
+
_this7.btnText = '重新获取' + _this7.countdown + 's';
|
|
51772
51928
|
} else {
|
|
51773
|
-
|
|
51774
|
-
|
|
51775
|
-
|
|
51929
|
+
_this7.btnText = '重新获取';
|
|
51930
|
+
_this7.disabled = false;
|
|
51931
|
+
_this7.submit = false;
|
|
51776
51932
|
}
|
|
51777
51933
|
}, 1000);
|
|
51778
51934
|
utils_util["a" /* default */].ajax({
|
|
@@ -51780,26 +51936,26 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51780
51936
|
url: this.active == 12 ? this.getTwoFactorLoginCode : this.getLoginCode,
|
|
51781
51937
|
data: data
|
|
51782
51938
|
}).then(function (res) {
|
|
51783
|
-
|
|
51939
|
+
_this7.$message({
|
|
51784
51940
|
message: res.msg,
|
|
51785
51941
|
duration: 2000,
|
|
51786
51942
|
type: res.rCode == 0 ? 'success' : 'error'
|
|
51787
51943
|
});
|
|
51788
51944
|
|
|
51789
51945
|
if (res.rCode === 2) {
|
|
51790
|
-
|
|
51791
|
-
|
|
51792
|
-
|
|
51793
|
-
clearInterval(
|
|
51946
|
+
_this7.btnText = '获取验证码';
|
|
51947
|
+
_this7.disabled = false;
|
|
51948
|
+
_this7.countdown = 0;
|
|
51949
|
+
clearInterval(_this7.timer);
|
|
51794
51950
|
}
|
|
51795
51951
|
}).catch(function (err) {
|
|
51796
51952
|
if (err.message && err.message !== 'canceled') {
|
|
51797
|
-
|
|
51953
|
+
_this7.$message.error(err.message);
|
|
51798
51954
|
}
|
|
51799
51955
|
});
|
|
51800
51956
|
},
|
|
51801
51957
|
handleLogin: function handleLogin() {
|
|
51802
|
-
var
|
|
51958
|
+
var _this8 = this;
|
|
51803
51959
|
|
|
51804
51960
|
if (this.submit) {
|
|
51805
51961
|
return false;
|
|
@@ -51807,40 +51963,40 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51807
51963
|
var ref = 'login' + this.active;
|
|
51808
51964
|
this.$refs[ref].validate(function (valid) {
|
|
51809
51965
|
if (valid) {
|
|
51810
|
-
|
|
51966
|
+
_this8.submit = true;
|
|
51811
51967
|
var param = utils_util["a" /* default */].getParams() || {};
|
|
51812
|
-
var data =
|
|
51813
|
-
username:
|
|
51814
|
-
password:
|
|
51815
|
-
data:
|
|
51816
|
-
key:
|
|
51817
|
-
}) :
|
|
51818
|
-
identifyingCode:
|
|
51819
|
-
identifyingId:
|
|
51820
|
-
} :
|
|
51821
|
-
username:
|
|
51822
|
-
password:
|
|
51823
|
-
data:
|
|
51824
|
-
key:
|
|
51825
|
-
}) :
|
|
51826
|
-
targetType:
|
|
51827
|
-
verificationCode:
|
|
51968
|
+
var data = _this8.active == '0' ? {
|
|
51969
|
+
username: _this8.formData.username,
|
|
51970
|
+
password: _this8.secret && _this8.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
|
|
51971
|
+
data: _this8.formData.password,
|
|
51972
|
+
key: _this8.secret
|
|
51973
|
+
}) : _this8.formData.password,
|
|
51974
|
+
identifyingCode: _this8.formData.identifyingCode,
|
|
51975
|
+
identifyingId: _this8.identifyingId
|
|
51976
|
+
} : _this8.active == '12' ? {
|
|
51977
|
+
username: _this8.formData.username,
|
|
51978
|
+
password: _this8.secret && _this8.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
|
|
51979
|
+
data: _this8.formData.password,
|
|
51980
|
+
key: _this8.secret
|
|
51981
|
+
}) : _this8.formData.password,
|
|
51982
|
+
targetType: _this8.passModifyModel.indexOf('11') > -1 ? 'EMAIL' : 'SMS',
|
|
51983
|
+
verificationCode: _this8.formData.identifyingCode
|
|
51828
51984
|
} : {
|
|
51829
|
-
target:
|
|
51830
|
-
verificationCode:
|
|
51831
|
-
targetType:
|
|
51985
|
+
target: _this8.formData.target,
|
|
51986
|
+
verificationCode: _this8.formData.verificationCode,
|
|
51987
|
+
targetType: _this8.active == '6' ? 'SMS' : 'EMAIL'
|
|
51832
51988
|
};
|
|
51833
|
-
if (
|
|
51834
|
-
if (
|
|
51835
|
-
|
|
51989
|
+
if (_this8.onLogin) {
|
|
51990
|
+
if (_this8.active == '0') {
|
|
51991
|
+
_this8.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data), _this8.getImgCode, _this8.handleRemember);
|
|
51836
51992
|
} else {
|
|
51837
|
-
|
|
51993
|
+
_this8.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data));
|
|
51838
51994
|
}
|
|
51839
51995
|
} else {
|
|
51840
|
-
|
|
51996
|
+
_this8.handleUserLogin(login_src_mainvue_type_script_lang_js_extends({}, param, _this8.param, data));
|
|
51841
51997
|
}
|
|
51842
51998
|
} else {
|
|
51843
|
-
|
|
51999
|
+
_this8.submit = false;
|
|
51844
52000
|
return false;
|
|
51845
52001
|
}
|
|
51846
52002
|
});
|
|
@@ -51856,7 +52012,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51856
52012
|
}
|
|
51857
52013
|
},
|
|
51858
52014
|
handleUserLogin: function handleUserLogin(data) {
|
|
51859
|
-
var
|
|
52015
|
+
var _this9 = this;
|
|
51860
52016
|
|
|
51861
52017
|
var extUserBindHandleId = sessionStorage.getItem('extUserBindHandleId');
|
|
51862
52018
|
utils_util["a" /* default */].ajax({
|
|
@@ -51864,68 +52020,68 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51864
52020
|
url: this.active == '0' ? this.actionUrl : this.active == '12' ? this.doTwoFactorLogin : this.doCodeLogin,
|
|
51865
52021
|
data: extUserBindHandleId ? login_src_mainvue_type_script_lang_js_extends({}, data, { extUserBindHandleId: extUserBindHandleId }) : data
|
|
51866
52022
|
}).then(function (res) {
|
|
51867
|
-
|
|
52023
|
+
_this9.submit = false;
|
|
51868
52024
|
if (res.rCode == 0) {
|
|
51869
52025
|
utils_util["a" /* default */].removeStorage('extUserBindHandleId');
|
|
51870
|
-
|
|
52026
|
+
_this9.handleRemember();
|
|
51871
52027
|
var results = res.results;
|
|
51872
|
-
|
|
51873
|
-
if (
|
|
51874
|
-
|
|
52028
|
+
_this9.handleResults(results);
|
|
52029
|
+
if (_this9.onSuccess) {
|
|
52030
|
+
_this9.onSuccess(res);
|
|
51875
52031
|
}
|
|
51876
52032
|
} else {
|
|
51877
52033
|
var msg = res.results && res.results.msg ? res.results.msg : res.msg;
|
|
51878
|
-
|
|
52034
|
+
_this9.$message({
|
|
51879
52035
|
message: msg || '系统错误,请联系管理员!',
|
|
51880
52036
|
type: 'error',
|
|
51881
52037
|
duration: 1500,
|
|
51882
52038
|
onClose: function onClose() {
|
|
51883
|
-
|
|
51884
|
-
|
|
51885
|
-
|
|
51886
|
-
clearInterval(
|
|
51887
|
-
|
|
52039
|
+
_this9.btnText = '获取验证码';
|
|
52040
|
+
_this9.disabled = false;
|
|
52041
|
+
_this9.countdown = 0;
|
|
52042
|
+
clearInterval(_this9.timer);
|
|
52043
|
+
_this9.getImgCode();
|
|
51888
52044
|
}
|
|
51889
52045
|
});
|
|
51890
|
-
|
|
52046
|
+
_this9.onError(res);
|
|
51891
52047
|
}
|
|
51892
52048
|
}).catch(function (err) {
|
|
51893
|
-
|
|
52049
|
+
_this9.submit = false;
|
|
51894
52050
|
if (err.message && err.message !== 'canceled') {
|
|
51895
|
-
|
|
52051
|
+
_this9.$message.error(err.message);
|
|
51896
52052
|
}
|
|
51897
52053
|
});
|
|
51898
52054
|
},
|
|
51899
52055
|
caLogin: function caLogin(signedData) {
|
|
51900
|
-
var
|
|
52056
|
+
var _this10 = this;
|
|
51901
52057
|
|
|
51902
52058
|
utils_util["a" /* default */].ajax({
|
|
51903
52059
|
method: 'post',
|
|
51904
52060
|
url: this.caAction,
|
|
51905
52061
|
data: { identifyingId: this.identifyingId, signedData: signedData }
|
|
51906
52062
|
}).then(function (res) {
|
|
51907
|
-
|
|
52063
|
+
_this10.submit = false;
|
|
51908
52064
|
if (res.rCode == 0) {
|
|
51909
52065
|
var results = res.results;
|
|
51910
|
-
|
|
51911
|
-
if (
|
|
51912
|
-
|
|
52066
|
+
_this10.handleResults(results);
|
|
52067
|
+
if (_this10.onSuccess) {
|
|
52068
|
+
_this10.onSuccess(res);
|
|
51913
52069
|
}
|
|
51914
52070
|
} else {
|
|
51915
52071
|
var msg = res.results && res.results.msg ? res.results.msg : res.msg;
|
|
51916
|
-
|
|
52072
|
+
_this10.$message({
|
|
51917
52073
|
message: msg || '系统错误,请联系管理员!',
|
|
51918
52074
|
type: 'error',
|
|
51919
52075
|
duration: 1500,
|
|
51920
52076
|
onClose: function onClose() {
|
|
51921
|
-
|
|
52077
|
+
_this10.getImgCode();
|
|
51922
52078
|
}
|
|
51923
52079
|
});
|
|
51924
|
-
|
|
52080
|
+
_this10.onError(res);
|
|
51925
52081
|
}
|
|
51926
52082
|
}).catch(function (err) {
|
|
51927
52083
|
if (err.message && err.message !== 'canceled') {
|
|
51928
|
-
|
|
52084
|
+
_this10.$message.error(err.message);
|
|
51929
52085
|
}
|
|
51930
52086
|
});
|
|
51931
52087
|
},
|
|
@@ -51942,17 +52098,17 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51942
52098
|
|
|
51943
52099
|
//获取app登录信息
|
|
51944
52100
|
loginInfo: function loginInfo(res) {
|
|
51945
|
-
var
|
|
52101
|
+
var _this11 = this;
|
|
51946
52102
|
|
|
51947
52103
|
clearTimeout(this.interval);
|
|
51948
52104
|
if (res) {
|
|
51949
52105
|
this.interval = setTimeout(function () {
|
|
51950
|
-
|
|
52106
|
+
_this11.initRequestLoginInfo();
|
|
51951
52107
|
}, this.scanIntervalTime);
|
|
51952
52108
|
}
|
|
51953
52109
|
},
|
|
51954
52110
|
initRequestLoginInfo: function initRequestLoginInfo() {
|
|
51955
|
-
var
|
|
52111
|
+
var _this12 = this;
|
|
51956
52112
|
|
|
51957
52113
|
if (this.identifyingId == '') {
|
|
51958
52114
|
return false;
|
|
@@ -51967,21 +52123,21 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51967
52123
|
if (res.rCode === 0) {
|
|
51968
52124
|
var results = res.results;
|
|
51969
52125
|
if (results.statusCode === 0) {
|
|
51970
|
-
clearTimeout(
|
|
51971
|
-
|
|
52126
|
+
clearTimeout(_this12.interval);
|
|
52127
|
+
_this12.handleResults(results, 3);
|
|
51972
52128
|
} else {
|
|
51973
|
-
|
|
52129
|
+
_this12.loginInfo(true);
|
|
51974
52130
|
}
|
|
51975
52131
|
}
|
|
51976
52132
|
}).catch(function (err) {
|
|
51977
|
-
clearTimeout(
|
|
52133
|
+
clearTimeout(_this12.interval);
|
|
51978
52134
|
if (err.message && err.message !== 'canceled') {
|
|
51979
|
-
|
|
52135
|
+
_this12.$message.error(err.message);
|
|
51980
52136
|
}
|
|
51981
52137
|
});
|
|
51982
52138
|
},
|
|
51983
52139
|
handleResults: function handleResults(results, type) {
|
|
51984
|
-
var
|
|
52140
|
+
var _this13 = this;
|
|
51985
52141
|
|
|
51986
52142
|
switch (results.statusCode) {
|
|
51987
52143
|
case 0:
|
|
@@ -52006,9 +52162,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52006
52162
|
});
|
|
52007
52163
|
this.showLaunch = true;
|
|
52008
52164
|
setTimeout(function () {
|
|
52009
|
-
if (
|
|
52010
|
-
window.location.href =
|
|
52011
|
-
} else if (results.doorIndex &&
|
|
52165
|
+
if (_this13.toUrl) {
|
|
52166
|
+
window.location.href = _this13.toUrl;
|
|
52167
|
+
} else if (results.doorIndex && _this13.doorIndex) {
|
|
52012
52168
|
sessionStorage.setItem('doorIndex', results.doorIndex);
|
|
52013
52169
|
localStorage.setItem('isLogined', true);
|
|
52014
52170
|
window.location.href = results.doorIndex;
|
|
@@ -52016,9 +52172,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52016
52172
|
if (window.location.href.indexOf('login.html') > -1) {
|
|
52017
52173
|
window.location.href = './main.html';
|
|
52018
52174
|
} else {
|
|
52019
|
-
|
|
52020
|
-
|
|
52021
|
-
|
|
52175
|
+
_this13.$router.push({ name: 'main' });
|
|
52176
|
+
_this13.$nextTick(function () {
|
|
52177
|
+
_this13.showLaunch = false;
|
|
52022
52178
|
});
|
|
52023
52179
|
}
|
|
52024
52180
|
}
|
|
@@ -52029,9 +52185,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52029
52185
|
type: 'success',
|
|
52030
52186
|
duration: 1500,
|
|
52031
52187
|
onClose: function onClose() {
|
|
52032
|
-
if (
|
|
52033
|
-
window.location.href =
|
|
52034
|
-
} else if (results.doorIndex &&
|
|
52188
|
+
if (_this13.toUrl) {
|
|
52189
|
+
window.location.href = _this13.toUrl;
|
|
52190
|
+
} else if (results.doorIndex && _this13.doorIndex) {
|
|
52035
52191
|
sessionStorage.setItem('doorIndex', results.doorIndex);
|
|
52036
52192
|
localStorage.setItem('isLogined', true);
|
|
52037
52193
|
window.location.href = results.doorIndex;
|
|
@@ -52039,7 +52195,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52039
52195
|
if (window.location.href.indexOf('login.html') > -1) {
|
|
52040
52196
|
window.location.href = './main.html';
|
|
52041
52197
|
} else {
|
|
52042
|
-
|
|
52198
|
+
_this13.$router.push({ name: 'main' });
|
|
52043
52199
|
}
|
|
52044
52200
|
}
|
|
52045
52201
|
}
|
|
@@ -52052,11 +52208,11 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52052
52208
|
//cancelButtonText: '取消',
|
|
52053
52209
|
type: 'warning'
|
|
52054
52210
|
}).then(function () {
|
|
52055
|
-
|
|
52056
|
-
if (typeof
|
|
52057
|
-
utils_util["a" /* default */].win.open(
|
|
52211
|
+
_this13.operationCheckCode = results.checkCode;
|
|
52212
|
+
if (typeof _this13.forgetUrl === 'string') {
|
|
52213
|
+
utils_util["a" /* default */].win.open(_this13.forgetUrl);
|
|
52058
52214
|
} else {
|
|
52059
|
-
|
|
52215
|
+
_this13.showResetPassword = true;
|
|
52060
52216
|
}
|
|
52061
52217
|
}).catch(function (e) {});
|
|
52062
52218
|
break;
|
|
@@ -52097,13 +52253,13 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52097
52253
|
type: 'error',
|
|
52098
52254
|
duration: 1500,
|
|
52099
52255
|
onClose: function onClose() {
|
|
52100
|
-
if (
|
|
52256
|
+
if (_this13.code) {
|
|
52101
52257
|
window.location.href = utils_util["a" /* default */].delUrlParam({ key: 'code' });
|
|
52102
52258
|
if (window.location.hash) {
|
|
52103
52259
|
location.reload();
|
|
52104
52260
|
}
|
|
52105
52261
|
} else {
|
|
52106
|
-
|
|
52262
|
+
_this13.getImgCode();
|
|
52107
52263
|
}
|
|
52108
52264
|
}
|
|
52109
52265
|
});
|
|
@@ -52113,15 +52269,15 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52113
52269
|
}
|
|
52114
52270
|
},
|
|
52115
52271
|
handleAssistance: function handleAssistance(data) {
|
|
52116
|
-
var
|
|
52272
|
+
var _this14 = this;
|
|
52117
52273
|
|
|
52118
52274
|
clearTimeout(this.doAssistance);
|
|
52119
52275
|
this.doAssistance = setTimeout(function () {
|
|
52120
|
-
|
|
52276
|
+
_this14.doAssistanceLogin(data);
|
|
52121
52277
|
}, this.scanIntervalTime);
|
|
52122
52278
|
},
|
|
52123
52279
|
doAssistanceLogin: function doAssistanceLogin(data) {
|
|
52124
|
-
var
|
|
52280
|
+
var _this15 = this;
|
|
52125
52281
|
|
|
52126
52282
|
utils_util["a" /* default */].ajax({
|
|
52127
52283
|
method: 'post',
|
|
@@ -52131,19 +52287,19 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52131
52287
|
if (res.rCode === 0) {
|
|
52132
52288
|
var results = res.results;
|
|
52133
52289
|
if (results.statusCode === 0) {
|
|
52134
|
-
clearTimeout(
|
|
52135
|
-
|
|
52290
|
+
clearTimeout(_this15.doAssistance);
|
|
52291
|
+
_this15.handleResults(results, 3);
|
|
52136
52292
|
} else {
|
|
52137
|
-
|
|
52293
|
+
_this15.handleAssistance(data);
|
|
52138
52294
|
}
|
|
52139
52295
|
} else {
|
|
52140
|
-
clearTimeout(
|
|
52141
|
-
|
|
52296
|
+
clearTimeout(_this15.doAssistance);
|
|
52297
|
+
_this15.$message.error(res.msg);
|
|
52142
52298
|
}
|
|
52143
52299
|
}).catch(function (err) {
|
|
52144
|
-
clearTimeout(
|
|
52300
|
+
clearTimeout(_this15.doAssistance);
|
|
52145
52301
|
if (err.message && err.message !== 'canceled') {
|
|
52146
|
-
|
|
52302
|
+
_this15.$message.error(err.message);
|
|
52147
52303
|
}
|
|
52148
52304
|
});
|
|
52149
52305
|
},
|
|
@@ -52180,8 +52336,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52180
52336
|
|
|
52181
52337
|
var login_src_main_component = normalizeComponent(
|
|
52182
52338
|
packages_login_src_mainvue_type_script_lang_js_,
|
|
52183
|
-
|
|
52184
|
-
|
|
52339
|
+
mainvue_type_template_id_68362bbf_render,
|
|
52340
|
+
mainvue_type_template_id_68362bbf_staticRenderFns,
|
|
52185
52341
|
false,
|
|
52186
52342
|
null,
|
|
52187
52343
|
null,
|
|
@@ -52298,8 +52454,8 @@ mainvue_type_template_id_774e8f3b_render._withStripped = true
|
|
|
52298
52454
|
|
|
52299
52455
|
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=774e8f3b&
|
|
52300
52456
|
|
|
52301
|
-
// 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=
|
|
52302
|
-
var
|
|
52457
|
+
// 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=4aaec640&scoped=true&
|
|
52458
|
+
var simplicityvue_type_template_id_4aaec640_scoped_true_render = function () {
|
|
52303
52459
|
var _vm = this
|
|
52304
52460
|
var _h = _vm.$createElement
|
|
52305
52461
|
var _c = _vm._self._c || _h
|
|
@@ -52511,7 +52667,7 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52511
52667
|
style: _vm._aibackground,
|
|
52512
52668
|
on: {
|
|
52513
52669
|
click: function ($event) {
|
|
52514
|
-
_vm.handlerSetDrawer(_vm._aiConfig)
|
|
52670
|
+
_vm.handlerSetDrawer(_vm._aiConfig, "ai")
|
|
52515
52671
|
},
|
|
52516
52672
|
},
|
|
52517
52673
|
},
|
|
@@ -52581,7 +52737,7 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52581
52737
|
{
|
|
52582
52738
|
staticClass: "es-simplicity-public-drawer",
|
|
52583
52739
|
attrs: {
|
|
52584
|
-
direction:
|
|
52740
|
+
direction: _vm.drawer.direction,
|
|
52585
52741
|
"modal-class": "es-simplicity-apps-modal",
|
|
52586
52742
|
size: "100%",
|
|
52587
52743
|
"show-close": "",
|
|
@@ -52595,35 +52751,91 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52595
52751
|
},
|
|
52596
52752
|
},
|
|
52597
52753
|
[
|
|
52598
|
-
_vm.drawer.url
|
|
52599
|
-
?
|
|
52600
|
-
|
|
52601
|
-
|
|
52602
|
-
|
|
52603
|
-
|
|
52604
|
-
|
|
52605
|
-
|
|
52606
|
-
|
|
52607
|
-
|
|
52608
|
-
|
|
52609
|
-
|
|
52610
|
-
|
|
52611
|
-
|
|
52612
|
-
|
|
52613
|
-
|
|
52614
|
-
|
|
52615
|
-
|
|
52616
|
-
|
|
52617
|
-
|
|
52618
|
-
|
|
52619
|
-
|
|
52620
|
-
|
|
52621
|
-
|
|
52622
|
-
|
|
52623
|
-
|
|
52754
|
+
_vm.drawer.ai && _vm.drawer.ai.url
|
|
52755
|
+
? _c(
|
|
52756
|
+
"div",
|
|
52757
|
+
{
|
|
52758
|
+
directives: [
|
|
52759
|
+
{
|
|
52760
|
+
name: "show",
|
|
52761
|
+
rawName: "v-show",
|
|
52762
|
+
value: _vm.drawer.active == "ai",
|
|
52763
|
+
expression: "drawer.active == 'ai'",
|
|
52764
|
+
},
|
|
52765
|
+
],
|
|
52766
|
+
staticClass: "es-simplicity-public-drawer-main",
|
|
52767
|
+
},
|
|
52768
|
+
[
|
|
52769
|
+
_vm.isIE || _vm.drawer.ai.method !== "wujie"
|
|
52770
|
+
? [
|
|
52771
|
+
_c("iframe", {
|
|
52772
|
+
attrs: {
|
|
52773
|
+
frameborder: "0",
|
|
52774
|
+
width: "100%",
|
|
52775
|
+
height: "100%",
|
|
52776
|
+
src: _vm.drawer.ai.url,
|
|
52777
|
+
},
|
|
52778
|
+
}),
|
|
52779
|
+
]
|
|
52780
|
+
: [
|
|
52781
|
+
_c("es-wujie", {
|
|
52782
|
+
attrs: {
|
|
52783
|
+
host: _vm.host,
|
|
52784
|
+
show: true,
|
|
52785
|
+
props: _vm.wjProps,
|
|
52786
|
+
attrs: _vm.wjAttrs,
|
|
52787
|
+
name: _vm.drawer.ai.name,
|
|
52788
|
+
url: _vm.drawer.ai.url,
|
|
52789
|
+
},
|
|
52790
|
+
}),
|
|
52791
|
+
],
|
|
52792
|
+
],
|
|
52793
|
+
2
|
|
52794
|
+
)
|
|
52624
52795
|
: _vm._e(),
|
|
52625
|
-
|
|
52626
|
-
|
|
52796
|
+
_vm.drawer.im && _vm.drawer.im.url
|
|
52797
|
+
? _c(
|
|
52798
|
+
"div",
|
|
52799
|
+
{
|
|
52800
|
+
directives: [
|
|
52801
|
+
{
|
|
52802
|
+
name: "show",
|
|
52803
|
+
rawName: "v-show",
|
|
52804
|
+
value: _vm.drawer.active == "im",
|
|
52805
|
+
expression: "drawer.active == 'im'",
|
|
52806
|
+
},
|
|
52807
|
+
],
|
|
52808
|
+
staticClass: "es-simplicity-public-drawer-main",
|
|
52809
|
+
},
|
|
52810
|
+
[
|
|
52811
|
+
_vm.isIE || _vm.drawer.im.method !== "wujie"
|
|
52812
|
+
? [
|
|
52813
|
+
_c("iframe", {
|
|
52814
|
+
attrs: {
|
|
52815
|
+
frameborder: "0",
|
|
52816
|
+
width: "100%",
|
|
52817
|
+
height: "100%",
|
|
52818
|
+
src: _vm.drawer.im.url,
|
|
52819
|
+
},
|
|
52820
|
+
}),
|
|
52821
|
+
]
|
|
52822
|
+
: [
|
|
52823
|
+
_c("es-wujie", {
|
|
52824
|
+
attrs: {
|
|
52825
|
+
host: _vm.host,
|
|
52826
|
+
show: true,
|
|
52827
|
+
props: _vm.wjProps,
|
|
52828
|
+
attrs: _vm.wjAttrs,
|
|
52829
|
+
name: _vm.drawer.im.name,
|
|
52830
|
+
url: _vm.drawer.im.url,
|
|
52831
|
+
},
|
|
52832
|
+
}),
|
|
52833
|
+
],
|
|
52834
|
+
],
|
|
52835
|
+
2
|
|
52836
|
+
)
|
|
52837
|
+
: _vm._e(),
|
|
52838
|
+
]
|
|
52627
52839
|
),
|
|
52628
52840
|
_c(
|
|
52629
52841
|
"div",
|
|
@@ -52935,11 +53147,11 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52935
53147
|
),
|
|
52936
53148
|
])
|
|
52937
53149
|
}
|
|
52938
|
-
var
|
|
52939
|
-
|
|
53150
|
+
var simplicityvue_type_template_id_4aaec640_scoped_true_staticRenderFns = []
|
|
53151
|
+
simplicityvue_type_template_id_4aaec640_scoped_true_render._withStripped = true
|
|
52940
53152
|
|
|
52941
53153
|
|
|
52942
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
53154
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=4aaec640&scoped=true&
|
|
52943
53155
|
|
|
52944
53156
|
// 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=e722b45c&scoped=true&
|
|
52945
53157
|
var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
|
|
@@ -53090,8 +53302,8 @@ var avatar_component = normalizeComponent(
|
|
|
53090
53302
|
)
|
|
53091
53303
|
|
|
53092
53304
|
/* harmony default export */ var avatar = (avatar_component.exports);
|
|
53093
|
-
// 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/handler.vue?vue&type=template&id=
|
|
53094
|
-
var
|
|
53305
|
+
// 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/handler.vue?vue&type=template&id=754aecd5&scoped=true&
|
|
53306
|
+
var handlervue_type_template_id_754aecd5_scoped_true_render = function () {
|
|
53095
53307
|
var _vm = this
|
|
53096
53308
|
var _h = _vm.$createElement
|
|
53097
53309
|
var _c = _vm._self._c || _h
|
|
@@ -53132,7 +53344,7 @@ var handlervue_type_template_id_6f2302b2_scoped_true_render = function () {
|
|
|
53132
53344
|
]),
|
|
53133
53345
|
]
|
|
53134
53346
|
)
|
|
53135
|
-
: item.type === "online"
|
|
53347
|
+
: item.type === "online" || item.type === "onlineUser"
|
|
53136
53348
|
? _c(
|
|
53137
53349
|
"div",
|
|
53138
53350
|
{ key: item.type, staticClass: "es-simplicity-online" },
|
|
@@ -53154,7 +53366,7 @@ var handlervue_type_template_id_6f2302b2_scoped_true_render = function () {
|
|
|
53154
53366
|
_vm._v("\n 人在线\n "),
|
|
53155
53367
|
]
|
|
53156
53368
|
)
|
|
53157
|
-
: item.type === "notice"
|
|
53369
|
+
: item.type === "notice" || item.type === "messsage"
|
|
53158
53370
|
? _c(
|
|
53159
53371
|
"el-badge",
|
|
53160
53372
|
{
|
|
@@ -53197,15 +53409,17 @@ var handlervue_type_template_id_6f2302b2_scoped_true_render = function () {
|
|
|
53197
53409
|
2
|
|
53198
53410
|
)
|
|
53199
53411
|
}
|
|
53200
|
-
var
|
|
53201
|
-
|
|
53412
|
+
var handlervue_type_template_id_754aecd5_scoped_true_staticRenderFns = []
|
|
53413
|
+
handlervue_type_template_id_754aecd5_scoped_true_render._withStripped = true
|
|
53202
53414
|
|
|
53203
53415
|
|
|
53204
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/handler.vue?vue&type=template&id=
|
|
53416
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/handler.vue?vue&type=template&id=754aecd5&scoped=true&
|
|
53205
53417
|
|
|
53206
53418
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=script&lang=js&
|
|
53207
53419
|
var handlervue_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; };
|
|
53208
53420
|
|
|
53421
|
+
var handlervue_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; };
|
|
53422
|
+
|
|
53209
53423
|
//
|
|
53210
53424
|
//
|
|
53211
53425
|
//
|
|
@@ -53281,31 +53495,69 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53281
53495
|
props: {
|
|
53282
53496
|
contact: Object,
|
|
53283
53497
|
dateTime: {
|
|
53284
|
-
type: Boolean,
|
|
53285
|
-
default:
|
|
53498
|
+
type: [Boolean, Object],
|
|
53499
|
+
default: function _default() {
|
|
53500
|
+
return { type: 'dateTime' };
|
|
53501
|
+
},
|
|
53502
|
+
|
|
53503
|
+
validator: function validator(val) {
|
|
53504
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53505
|
+
}
|
|
53506
|
+
},
|
|
53507
|
+
onlineUser: {
|
|
53508
|
+
type: [Boolean, Object],
|
|
53509
|
+
default: function _default() {
|
|
53510
|
+
return { type: 'onlineUser' };
|
|
53511
|
+
},
|
|
53512
|
+
|
|
53513
|
+
validator: function validator(val) {
|
|
53514
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53515
|
+
}
|
|
53286
53516
|
},
|
|
53287
53517
|
search: {
|
|
53288
|
-
type: Object,
|
|
53518
|
+
type: [Boolean, Object],
|
|
53289
53519
|
default: function _default() {
|
|
53290
53520
|
return {
|
|
53291
53521
|
type: 'search',
|
|
53292
53522
|
icon: 'es-icon-magnifier',
|
|
53293
53523
|
title: '搜索'
|
|
53294
53524
|
};
|
|
53525
|
+
},
|
|
53526
|
+
|
|
53527
|
+
validator: function validator(val) {
|
|
53528
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53529
|
+
}
|
|
53530
|
+
},
|
|
53531
|
+
im: {
|
|
53532
|
+
type: [Boolean, Object],
|
|
53533
|
+
default: function _default() {
|
|
53534
|
+
return {
|
|
53535
|
+
type: 'im',
|
|
53536
|
+
icon: 'es-icon-liaotian',
|
|
53537
|
+
title: 'IM'
|
|
53538
|
+
};
|
|
53539
|
+
},
|
|
53540
|
+
|
|
53541
|
+
validator: function validator(val) {
|
|
53542
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53295
53543
|
}
|
|
53296
53544
|
},
|
|
53297
53545
|
index: {
|
|
53298
|
-
type: Object,
|
|
53546
|
+
type: [Boolean, Object],
|
|
53299
53547
|
default: function _default() {
|
|
53300
53548
|
return {
|
|
53301
53549
|
type: 'index',
|
|
53302
53550
|
icon: 'es-icon-home',
|
|
53303
53551
|
title: '门户'
|
|
53304
53552
|
};
|
|
53553
|
+
},
|
|
53554
|
+
|
|
53555
|
+
validator: function validator(val) {
|
|
53556
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53305
53557
|
}
|
|
53306
53558
|
},
|
|
53307
53559
|
home: {
|
|
53308
|
-
type: Object,
|
|
53560
|
+
type: [Boolean, Object],
|
|
53309
53561
|
default: function _default() {
|
|
53310
53562
|
return {
|
|
53311
53563
|
type: 'home',
|
|
@@ -53315,7 +53567,7 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53315
53567
|
}
|
|
53316
53568
|
},
|
|
53317
53569
|
notice: {
|
|
53318
|
-
type: Object,
|
|
53570
|
+
type: [Boolean, Object],
|
|
53319
53571
|
default: function _default() {
|
|
53320
53572
|
return {
|
|
53321
53573
|
type: 'notice',
|
|
@@ -53325,7 +53577,7 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53325
53577
|
}
|
|
53326
53578
|
},
|
|
53327
53579
|
quit: {
|
|
53328
|
-
type: Object,
|
|
53580
|
+
type: [Boolean, Object],
|
|
53329
53581
|
default: function _default() {
|
|
53330
53582
|
return {
|
|
53331
53583
|
type: 'quit',
|
|
@@ -53335,24 +53587,30 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53335
53587
|
}
|
|
53336
53588
|
},
|
|
53337
53589
|
set: {
|
|
53338
|
-
type: Object,
|
|
53590
|
+
type: [Boolean, Object],
|
|
53339
53591
|
default: function _default() {
|
|
53340
53592
|
return {
|
|
53341
53593
|
type: 'set',
|
|
53342
53594
|
icon: 'es-icon-xitongguanli',
|
|
53343
53595
|
title: '设置'
|
|
53344
53596
|
};
|
|
53597
|
+
},
|
|
53598
|
+
|
|
53599
|
+
validator: function validator(val) {
|
|
53600
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53345
53601
|
}
|
|
53346
53602
|
},
|
|
53347
53603
|
data: Array,
|
|
53348
53604
|
hide: {
|
|
53349
53605
|
type: Object,
|
|
53350
53606
|
default: function _default() {
|
|
53351
|
-
return {
|
|
53352
|
-
old: true
|
|
53353
|
-
};
|
|
53607
|
+
return {};
|
|
53354
53608
|
}
|
|
53355
53609
|
},
|
|
53610
|
+
msgNum: {
|
|
53611
|
+
type: Number,
|
|
53612
|
+
default: 0
|
|
53613
|
+
},
|
|
53356
53614
|
noticeNum: {
|
|
53357
53615
|
type: Number,
|
|
53358
53616
|
default: 0
|
|
@@ -53372,21 +53630,13 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53372
53630
|
|
|
53373
53631
|
computed: {
|
|
53374
53632
|
lists: function lists() {
|
|
53375
|
-
var
|
|
53376
|
-
|
|
53377
|
-
|
|
53378
|
-
|
|
53379
|
-
|
|
53380
|
-
}
|
|
53381
|
-
if (this.dateTime) {
|
|
53382
|
-
df.push({ type: 'dateTime' });
|
|
53383
|
-
}
|
|
53384
|
-
if (this.online) {
|
|
53385
|
-
df.push({ type: 'online' });
|
|
53386
|
-
}
|
|
53387
|
-
var data = this.data ? [].concat(df, this.data) : [].concat(df, [this.search, this.index, this.home, this.notice, this.quit, this.set]);
|
|
53633
|
+
var hide = handlervue_type_script_lang_js_extends({
|
|
53634
|
+
old: true,
|
|
53635
|
+
im: true
|
|
53636
|
+
}, this.hide);
|
|
53637
|
+
var data = this.data ? this.data : [this.contact ? handlervue_type_script_lang_js_extends({}, this.contact, { type: 'contact' }) : {}, this.dateTime, this.onlineUser, this.search, this.im, this.index, this.home, this.notice, this.quit, this.set];
|
|
53388
53638
|
return data.filter(function (item) {
|
|
53389
|
-
return !
|
|
53639
|
+
return item && Object.keys(item).length && !item.hide && !hide[item.type];
|
|
53390
53640
|
});
|
|
53391
53641
|
},
|
|
53392
53642
|
isClick: function isClick() {
|
|
@@ -53405,11 +53655,11 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53405
53655
|
|
|
53406
53656
|
methods: {
|
|
53407
53657
|
getTime: function getTime() {
|
|
53408
|
-
var
|
|
53658
|
+
var _this = this;
|
|
53409
53659
|
|
|
53410
53660
|
this.timer && clearInterval(this.timer);
|
|
53411
53661
|
this.timer = setInterval(function () {
|
|
53412
|
-
|
|
53662
|
+
_this.time = utils_util["a" /* default */].formatDate('', 'HH:mm:ss');
|
|
53413
53663
|
});
|
|
53414
53664
|
},
|
|
53415
53665
|
handleClick: function handleClick(res) {
|
|
@@ -53432,11 +53682,11 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53432
53682
|
|
|
53433
53683
|
var handler_component = normalizeComponent(
|
|
53434
53684
|
simplicity_handlervue_type_script_lang_js_,
|
|
53435
|
-
|
|
53436
|
-
|
|
53685
|
+
handlervue_type_template_id_754aecd5_scoped_true_render,
|
|
53686
|
+
handlervue_type_template_id_754aecd5_scoped_true_staticRenderFns,
|
|
53437
53687
|
false,
|
|
53438
53688
|
null,
|
|
53439
|
-
"
|
|
53689
|
+
"754aecd5",
|
|
53440
53690
|
null
|
|
53441
53691
|
|
|
53442
53692
|
)
|
|
@@ -57307,8 +57557,8 @@ var online_component = normalizeComponent(
|
|
|
57307
57557
|
)
|
|
57308
57558
|
|
|
57309
57559
|
/* harmony default export */ var online = (online_component.exports);
|
|
57310
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=
|
|
57311
|
-
var
|
|
57560
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=6c253fc4&
|
|
57561
|
+
var searchvue_type_template_id_6c253fc4_render = function () {
|
|
57312
57562
|
var _vm = this
|
|
57313
57563
|
var _h = _vm.$createElement
|
|
57314
57564
|
var _c = _vm._self._c || _h
|
|
@@ -57373,11 +57623,13 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57373
57623
|
{ staticClass: "es-public-search-list" },
|
|
57374
57624
|
_vm._l(
|
|
57375
57625
|
item.records.slice(0, 3),
|
|
57376
|
-
function (ele) {
|
|
57626
|
+
function (ele, idx) {
|
|
57377
57627
|
return _c(
|
|
57378
57628
|
"li",
|
|
57379
57629
|
{
|
|
57380
|
-
key:
|
|
57630
|
+
key:
|
|
57631
|
+
ele.id ||
|
|
57632
|
+
item.id + "_" + ele.title + "_" + idx,
|
|
57381
57633
|
staticClass:
|
|
57382
57634
|
"es-public-search-list-item",
|
|
57383
57635
|
on: {
|
|
@@ -57517,7 +57769,7 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57517
57769
|
),
|
|
57518
57770
|
_vm._l(_vm.types, function (item, index) {
|
|
57519
57771
|
return [
|
|
57520
|
-
!_vm.hides.includes(item.name)
|
|
57772
|
+
!_vm.hides.includes(item.name) && !item.hide
|
|
57521
57773
|
? _c(
|
|
57522
57774
|
"el-tab-pane",
|
|
57523
57775
|
{
|
|
@@ -57582,11 +57834,13 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57582
57834
|
_c(
|
|
57583
57835
|
"ul",
|
|
57584
57836
|
{ staticClass: "es-public-search-lists" },
|
|
57585
|
-
_vm._l(item.records, function (ele) {
|
|
57837
|
+
_vm._l(item.records, function (ele, idx) {
|
|
57586
57838
|
return _c(
|
|
57587
57839
|
"li",
|
|
57588
57840
|
{
|
|
57589
|
-
key:
|
|
57841
|
+
key:
|
|
57842
|
+
ele.id ||
|
|
57843
|
+
item.id + "_" + ele.title + "_" + idx,
|
|
57590
57844
|
staticClass: "es-public-search-list-item",
|
|
57591
57845
|
on: {
|
|
57592
57846
|
click: function ($event) {
|
|
@@ -57718,11 +57972,11 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57718
57972
|
1
|
|
57719
57973
|
)
|
|
57720
57974
|
}
|
|
57721
|
-
var
|
|
57722
|
-
|
|
57975
|
+
var searchvue_type_template_id_6c253fc4_staticRenderFns = []
|
|
57976
|
+
searchvue_type_template_id_6c253fc4_render._withStripped = true
|
|
57723
57977
|
|
|
57724
57978
|
|
|
57725
|
-
// CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=
|
|
57979
|
+
// CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=6c253fc4&
|
|
57726
57980
|
|
|
57727
57981
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=script&lang=js&
|
|
57728
57982
|
var searchvue_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; };
|
|
@@ -58025,7 +58279,12 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
58025
58279
|
var types = results.catalog.map(function (item, index) {
|
|
58026
58280
|
loadings[item.id || String(index)] = false;
|
|
58027
58281
|
noMore[item.id || String(index)] = false;
|
|
58028
|
-
return searchvue_type_script_lang_js_extends({}, item, {
|
|
58282
|
+
return searchvue_type_script_lang_js_extends({}, item, {
|
|
58283
|
+
pageNum: 0,
|
|
58284
|
+
pageCount: 1,
|
|
58285
|
+
records: [],
|
|
58286
|
+
hide: item.name == '应用' && _this2.apps.length == 0 ? true : false
|
|
58287
|
+
});
|
|
58029
58288
|
});
|
|
58030
58289
|
_this2.types = types;
|
|
58031
58290
|
_this2.loadings = loadings;
|
|
@@ -58036,7 +58295,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
58036
58295
|
searchAll: function searchAll(keyWords) {
|
|
58037
58296
|
for (var i = 0; i < this.types.length; i++) {
|
|
58038
58297
|
var item = this.types[i];
|
|
58039
|
-
if (keyWords) {
|
|
58298
|
+
if (keyWords && !this.hides.includes(item.name) && !item.hide) {
|
|
58040
58299
|
if (item.name == '菜单' && this.menus.length) {
|
|
58041
58300
|
this.isLoading = false;
|
|
58042
58301
|
this.types[i].records = this.searchData(this.menus, keyWords);
|
|
@@ -58179,8 +58438,8 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
58179
58438
|
|
|
58180
58439
|
var search_component = normalizeComponent(
|
|
58181
58440
|
public_searchvue_type_script_lang_js_,
|
|
58182
|
-
|
|
58183
|
-
|
|
58441
|
+
searchvue_type_template_id_6c253fc4_render,
|
|
58442
|
+
searchvue_type_template_id_6c253fc4_staticRenderFns,
|
|
58184
58443
|
false,
|
|
58185
58444
|
null,
|
|
58186
58445
|
null,
|
|
@@ -58520,6 +58779,30 @@ var simplicityvue_type_script_lang_js_extends = Object.assign || function (targe
|
|
|
58520
58779
|
//
|
|
58521
58780
|
//
|
|
58522
58781
|
//
|
|
58782
|
+
//
|
|
58783
|
+
//
|
|
58784
|
+
//
|
|
58785
|
+
//
|
|
58786
|
+
//
|
|
58787
|
+
//
|
|
58788
|
+
//
|
|
58789
|
+
//
|
|
58790
|
+
//
|
|
58791
|
+
//
|
|
58792
|
+
//
|
|
58793
|
+
//
|
|
58794
|
+
//
|
|
58795
|
+
//
|
|
58796
|
+
//
|
|
58797
|
+
//
|
|
58798
|
+
//
|
|
58799
|
+
//
|
|
58800
|
+
//
|
|
58801
|
+
//
|
|
58802
|
+
//
|
|
58803
|
+
//
|
|
58804
|
+
//
|
|
58805
|
+
//
|
|
58523
58806
|
|
|
58524
58807
|
|
|
58525
58808
|
|
|
@@ -58670,6 +58953,8 @@ var events = [function (tabs, index, that) {
|
|
|
58670
58953
|
},
|
|
58671
58954
|
//人工智能配置
|
|
58672
58955
|
ai: Object,
|
|
58956
|
+
//im
|
|
58957
|
+
im: Object,
|
|
58673
58958
|
//iframeId
|
|
58674
58959
|
iframeId: {
|
|
58675
58960
|
type: String,
|
|
@@ -58740,9 +59025,15 @@ var events = [function (tabs, index, that) {
|
|
|
58740
59025
|
fold: false,
|
|
58741
59026
|
//人工智能配置
|
|
58742
59027
|
aiConfig: null,
|
|
59028
|
+
//im配置
|
|
59029
|
+
imConfig: null,
|
|
58743
59030
|
//公用窗口面板配置
|
|
58744
59031
|
drawer: {
|
|
58745
|
-
visible: false
|
|
59032
|
+
visible: false,
|
|
59033
|
+
direction: 'ltr',
|
|
59034
|
+
ai: {},
|
|
59035
|
+
im: {},
|
|
59036
|
+
active: ''
|
|
58746
59037
|
},
|
|
58747
59038
|
//所有应用
|
|
58748
59039
|
applications: [],
|
|
@@ -58837,6 +59128,11 @@ var events = [function (tabs, index, that) {
|
|
|
58837
59128
|
} : {};
|
|
58838
59129
|
},
|
|
58839
59130
|
|
|
59131
|
+
//人工智能配置
|
|
59132
|
+
_imConfig: function _imConfig() {
|
|
59133
|
+
return this.imConfig || this.im;
|
|
59134
|
+
},
|
|
59135
|
+
|
|
58840
59136
|
//用户信息
|
|
58841
59137
|
user: function user() {
|
|
58842
59138
|
return this.userModel ? this.userModel : utils_store.get('userModel');
|
|
@@ -59036,6 +59332,17 @@ var events = [function (tabs, index, that) {
|
|
|
59036
59332
|
this.aiConfig = results[i].aiConfig;
|
|
59037
59333
|
}
|
|
59038
59334
|
}
|
|
59335
|
+
if (results[i].imConfig) {
|
|
59336
|
+
if (typeof results[i].imConfig == 'string') {
|
|
59337
|
+
try {
|
|
59338
|
+
this.imConfig = JSON.parse(results[i].imConfig);
|
|
59339
|
+
} catch (error) {
|
|
59340
|
+
this.imConfig = { url: results[i].imConfig };
|
|
59341
|
+
}
|
|
59342
|
+
} else {
|
|
59343
|
+
this.imConfig = results[i].imConfig;
|
|
59344
|
+
}
|
|
59345
|
+
}
|
|
59039
59346
|
if (results[i].portalPage || results[i].portalpage) {
|
|
59040
59347
|
this.doorIndex = results[i].portalPage || results[i].portalpage;
|
|
59041
59348
|
}
|
|
@@ -59625,12 +59932,21 @@ var events = [function (tabs, index, that) {
|
|
|
59625
59932
|
* @author huangbo
|
|
59626
59933
|
* @date 2024年9月7日
|
|
59627
59934
|
**/
|
|
59628
|
-
handlerSetDrawer: function handlerSetDrawer(res) {
|
|
59629
|
-
|
|
59630
|
-
|
|
59631
|
-
this.drawer.
|
|
59632
|
-
|
|
59633
|
-
|
|
59935
|
+
handlerSetDrawer: function handlerSetDrawer(res, type) {
|
|
59936
|
+
var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
|
|
59937
|
+
|
|
59938
|
+
this.drawer.visible = true;
|
|
59939
|
+
this.active = type;
|
|
59940
|
+
this.drawer.direction = direction;
|
|
59941
|
+
if (!this.drawer[type] && res) {
|
|
59942
|
+
var mounted = res.mounted,
|
|
59943
|
+
url = res.url;
|
|
59944
|
+
|
|
59945
|
+
this.drawer[type] = {
|
|
59946
|
+
mounted: mounted,
|
|
59947
|
+
url: url,
|
|
59948
|
+
name: res.name || utils_util["a" /* default */].uuid()
|
|
59949
|
+
};
|
|
59634
59950
|
}
|
|
59635
59951
|
},
|
|
59636
59952
|
|
|
@@ -59880,14 +60196,16 @@ var events = [function (tabs, index, that) {
|
|
|
59880
60196
|
this.showSet = false;
|
|
59881
60197
|
break;
|
|
59882
60198
|
case 'search':
|
|
59883
|
-
|
|
59884
|
-
this.handlerSetDrawer(res);
|
|
59885
|
-
} else {
|
|
59886
|
-
this.showSearch = true;
|
|
59887
|
-
}
|
|
60199
|
+
this.showSearch = true;
|
|
59888
60200
|
this.showMsg = false;
|
|
59889
60201
|
this.showSet = false;
|
|
59890
60202
|
break;
|
|
60203
|
+
case 'ai':
|
|
60204
|
+
this.handlerSetDrawer(this._aiConfig, 'ai', 'rtl');
|
|
60205
|
+
break;
|
|
60206
|
+
case 'im':
|
|
60207
|
+
this.handlerSetDrawer(this._imConfig, 'im', 'rtl');
|
|
60208
|
+
break;
|
|
59891
60209
|
case 'goView':
|
|
59892
60210
|
utils_util["a" /* default */].win.open(res.path, '_blank');
|
|
59893
60211
|
break;
|
|
@@ -60126,18 +60444,18 @@ var events = [function (tabs, index, that) {
|
|
|
60126
60444
|
|
|
60127
60445
|
var simplicity_component = normalizeComponent(
|
|
60128
60446
|
src_simplicityvue_type_script_lang_js_,
|
|
60129
|
-
|
|
60130
|
-
|
|
60447
|
+
simplicityvue_type_template_id_4aaec640_scoped_true_render,
|
|
60448
|
+
simplicityvue_type_template_id_4aaec640_scoped_true_staticRenderFns,
|
|
60131
60449
|
false,
|
|
60132
60450
|
null,
|
|
60133
|
-
"
|
|
60451
|
+
"4aaec640",
|
|
60134
60452
|
null
|
|
60135
60453
|
|
|
60136
60454
|
)
|
|
60137
60455
|
|
|
60138
60456
|
/* harmony default export */ var simplicity = (simplicity_component.exports);
|
|
60139
|
-
// 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=
|
|
60140
|
-
var
|
|
60457
|
+
// 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=40cb21f4&
|
|
60458
|
+
var defaultvue_type_template_id_40cb21f4_render = function () {
|
|
60141
60459
|
var _vm = this
|
|
60142
60460
|
var _h = _vm.$createElement
|
|
60143
60461
|
var _c = _vm._self._c || _h
|
|
@@ -60204,7 +60522,7 @@ var defaultvue_type_template_id_3e631434_render = function () {
|
|
|
60204
60522
|
online: _vm.online,
|
|
60205
60523
|
application: _vm.application,
|
|
60206
60524
|
storage: _vm.storage,
|
|
60207
|
-
|
|
60525
|
+
noticeNum: _vm.notice,
|
|
60208
60526
|
data: _vm.handleData,
|
|
60209
60527
|
"max-height": _vm._maxHeight,
|
|
60210
60528
|
},
|
|
@@ -60500,6 +60818,25 @@ var defaultvue_type_template_id_3e631434_render = function () {
|
|
|
60500
60818
|
attrs: { data: _vm.sysMsg, winopen: _vm.winopen },
|
|
60501
60819
|
on: { opened: _vm.handleOpened },
|
|
60502
60820
|
}),
|
|
60821
|
+
_c(
|
|
60822
|
+
"es-dialog",
|
|
60823
|
+
{
|
|
60824
|
+
staticClass: "es-public-search-dialog",
|
|
60825
|
+
attrs: { visible: _vm.showSearch, size: "lg" },
|
|
60826
|
+
on: {
|
|
60827
|
+
"update:visible": function ($event) {
|
|
60828
|
+
_vm.showSearch = $event
|
|
60829
|
+
},
|
|
60830
|
+
},
|
|
60831
|
+
},
|
|
60832
|
+
[
|
|
60833
|
+
_c("search", {
|
|
60834
|
+
attrs: { menus: _vm.menus, menuIcon: _vm.menuIcon },
|
|
60835
|
+
on: { select: _vm.handleOnSearch },
|
|
60836
|
+
}),
|
|
60837
|
+
],
|
|
60838
|
+
1
|
|
60839
|
+
),
|
|
60503
60840
|
_c(
|
|
60504
60841
|
"es-dialog",
|
|
60505
60842
|
{
|
|
@@ -60534,11 +60871,11 @@ var defaultvue_type_template_id_3e631434_render = function () {
|
|
|
60534
60871
|
1
|
|
60535
60872
|
)
|
|
60536
60873
|
}
|
|
60537
|
-
var
|
|
60538
|
-
|
|
60874
|
+
var defaultvue_type_template_id_40cb21f4_staticRenderFns = []
|
|
60875
|
+
defaultvue_type_template_id_40cb21f4_render._withStripped = true
|
|
60539
60876
|
|
|
60540
60877
|
|
|
60541
|
-
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=
|
|
60878
|
+
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=40cb21f4&
|
|
60542
60879
|
|
|
60543
60880
|
// 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=b6520920&
|
|
60544
60881
|
var userinfovue_type_template_id_b6520920_render = function () {
|
|
@@ -61992,6 +62329,18 @@ var defaultvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
61992
62329
|
//
|
|
61993
62330
|
//
|
|
61994
62331
|
//
|
|
62332
|
+
//
|
|
62333
|
+
//
|
|
62334
|
+
//
|
|
62335
|
+
//
|
|
62336
|
+
//
|
|
62337
|
+
//
|
|
62338
|
+
//
|
|
62339
|
+
//
|
|
62340
|
+
//
|
|
62341
|
+
//
|
|
62342
|
+
//
|
|
62343
|
+
|
|
61995
62344
|
|
|
61996
62345
|
|
|
61997
62346
|
|
|
@@ -62020,7 +62369,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
62020
62369
|
settings: settings,
|
|
62021
62370
|
message: default_message,
|
|
62022
62371
|
notice: default_notice,
|
|
62023
|
-
online: online
|
|
62372
|
+
online: online,
|
|
62373
|
+
search: public_search
|
|
62024
62374
|
},
|
|
62025
62375
|
props: {
|
|
62026
62376
|
jobScrollbar: Boolean,
|
|
@@ -62030,7 +62380,10 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
62030
62380
|
//菜单展开关闭图标
|
|
62031
62381
|
icons: Object,
|
|
62032
62382
|
//菜单前置默认图标
|
|
62033
|
-
menuIcon:
|
|
62383
|
+
menuIcon: {
|
|
62384
|
+
type: String,
|
|
62385
|
+
default: 'es-icon-application'
|
|
62386
|
+
},
|
|
62034
62387
|
//子菜单是否显示前置图标
|
|
62035
62388
|
subIcon: {
|
|
62036
62389
|
type: Boolean,
|
|
@@ -62368,6 +62721,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
62368
62721
|
showMsg: false,
|
|
62369
62722
|
//即时消息
|
|
62370
62723
|
sysMsg: [],
|
|
62724
|
+
//搜索
|
|
62725
|
+
showSearch: false,
|
|
62371
62726
|
//定时关闭及时消息对象
|
|
62372
62727
|
sysMsgOut: null,
|
|
62373
62728
|
//额外信息数据
|
|
@@ -63425,6 +63780,10 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
63425
63780
|
case 'set':
|
|
63426
63781
|
this.handleSet();
|
|
63427
63782
|
break;
|
|
63783
|
+
case 'search':
|
|
63784
|
+
this.showSearch = true;
|
|
63785
|
+
this.showMsg = false;
|
|
63786
|
+
break;
|
|
63428
63787
|
case 'goView':
|
|
63429
63788
|
utils_util["a" /* default */].win.open(res.path, '_blank');
|
|
63430
63789
|
break;
|
|
@@ -63745,6 +64104,14 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
63745
64104
|
var n = parseInt(this.menuTips[id], 10) - 1;
|
|
63746
64105
|
this.$set(this.menuTips, id, n);
|
|
63747
64106
|
}
|
|
64107
|
+
},
|
|
64108
|
+
|
|
64109
|
+
//搜索
|
|
64110
|
+
handleOnSearch: function handleOnSearch(res, parent) {
|
|
64111
|
+
this.showSearch = false;
|
|
64112
|
+
if (parent.name === '菜单') {
|
|
64113
|
+
this.jumpMenu(res.appCode);
|
|
64114
|
+
}
|
|
63748
64115
|
}
|
|
63749
64116
|
},
|
|
63750
64117
|
beforeDestroy: function beforeDestroy() {
|
|
@@ -63767,8 +64134,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
63767
64134
|
|
|
63768
64135
|
var default_component = normalizeComponent(
|
|
63769
64136
|
src_defaultvue_type_script_lang_js_,
|
|
63770
|
-
|
|
63771
|
-
|
|
64137
|
+
defaultvue_type_template_id_40cb21f4_render,
|
|
64138
|
+
defaultvue_type_template_id_40cb21f4_staticRenderFns,
|
|
63772
64139
|
false,
|
|
63773
64140
|
null,
|
|
63774
64141
|
null,
|
|
@@ -69177,8 +69544,8 @@ select_ganged_src_main.install = function (Vue) {
|
|
|
69177
69544
|
};
|
|
69178
69545
|
|
|
69179
69546
|
/* harmony default export */ var select_ganged = (select_ganged_src_main);
|
|
69180
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=
|
|
69181
|
-
var
|
|
69547
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=ed4f9db4&
|
|
69548
|
+
var mainvue_type_template_id_ed4f9db4_render = function () {
|
|
69182
69549
|
var _vm = this
|
|
69183
69550
|
var _h = _vm.$createElement
|
|
69184
69551
|
var _c = _vm._self._c || _h
|
|
@@ -69210,7 +69577,13 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69210
69577
|
_vm.button,
|
|
69211
69578
|
false
|
|
69212
69579
|
),
|
|
69213
|
-
[
|
|
69580
|
+
[
|
|
69581
|
+
_vm._t("default", [
|
|
69582
|
+
_vm.icon
|
|
69583
|
+
? _c("es-icon", { attrs: { contents: _vm.icon } })
|
|
69584
|
+
: [_vm._v("选择")],
|
|
69585
|
+
]),
|
|
69586
|
+
],
|
|
69214
69587
|
2
|
|
69215
69588
|
)
|
|
69216
69589
|
: [
|
|
@@ -69470,7 +69843,14 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69470
69843
|
},
|
|
69471
69844
|
[
|
|
69472
69845
|
_vm._t("default", [
|
|
69473
|
-
_vm.
|
|
69846
|
+
_vm.icon
|
|
69847
|
+
? _c("es-icon", {
|
|
69848
|
+
attrs: {
|
|
69849
|
+
contents:
|
|
69850
|
+
_vm.icon,
|
|
69851
|
+
},
|
|
69852
|
+
})
|
|
69853
|
+
: [_vm._v("选择")],
|
|
69474
69854
|
]),
|
|
69475
69855
|
],
|
|
69476
69856
|
2
|
|
@@ -69565,7 +69945,14 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69565
69945
|
},
|
|
69566
69946
|
[
|
|
69567
69947
|
_vm._t("default", [
|
|
69568
|
-
_vm.
|
|
69948
|
+
_vm.icon
|
|
69949
|
+
? _c("es-icon", {
|
|
69950
|
+
attrs: {
|
|
69951
|
+
contents:
|
|
69952
|
+
_vm.icon,
|
|
69953
|
+
},
|
|
69954
|
+
})
|
|
69955
|
+
: [_vm._v("选择")],
|
|
69569
69956
|
]),
|
|
69570
69957
|
],
|
|
69571
69958
|
2
|
|
@@ -69730,11 +70117,11 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69730
70117
|
)
|
|
69731
70118
|
: _vm._e()
|
|
69732
70119
|
}
|
|
69733
|
-
var
|
|
69734
|
-
|
|
70120
|
+
var mainvue_type_template_id_ed4f9db4_staticRenderFns = []
|
|
70121
|
+
mainvue_type_template_id_ed4f9db4_render._withStripped = true
|
|
69735
70122
|
|
|
69736
70123
|
|
|
69737
|
-
// CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=
|
|
70124
|
+
// CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=ed4f9db4&
|
|
69738
70125
|
|
|
69739
70126
|
// EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
|
|
69740
70127
|
var clickoutside_ = __webpack_require__(16);
|
|
@@ -69954,6 +70341,17 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
69954
70341
|
//
|
|
69955
70342
|
//
|
|
69956
70343
|
//
|
|
70344
|
+
//
|
|
70345
|
+
//
|
|
70346
|
+
//
|
|
70347
|
+
//
|
|
70348
|
+
//
|
|
70349
|
+
//
|
|
70350
|
+
//
|
|
70351
|
+
//
|
|
70352
|
+
//
|
|
70353
|
+
//
|
|
70354
|
+
//
|
|
69957
70355
|
|
|
69958
70356
|
|
|
69959
70357
|
|
|
@@ -70060,6 +70458,7 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
70060
70458
|
default: false
|
|
70061
70459
|
},
|
|
70062
70460
|
button: Object,
|
|
70461
|
+
icon: String,
|
|
70063
70462
|
active: String,
|
|
70064
70463
|
keywords: {
|
|
70065
70464
|
type: String,
|
|
@@ -70416,8 +70815,8 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
70416
70815
|
|
|
70417
70816
|
var selector_src_main_component = normalizeComponent(
|
|
70418
70817
|
packages_selector_src_mainvue_type_script_lang_js_,
|
|
70419
|
-
|
|
70420
|
-
|
|
70818
|
+
mainvue_type_template_id_ed4f9db4_render,
|
|
70819
|
+
mainvue_type_template_id_ed4f9db4_staticRenderFns,
|
|
70421
70820
|
false,
|
|
70422
70821
|
null,
|
|
70423
70822
|
null,
|
|
@@ -70434,8 +70833,8 @@ selector_src_main.install = function (Vue) {
|
|
|
70434
70833
|
};
|
|
70435
70834
|
|
|
70436
70835
|
/* harmony default export */ var selector = (selector_src_main);
|
|
70437
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=
|
|
70438
|
-
var
|
|
70836
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=4caee95f&
|
|
70837
|
+
var mainvue_type_template_id_4caee95f_render = function () {
|
|
70439
70838
|
var _vm = this
|
|
70440
70839
|
var _h = _vm.$createElement
|
|
70441
70840
|
var _c = _vm._self._c || _h
|
|
@@ -70698,11 +71097,11 @@ var mainvue_type_template_id_e434ebf2_render = function () {
|
|
|
70698
71097
|
1
|
|
70699
71098
|
)
|
|
70700
71099
|
}
|
|
70701
|
-
var
|
|
70702
|
-
|
|
71100
|
+
var mainvue_type_template_id_4caee95f_staticRenderFns = []
|
|
71101
|
+
mainvue_type_template_id_4caee95f_render._withStripped = true
|
|
70703
71102
|
|
|
70704
71103
|
|
|
70705
|
-
// CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=
|
|
71104
|
+
// CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=4caee95f&
|
|
70706
71105
|
|
|
70707
71106
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/tree.vue?vue&type=template&id=24ad732a&
|
|
70708
71107
|
var treevue_type_template_id_24ad732a_render = function () {
|
|
@@ -71873,7 +72272,6 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
|
|
|
71873
72272
|
if (this.replace) {
|
|
71874
72273
|
return this.tabs;
|
|
71875
72274
|
} else {
|
|
71876
|
-
console.log(utils_util["a" /* default */].extend(true, tabs, this.tabs), 'this.tabs');
|
|
71877
72275
|
return utils_util["a" /* default */].extend(true, tabs, this.tabs);
|
|
71878
72276
|
}
|
|
71879
72277
|
}
|
|
@@ -72320,8 +72718,8 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
|
|
|
72320
72718
|
|
|
72321
72719
|
var selector_panel_src_main_component = normalizeComponent(
|
|
72322
72720
|
packages_selector_panel_src_mainvue_type_script_lang_js_,
|
|
72323
|
-
|
|
72324
|
-
|
|
72721
|
+
mainvue_type_template_id_4caee95f_render,
|
|
72722
|
+
mainvue_type_template_id_4caee95f_staticRenderFns,
|
|
72325
72723
|
false,
|
|
72326
72724
|
null,
|
|
72327
72725
|
null,
|
|
@@ -83011,7 +83409,7 @@ var upload_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
|
|
|
83011
83409
|
|
|
83012
83410
|
var upload_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; };
|
|
83013
83411
|
|
|
83014
|
-
var
|
|
83412
|
+
var mainvue_type_script_lang_js_props;
|
|
83015
83413
|
|
|
83016
83414
|
//
|
|
83017
83415
|
//
|
|
@@ -83226,7 +83624,7 @@ var _props;
|
|
|
83226
83624
|
default: ''
|
|
83227
83625
|
}
|
|
83228
83626
|
},
|
|
83229
|
-
props: (
|
|
83627
|
+
props: (mainvue_type_script_lang_js_props = {
|
|
83230
83628
|
prepend: [Array, Object],
|
|
83231
83629
|
append: [Array, Object],
|
|
83232
83630
|
render: Function,
|
|
@@ -83388,28 +83786,28 @@ var _props;
|
|
|
83388
83786
|
beforeRemove: Function,
|
|
83389
83787
|
onDownloads: Function,
|
|
83390
83788
|
onDownload: Function
|
|
83391
|
-
},
|
|
83789
|
+
}, mainvue_type_script_lang_js_props['onSort'] = Function, mainvue_type_script_lang_js_props.onSuccess = Function, mainvue_type_script_lang_js_props.onChange = Function, mainvue_type_script_lang_js_props.onRemove = Function, mainvue_type_script_lang_js_props.onError = Function, mainvue_type_script_lang_js_props.dangerouslyUseHTMLString = Boolean, mainvue_type_script_lang_js_props.fileCount = Number, mainvue_type_script_lang_js_props.listHeight = String, mainvue_type_script_lang_js_props.display = Boolean, mainvue_type_script_lang_js_props.resultFile = {
|
|
83392
83790
|
type: Boolean,
|
|
83393
83791
|
default: true
|
|
83394
|
-
},
|
|
83792
|
+
}, mainvue_type_script_lang_js_props.properties = {
|
|
83395
83793
|
type: String,
|
|
83396
83794
|
default: function _default() {
|
|
83397
83795
|
return api["B" /* getAdjunctProperties */];
|
|
83398
83796
|
}
|
|
83399
|
-
},
|
|
83797
|
+
}, mainvue_type_script_lang_js_props.icons = {
|
|
83400
83798
|
type: Object,
|
|
83401
83799
|
default: function _default() {
|
|
83402
83800
|
return {};
|
|
83403
83801
|
}
|
|
83404
|
-
},
|
|
83802
|
+
}, mainvue_type_script_lang_js_props.picture = {
|
|
83405
83803
|
type: Object,
|
|
83406
83804
|
default: function _default() {
|
|
83407
83805
|
return {};
|
|
83408
83806
|
}
|
|
83409
|
-
},
|
|
83807
|
+
}, mainvue_type_script_lang_js_props.previewScale = {
|
|
83410
83808
|
type: Boolean,
|
|
83411
83809
|
default: true
|
|
83412
|
-
},
|
|
83810
|
+
}, mainvue_type_script_lang_js_props.useCaseCode = String, mainvue_type_script_lang_js_props),
|
|
83413
83811
|
data: function data() {
|
|
83414
83812
|
return {
|
|
83415
83813
|
uploadUrl: this.action,
|
|
@@ -84643,7 +85041,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
84643
85041
|
}
|
|
84644
85042
|
|
|
84645
85043
|
/* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
|
|
84646
|
-
version: '0.6.
|
|
85044
|
+
version: '0.6.41',
|
|
84647
85045
|
install: install,
|
|
84648
85046
|
Button: packages_button,
|
|
84649
85047
|
ButtonGroup: button_group,
|