eoss-ui 0.6.83 → 0.6.85
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 +105 -93
- package/lib/button.js +105 -93
- package/lib/calogin.js +105 -93
- package/lib/checkbox-group.js +105 -93
- package/lib/data-table-form.js +105 -93
- package/lib/data-table.js +105 -93
- package/lib/date-picker.js +105 -93
- package/lib/dialog.js +105 -93
- package/lib/eoss-ui.common.js +540 -460
- package/lib/flow-group.js +112 -95
- package/lib/flow-list.js +105 -93
- package/lib/flow.js +309 -151
- package/lib/form.js +216 -264
- package/lib/handle-user.js +105 -93
- package/lib/handler.js +105 -93
- package/lib/icon.js +105 -93
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- package/lib/input-number.js +105 -93
- package/lib/input.js +105 -93
- package/lib/login.js +112 -97
- package/lib/main.js +105 -93
- package/lib/nav.js +105 -93
- package/lib/page.js +105 -93
- package/lib/pagination.js +105 -93
- package/lib/player.js +105 -93
- package/lib/qr-code.js +105 -93
- package/lib/radio-group.js +105 -93
- package/lib/retrial-auth.js +105 -93
- package/lib/select-ganged.js +105 -93
- package/lib/select.js +105 -93
- package/lib/selector-panel.js +105 -93
- package/lib/selector.js +123 -99
- package/lib/sizer.js +105 -93
- package/lib/steps.js +105 -93
- package/lib/switch.js +105 -93
- package/lib/table-form.js +164 -190
- package/lib/tabs.js +105 -93
- 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/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 +105 -93
- package/lib/tree-group.js +105 -93
- package/lib/tree.js +105 -93
- package/lib/upload.js +105 -93
- package/lib/utils/util.js +105 -93
- package/lib/wujie.js +105 -93
- package/lib/wxlogin.js +105 -93
- package/package.json +1 -1
- package/packages/flow/src/component/taskUnionExamine.vue +18 -6
- package/packages/flow/src/main.vue +79 -24
- package/packages/flow/src/selectUser.vue +22 -8
- package/packages/flow/src/startTaskRead.vue +7 -0
- package/packages/flow/src/supervise.vue +5 -2
- package/packages/flow-group/src/main.vue +4 -0
- package/packages/form/src/main.vue +84 -72
- package/packages/form/src/table.vue +42 -36
- package/packages/icons/src/icon.json +1 -1
- package/packages/login/src/main.vue +5 -8
- package/packages/selector/src/main.vue +20 -4
- 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/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/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/icon.scss +12 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +141 -129
|
@@ -503,18 +503,20 @@
|
|
|
503
503
|
<es-date-picker
|
|
504
504
|
v-else-if="
|
|
505
505
|
item.date ||
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
506
|
+
[
|
|
507
|
+
'date',
|
|
508
|
+
'year',
|
|
509
|
+
'month',
|
|
510
|
+
'date',
|
|
511
|
+
'dates',
|
|
512
|
+
'week',
|
|
513
|
+
'datetime',
|
|
514
|
+
'datetimerange',
|
|
515
|
+
'daterange',
|
|
516
|
+
'monthrange',
|
|
517
|
+
'quarter',
|
|
518
|
+
'halfyear'
|
|
519
|
+
].includes(item.type)
|
|
518
520
|
"
|
|
519
521
|
v-bind="
|
|
520
522
|
handleExclAttribute({
|
|
@@ -914,18 +916,20 @@
|
|
|
914
916
|
<es-date-picker
|
|
915
917
|
v-else-if="
|
|
916
918
|
inline.date ||
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
919
|
+
[
|
|
920
|
+
'date',
|
|
921
|
+
'year',
|
|
922
|
+
'month',
|
|
923
|
+
'date',
|
|
924
|
+
'dates',
|
|
925
|
+
'week',
|
|
926
|
+
'datetime',
|
|
927
|
+
'datetimerange',
|
|
928
|
+
'daterange',
|
|
929
|
+
'monthrange',
|
|
930
|
+
'quarter',
|
|
931
|
+
'halfyear'
|
|
932
|
+
].includes(inline.type)
|
|
929
933
|
"
|
|
930
934
|
v-bind="
|
|
931
935
|
handleExclAttribute({
|
|
@@ -1190,18 +1194,20 @@
|
|
|
1190
1194
|
<es-date-picker
|
|
1191
1195
|
v-else-if="
|
|
1192
1196
|
item.inline.date ||
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1197
|
+
[
|
|
1198
|
+
'date',
|
|
1199
|
+
'year',
|
|
1200
|
+
'month',
|
|
1201
|
+
'date',
|
|
1202
|
+
'dates',
|
|
1203
|
+
'week',
|
|
1204
|
+
'datetime',
|
|
1205
|
+
'datetimerange',
|
|
1206
|
+
'daterange',
|
|
1207
|
+
'monthrange',
|
|
1208
|
+
'quarter',
|
|
1209
|
+
'halfyear'
|
|
1210
|
+
].includes(item.inline.type)
|
|
1205
1211
|
"
|
|
1206
1212
|
v-bind="
|
|
1207
1213
|
handleExclAttribute({
|
|
@@ -1592,18 +1598,20 @@
|
|
|
1592
1598
|
<es-date-picker
|
|
1593
1599
|
v-else-if="
|
|
1594
1600
|
item.date ||
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1601
|
+
[
|
|
1602
|
+
'date',
|
|
1603
|
+
'year',
|
|
1604
|
+
'month',
|
|
1605
|
+
'date',
|
|
1606
|
+
'dates',
|
|
1607
|
+
'week',
|
|
1608
|
+
'datetime',
|
|
1609
|
+
'datetimerange',
|
|
1610
|
+
'daterange',
|
|
1611
|
+
'monthrange',
|
|
1612
|
+
'quarter',
|
|
1613
|
+
'halfyear'
|
|
1614
|
+
].includes(item.type)
|
|
1607
1615
|
"
|
|
1608
1616
|
v-bind="
|
|
1609
1617
|
handleExclAttribute({ data: item, attrs: ['value'] })
|
|
@@ -1962,18 +1970,20 @@
|
|
|
1962
1970
|
<es-date-picker
|
|
1963
1971
|
v-else-if="
|
|
1964
1972
|
inline.date ||
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1973
|
+
[
|
|
1974
|
+
'date',
|
|
1975
|
+
'year',
|
|
1976
|
+
'month',
|
|
1977
|
+
'date',
|
|
1978
|
+
'dates',
|
|
1979
|
+
'week',
|
|
1980
|
+
'datetime',
|
|
1981
|
+
'datetimerange',
|
|
1982
|
+
'daterange',
|
|
1983
|
+
'monthrange',
|
|
1984
|
+
'quarter',
|
|
1985
|
+
'halfyear'
|
|
1986
|
+
].includes(item.type)
|
|
1977
1987
|
"
|
|
1978
1988
|
v-bind="
|
|
1979
1989
|
handleExclAttribute({
|
|
@@ -2228,18 +2238,20 @@
|
|
|
2228
2238
|
<es-date-picker
|
|
2229
2239
|
v-else-if="
|
|
2230
2240
|
item.inline.date ||
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2241
|
+
[
|
|
2242
|
+
'date',
|
|
2243
|
+
'year',
|
|
2244
|
+
'month',
|
|
2245
|
+
'date',
|
|
2246
|
+
'dates',
|
|
2247
|
+
'week',
|
|
2248
|
+
'datetime',
|
|
2249
|
+
'datetimerange',
|
|
2250
|
+
'daterange',
|
|
2251
|
+
'monthrange',
|
|
2252
|
+
'quarter',
|
|
2253
|
+
'halfyear'
|
|
2254
|
+
].includes(item.inline.type)
|
|
2243
2255
|
"
|
|
2244
2256
|
v-bind="
|
|
2245
2257
|
handleExclAttribute({
|
|
@@ -352,18 +352,20 @@
|
|
|
352
352
|
<es-date-picker
|
|
353
353
|
v-else-if="
|
|
354
354
|
item.date ||
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
355
|
+
[
|
|
356
|
+
'date',
|
|
357
|
+
'year',
|
|
358
|
+
'month',
|
|
359
|
+
'date',
|
|
360
|
+
'dates',
|
|
361
|
+
'week',
|
|
362
|
+
'datetime',
|
|
363
|
+
'datetimerange',
|
|
364
|
+
'daterange',
|
|
365
|
+
'monthrange',
|
|
366
|
+
'quarter',
|
|
367
|
+
'halfyear'
|
|
368
|
+
].includes(item.type)
|
|
367
369
|
"
|
|
368
370
|
v-bind="
|
|
369
371
|
handleExclAttribute({
|
|
@@ -681,18 +683,20 @@
|
|
|
681
683
|
<es-date-picker
|
|
682
684
|
v-else-if="
|
|
683
685
|
inline.date ||
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
686
|
+
[
|
|
687
|
+
'date',
|
|
688
|
+
'year',
|
|
689
|
+
'month',
|
|
690
|
+
'date',
|
|
691
|
+
'dates',
|
|
692
|
+
'week',
|
|
693
|
+
'datetime',
|
|
694
|
+
'datetimerange',
|
|
695
|
+
'daterange',
|
|
696
|
+
'monthrange',
|
|
697
|
+
'quarter',
|
|
698
|
+
'halfyear'
|
|
699
|
+
].includes(inline.type)
|
|
696
700
|
"
|
|
697
701
|
v-bind="
|
|
698
702
|
handleExclAttribute({
|
|
@@ -945,18 +949,20 @@
|
|
|
945
949
|
<es-date-picker
|
|
946
950
|
v-else-if="
|
|
947
951
|
item.inline.date ||
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
952
|
+
[
|
|
953
|
+
'date',
|
|
954
|
+
'year',
|
|
955
|
+
'month',
|
|
956
|
+
'date',
|
|
957
|
+
'dates',
|
|
958
|
+
'week',
|
|
959
|
+
'datetime',
|
|
960
|
+
'datetimerange',
|
|
961
|
+
'daterange',
|
|
962
|
+
'monthrange',
|
|
963
|
+
'quarter',
|
|
964
|
+
'halfyear'
|
|
965
|
+
].includes(item.inline.type)
|
|
960
966
|
"
|
|
961
967
|
v-bind="item.inline"
|
|
962
968
|
v-model="models[item.inline.name]"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
["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","HarmonyOs","juqian"]
|
|
1
|
+
["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","HarmonyOs","juqian","shendusikao","fensizengchang","daimakuai"]
|
|
@@ -1392,14 +1392,11 @@ export default {
|
|
|
1392
1392
|
if (res.subsystemExtend.login_url) {
|
|
1393
1393
|
this.actionUrl = res.subsystemExtend.login_url;
|
|
1394
1394
|
}
|
|
1395
|
-
if (
|
|
1396
|
-
res.subsystemExtend.loginModel
|
|
1397
|
-
|
|
1398
|
-
) {
|
|
1399
|
-
this.loginModel =
|
|
1400
|
-
(res.firstLoginModel || this.firstLoginModel) && !isLogined
|
|
1401
|
-
? res.firstLoginModel || this.firstLoginModel
|
|
1402
|
-
: res.subsystemExtend.loginModel;
|
|
1395
|
+
if (res.subsystemExtend.loginModel) {
|
|
1396
|
+
this.loginModel = res.subsystemExtend.loginModel;
|
|
1397
|
+
}
|
|
1398
|
+
if (res.subsystemExtend.firstLoginModel && !isLogined) {
|
|
1399
|
+
this.loginModel = res.subsystemExtend.firstLoginModel;
|
|
1403
1400
|
}
|
|
1404
1401
|
if (res.subsystemExtend.caModel) {
|
|
1405
1402
|
this.caLoginModel = res.subsystemExtend.caModel;
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
<el-tag
|
|
59
59
|
v-for="(item, index) in selected"
|
|
60
60
|
:key="getValueKey(item)"
|
|
61
|
-
:closable="
|
|
61
|
+
:closable="
|
|
62
|
+
!selectorDisabled && !readonly && selected.length > min
|
|
63
|
+
"
|
|
62
64
|
type="info"
|
|
63
65
|
disable-transitions
|
|
64
66
|
@close="deleteTag($event, item, index)"
|
|
@@ -355,6 +357,14 @@ export default {
|
|
|
355
357
|
inputHeight: {
|
|
356
358
|
type: Number,
|
|
357
359
|
default: 40
|
|
360
|
+
},
|
|
361
|
+
min: {
|
|
362
|
+
type: Number,
|
|
363
|
+
default: 0
|
|
364
|
+
},
|
|
365
|
+
select: {
|
|
366
|
+
type: Boolean,
|
|
367
|
+
default: true
|
|
358
368
|
}
|
|
359
369
|
},
|
|
360
370
|
data() {
|
|
@@ -522,12 +532,18 @@ export default {
|
|
|
522
532
|
return util.isObject(obj) ? obj[this.valueKey] : obj;
|
|
523
533
|
},
|
|
524
534
|
toggleMenu() {
|
|
525
|
-
if (
|
|
535
|
+
if (
|
|
536
|
+
!this.selectorDisabled &&
|
|
537
|
+
!this.readonly &&
|
|
538
|
+
!this.filterable &&
|
|
539
|
+
this.select
|
|
540
|
+
) {
|
|
526
541
|
this.visible = true;
|
|
527
542
|
}
|
|
528
543
|
},
|
|
529
544
|
openDialog() {
|
|
530
|
-
|
|
545
|
+
|
|
546
|
+
if (!this.selectorDisabled && !this.readonly && this.select) {
|
|
531
547
|
this.visible = true;
|
|
532
548
|
}
|
|
533
549
|
},
|
|
@@ -669,7 +685,7 @@ export default {
|
|
|
669
685
|
event;
|
|
670
686
|
item;
|
|
671
687
|
index = index === undefined ? 0 : index;
|
|
672
|
-
this.selected.splice(index, 1);
|
|
688
|
+
this.selected.length > this.min && this.selected.splice(index, 1);
|
|
673
689
|
},
|
|
674
690
|
resetInputHeight() {
|
|
675
691
|
if (this.collapseTags) return;
|