eoss-ui 0.6.80 → 0.6.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/eoss-ui.common.js +97 -62
- package/lib/flow.js +90 -55
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- 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/package.json +1 -1
- package/packages/flow/src/main.vue +22 -26
- package/packages/flow/src/processForm.vue +69 -38
- package/packages/flow/src/selectUser.vue +1 -0
- package/packages/flow/src/startTaskRead.vue +0 -1
- package/packages/icons/src/icon.json +1 -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/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 +450 -446
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
:opinion="value"
|
|
46
46
|
:rows="rows"
|
|
47
47
|
:placeholder="pendingItemHandleDescription"
|
|
48
|
+
:pendingItemHandleDescription="pendingItemHandleDescription"
|
|
48
49
|
:required="isOpinionRequired == 1"
|
|
49
50
|
:isBanInputOpinion="isBanInputOpinion"
|
|
50
51
|
:nodeFixedOpinionSelectList="nodeFixedOpinionSelectList"
|
|
@@ -214,7 +215,7 @@
|
|
|
214
215
|
</el-form>
|
|
215
216
|
<div
|
|
216
217
|
v-show="
|
|
217
|
-
(!endFlow || nodeInfos.length > 1) &&
|
|
218
|
+
(!endFlow || nodeInfos.length > 1 || taskOperationShiftedNodeList) &&
|
|
218
219
|
newTypeCode != 'fenyue' &&
|
|
219
220
|
!shrink
|
|
220
221
|
"
|
|
@@ -607,11 +608,11 @@
|
|
|
607
608
|
isShowNode &&
|
|
608
609
|
isNextUser
|
|
609
610
|
"
|
|
610
|
-
prop="
|
|
611
|
-
label="
|
|
611
|
+
prop="nextItemHandleDescription"
|
|
612
|
+
label="办理说明"
|
|
612
613
|
>
|
|
613
614
|
<el-input
|
|
614
|
-
placeholder="
|
|
615
|
+
placeholder="请输入办理说明"
|
|
615
616
|
type="textarea"
|
|
616
617
|
:autosize="{ minRows: 2 }"
|
|
617
618
|
v-model="nextNode.nextItemHandleDescription"
|
|
@@ -668,6 +669,7 @@
|
|
|
668
669
|
"
|
|
669
670
|
:label-position="formLabelPosition"
|
|
670
671
|
:showBtn="false"
|
|
672
|
+
:formTitle="formTitle"
|
|
671
673
|
:copy-history="freeStartFlowParams.pendedHistoryHandle"
|
|
672
674
|
:process-definition-id="freeStartFlowNextNode || nodeInfo.nextNode"
|
|
673
675
|
:opinion="value"
|
|
@@ -1161,6 +1163,7 @@ export default {
|
|
|
1161
1163
|
},
|
|
1162
1164
|
beforeSubmit: Function,
|
|
1163
1165
|
title: { type: String, default: '流程办理' },
|
|
1166
|
+
formTitle: { type: String, default: '' },
|
|
1164
1167
|
closeParent: Boolean,
|
|
1165
1168
|
param: {
|
|
1166
1169
|
type: Object,
|
|
@@ -1186,6 +1189,7 @@ export default {
|
|
|
1186
1189
|
return {
|
|
1187
1190
|
styles: {},
|
|
1188
1191
|
optionsKey: 0,
|
|
1192
|
+
taskOperationShiftedNodeList:null,
|
|
1189
1193
|
currentNodeEnableItemHandleDescription: false,
|
|
1190
1194
|
startFlowPageEmbeddedIntoStartFlowIndex: false,
|
|
1191
1195
|
pendingItemHandleDescription: '',
|
|
@@ -2571,7 +2575,6 @@ export default {
|
|
|
2571
2575
|
* @date 2022年5月25日
|
|
2572
2576
|
**/
|
|
2573
2577
|
selecNext(val, type, isDef) {
|
|
2574
|
-
console.log(val, 'valvalval');
|
|
2575
2578
|
let isNextNode = false;
|
|
2576
2579
|
if (type) {
|
|
2577
2580
|
isNextNode = this.operationList.filter((x) => x.key == val)[0]
|
|
@@ -2587,8 +2590,7 @@ export default {
|
|
|
2587
2590
|
this.selectUserList = [];
|
|
2588
2591
|
this.radioList = [];
|
|
2589
2592
|
|
|
2590
|
-
if (type
|
|
2591
|
-
console.log('不是下一步节点');
|
|
2593
|
+
if (type) {
|
|
2592
2594
|
this.isNextUser = false;
|
|
2593
2595
|
this.isShowNode = false;
|
|
2594
2596
|
this.isMainSubProcess = false;
|
|
@@ -2605,29 +2607,15 @@ export default {
|
|
|
2605
2607
|
this.nextNode.isReturnRejectNode = 0;
|
|
2606
2608
|
this.nextNode.isSerialSubmit = 0;
|
|
2607
2609
|
this.nodeInfos = [];
|
|
2608
|
-
let newOperationList = [];
|
|
2609
|
-
// this.operationList.map(x => {
|
|
2610
|
-
|
|
2611
|
-
// })
|
|
2612
2610
|
this.operationList.forEach((item) => {
|
|
2613
2611
|
if (item.key === val) {
|
|
2614
2612
|
if (!item.taskNodeList) {
|
|
2615
2613
|
this.nodeInfos = [];
|
|
2616
2614
|
} else {
|
|
2617
|
-
|
|
2618
|
-
item.taskNodeList.map((x) => {
|
|
2619
|
-
if (x.nodeName == '编号') {
|
|
2620
|
-
this.operationList.push({
|
|
2621
|
-
key: x.nodeId,
|
|
2622
|
-
value: x.nodeName,
|
|
2623
|
-
isNextNode: true
|
|
2624
|
-
});
|
|
2625
|
-
}
|
|
2626
|
-
});
|
|
2627
|
-
}
|
|
2615
|
+
this.nodeInfos = item.taskNodeList;
|
|
2628
2616
|
|
|
2629
2617
|
this.nodeInfos = item.taskNodeList.filter(
|
|
2630
|
-
(x) =>
|
|
2618
|
+
(x) =>this.taskOperationShiftedNodeList.indexOf(x.nodeId) == -1
|
|
2631
2619
|
);
|
|
2632
2620
|
}
|
|
2633
2621
|
return;
|
|
@@ -2789,6 +2777,7 @@ export default {
|
|
|
2789
2777
|
isSpecial,
|
|
2790
2778
|
canPresetRead,
|
|
2791
2779
|
isCdjxjTaskHandle,
|
|
2780
|
+
taskOperationShiftedNodeList,
|
|
2792
2781
|
taskButtonList,
|
|
2793
2782
|
simpleTips,
|
|
2794
2783
|
isCanPreAddSign
|
|
@@ -2799,6 +2788,13 @@ export default {
|
|
|
2799
2788
|
}
|
|
2800
2789
|
this.$emit('startTaskRead', res);
|
|
2801
2790
|
this.$emit('start-task-read', res);
|
|
2791
|
+
if(taskOperationShiftedNodeList && taskOperationShiftedNodeList.length>0){
|
|
2792
|
+
this.taskOperationShiftedNodeList = []
|
|
2793
|
+
taskOperationShiftedNodeList.map(x =>{
|
|
2794
|
+
this.taskOperationShiftedNodeList.push(x.nodeId)
|
|
2795
|
+
taskOperations.push({key: x.nodeId, value: x.nodeName,isNextNode: true})
|
|
2796
|
+
})
|
|
2797
|
+
}
|
|
2802
2798
|
this.pendingItemHandleDescription = pendingItemHandleDescription;
|
|
2803
2799
|
if (currentOrgSelectorParams.enableCurrentOrgConfig == 'true') {
|
|
2804
2800
|
this.currentOrgSelectorTabs =
|
|
@@ -3056,9 +3052,9 @@ export default {
|
|
|
3056
3052
|
* @date 2022年5月25日
|
|
3057
3053
|
**/
|
|
3058
3054
|
closeProcess(val, type, closeParent) {
|
|
3059
|
-
if (closeParent) {
|
|
3055
|
+
if (closeParent && !this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
3060
3056
|
this.$refs[type].handleClosed();
|
|
3061
|
-
} else {
|
|
3057
|
+
} else if(!this.startFlowPageEmbeddedIntoStartFlowIndex){
|
|
3062
3058
|
this[type] = false;
|
|
3063
3059
|
}
|
|
3064
3060
|
if (
|
|
@@ -3071,7 +3067,7 @@ export default {
|
|
|
3071
3067
|
if (
|
|
3072
3068
|
val == 'taskReadAndEnd' ||
|
|
3073
3069
|
(val == true && type != 'taskRead') ||
|
|
3074
|
-
val == 'transfer'
|
|
3070
|
+
val == 'transfer' || this.typeCode == 'read'
|
|
3075
3071
|
) {
|
|
3076
3072
|
this.flowSuccess(true);
|
|
3077
3073
|
// this.$emit('success');
|
|
@@ -13,9 +13,13 @@
|
|
|
13
13
|
label-width="100px"
|
|
14
14
|
:label-position="labelPosition"
|
|
15
15
|
>
|
|
16
|
-
<div
|
|
16
|
+
<div
|
|
17
|
+
:style="`height:${
|
|
18
|
+
showBtn ? '430px' : 'auto'
|
|
19
|
+
}; overflow-y: auto; margin-bottom: 10px`"
|
|
20
|
+
>
|
|
17
21
|
<el-form-item
|
|
18
|
-
|
|
22
|
+
v-show="showBtn"
|
|
19
23
|
prop="nodeName"
|
|
20
24
|
label="当前节点"
|
|
21
25
|
:rules="[
|
|
@@ -324,40 +328,41 @@
|
|
|
324
328
|
</el-form-item>
|
|
325
329
|
</el-form>
|
|
326
330
|
<div v-if="!showBtn" style="padding: 5px; background: #fff">
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
331
|
+
<div class="news" @click="showNews = !showNews">
|
|
332
|
+
<span class="news-item">消息通知</span>
|
|
333
|
+
<span :class="showNews ? 'show' : 'sj'"></span>
|
|
334
|
+
</div>
|
|
335
|
+
<div v-if="showNews" ref="messagebox" style="transition: 1s">
|
|
336
|
+
<el-checkbox-group v-model="nextNode.noticeType">
|
|
337
|
+
<el-checkbox
|
|
338
|
+
v-for="item of nextNode.noticeList"
|
|
339
|
+
:key="item.cciValue"
|
|
340
|
+
:label="item.cciValue"
|
|
341
|
+
:disabled="
|
|
342
|
+
readOnlyNotificationType
|
|
343
|
+
? readOnlyNotificationType.indexOf(item.cciValue) != -1
|
|
344
|
+
: false
|
|
345
|
+
"
|
|
346
|
+
>
|
|
347
|
+
{{ item.shortName }}
|
|
348
|
+
</el-checkbox>
|
|
349
|
+
</el-checkbox-group>
|
|
350
|
+
<es-input
|
|
351
|
+
style="
|
|
352
|
+
border-color: #ccc;
|
|
353
|
+
padding: 5px;
|
|
354
|
+
border-radius: 5px;
|
|
355
|
+
font-size: 13px;
|
|
356
|
+
"
|
|
357
|
+
autosize
|
|
358
|
+
v-show="showNews"
|
|
359
|
+
type="textarea"
|
|
360
|
+
v-model="nextNode.noticeInfo"
|
|
361
|
+
@change="handleChange"
|
|
362
|
+
:readonly="notificationMessageReadOnly"
|
|
363
|
+
/>
|
|
364
|
+
</div>
|
|
365
|
+
</div>
|
|
361
366
|
</div>
|
|
362
367
|
</template>
|
|
363
368
|
|
|
@@ -429,6 +434,10 @@ export default {
|
|
|
429
434
|
type: String,
|
|
430
435
|
default: 'left'
|
|
431
436
|
},
|
|
437
|
+
formTitle: {
|
|
438
|
+
type: String,
|
|
439
|
+
default: ''
|
|
440
|
+
},
|
|
432
441
|
showBtn: { type: Boolean, default: true }
|
|
433
442
|
},
|
|
434
443
|
data() {
|
|
@@ -444,6 +453,7 @@ export default {
|
|
|
444
453
|
nextOperateCheckType: 'select',
|
|
445
454
|
showNews: false, // 是否展示通知信息
|
|
446
455
|
notificationMessageReadOnly: false,
|
|
456
|
+
isChangeMessage: false,
|
|
447
457
|
readOnlyNotificationType: '',
|
|
448
458
|
show: true,
|
|
449
459
|
enableCustomLimitTimeSetting: false,
|
|
@@ -501,6 +511,7 @@ export default {
|
|
|
501
511
|
mixPresetList: [],
|
|
502
512
|
isCdjxjTaskHandle: '',
|
|
503
513
|
isShowNextUser: true,
|
|
514
|
+
oldMessage: '',
|
|
504
515
|
mixOrgIdList: [], //办理对象混选
|
|
505
516
|
nextNode: {
|
|
506
517
|
nodeName: '',
|
|
@@ -535,9 +546,18 @@ export default {
|
|
|
535
546
|
}
|
|
536
547
|
// this.getStartFlow(val);
|
|
537
548
|
},
|
|
538
|
-
opinion(val){
|
|
549
|
+
opinion(val) {
|
|
539
550
|
this.newOpinion = this.opinion;
|
|
540
551
|
},
|
|
552
|
+
formTitle: {
|
|
553
|
+
handler(val) {
|
|
554
|
+
if (!this.showBtn && !this.isChangeMessage) {
|
|
555
|
+
this.nextNode.noticeInfo = this.oldMessage.replace('{title}', val);
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
deep: true,
|
|
559
|
+
immediate: true
|
|
560
|
+
}
|
|
541
561
|
},
|
|
542
562
|
computed: {
|
|
543
563
|
types() {
|
|
@@ -561,6 +581,9 @@ export default {
|
|
|
561
581
|
}
|
|
562
582
|
},
|
|
563
583
|
methods: {
|
|
584
|
+
handleChange() {
|
|
585
|
+
this.isChangeMessage = true
|
|
586
|
+
},
|
|
564
587
|
changeCustomLimitTime(val) {
|
|
565
588
|
if (!Number(val) || val.indexOf('.') != -1 || Number(val) < 0) {
|
|
566
589
|
this.$message.warning('请输入正确的天数');
|
|
@@ -713,11 +736,19 @@ export default {
|
|
|
713
736
|
nodeId: this.nextNode.nextNode,
|
|
714
737
|
businessId: this.id
|
|
715
738
|
};
|
|
739
|
+
if (!this.showBtn) {
|
|
740
|
+
params.openMode = 'samepage';
|
|
741
|
+
}
|
|
716
742
|
util
|
|
717
743
|
.ajax({ url: getNotificationMsg, params, methods: 'post' })
|
|
718
744
|
.then((res) => {
|
|
719
745
|
if (res.status === 'success') {
|
|
720
|
-
this.
|
|
746
|
+
if (!this.showBtn) {
|
|
747
|
+
this.oldMessage = res.message;
|
|
748
|
+
this.nextNode.noticeInfo = res.message.replace('{title}', '');
|
|
749
|
+
} else {
|
|
750
|
+
this.nextNode.noticeInfo = res.message;
|
|
751
|
+
}
|
|
721
752
|
}
|
|
722
753
|
})
|
|
723
754
|
.catch((err) => {
|
|
@@ -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"]
|
|
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"]
|