n20-common-lib 3.3.2 → 3.3.3
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/package.json
CHANGED
|
@@ -10,8 +10,6 @@ const DYNAMIC_CONFIG_QUERY = {
|
|
|
10
10
|
configKeys: []
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
let backendConfigPromise
|
|
14
|
-
|
|
15
13
|
function parseConfigValue(value) {
|
|
16
14
|
if (typeof value !== 'string') return value
|
|
17
15
|
try {
|
|
@@ -51,27 +49,19 @@ function mergeConfigList(configList) {
|
|
|
51
49
|
}
|
|
52
50
|
|
|
53
51
|
async function getBackendConfig() {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
...config,
|
|
63
|
-
...(config.nstc && config.nstc.activiti ? config.nstc.activiti : {})
|
|
64
|
-
}
|
|
65
|
-
})()
|
|
52
|
+
const { data } = await axios.post(DYNAMIC_CONFIG_URL, DYNAMIC_CONFIG_QUERY, {
|
|
53
|
+
loading: false,
|
|
54
|
+
noMsg: true
|
|
55
|
+
})
|
|
56
|
+
const config = mergeConfigList(decodeConfigList(data))
|
|
57
|
+
return {
|
|
58
|
+
...config,
|
|
59
|
+
...(config.nstc && config.nstc.activiti ? config.nstc.activiti : {})
|
|
66
60
|
}
|
|
61
|
+
}
|
|
67
62
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
} catch (error) {
|
|
71
|
-
// 接口不可用时不缓存失败结果,后续组件实例仍可重新探测新配置接口。
|
|
72
|
-
backendConfigPromise = undefined
|
|
73
|
-
throw error
|
|
74
|
-
}
|
|
63
|
+
export function isApprovalRequired(value) {
|
|
64
|
+
return value === true || value === 1 || value === '1' || value === 'true'
|
|
75
65
|
}
|
|
76
66
|
|
|
77
67
|
/**
|
|
@@ -2,20 +2,24 @@
|
|
|
2
2
|
<template>
|
|
3
3
|
<div :class="prefixCls">
|
|
4
4
|
<!-- 自定义项 -->
|
|
5
|
-
<
|
|
6
|
-
v-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
5
|
+
<template v-if="taskId && showBtn">
|
|
6
|
+
<ExpandablePane v-show="shouldShowCustomization" :title="$lc('自定义项')" :default-expand="otherExpand">
|
|
7
|
+
<el-form ref="approveBtnGroup" label-position="right" :label-width="_lang === 'zh' ? '12em' : '12em'">
|
|
8
|
+
<div
|
|
9
|
+
class="p-b-lg p-t-lg p-r-lg"
|
|
10
|
+
style="max-height: 150px; overflow-y: auto; border: 1px dashed var(--border-color-base); border-radius: 5px"
|
|
11
|
+
>
|
|
12
|
+
<show-other-att-new
|
|
13
|
+
ref="showOtherAttNew"
|
|
14
|
+
:task-id="taskId"
|
|
15
|
+
:form="customizationDtos"
|
|
16
|
+
:required="true"
|
|
17
|
+
@loaded="showCustomItem = $event"
|
|
18
|
+
/>
|
|
19
|
+
</div>
|
|
20
|
+
</el-form>
|
|
21
|
+
</ExpandablePane>
|
|
22
|
+
</template>
|
|
19
23
|
|
|
20
24
|
<div class="n20-form-expandable-pane n20-approve-title">
|
|
21
25
|
<div class="n20-title flex-box flex-lr flex-v" :class="titleClass">
|
|
@@ -349,7 +353,7 @@ import ShowAppOpi from './showAppOpi.vue'
|
|
|
349
353
|
import ShowOtherAtt from './showOtherAttr.vue'
|
|
350
354
|
import ShowOtherAttNew from './showOtherAttrNew.vue'
|
|
351
355
|
import { toExaminePath } from './specialHandle'
|
|
352
|
-
import getApprovalConfig from './getApprovalConfig'
|
|
356
|
+
import getApprovalConfig, { isApprovalRequired } from './getApprovalConfig'
|
|
353
357
|
|
|
354
358
|
import getJsonc from '../../assets/getJsonc.js'
|
|
355
359
|
import { closeTagsForBackPage } from '../../plugins/CompatibleOld'
|
|
@@ -532,6 +536,10 @@ export default {
|
|
|
532
536
|
}
|
|
533
537
|
},
|
|
534
538
|
computed: {
|
|
539
|
+
// 兼容历史流程:权限标识缺失时,以任务实际返回的自定义项作为展示和提交依据
|
|
540
|
+
shouldShowCustomization() {
|
|
541
|
+
return this.authList.includes('isShowOtherAtt') || this.showCustomItem
|
|
542
|
+
},
|
|
535
543
|
messageC: {
|
|
536
544
|
get() {
|
|
537
545
|
return this.msgisSync ? this.message : this.messageIn
|
|
@@ -567,6 +575,13 @@ export default {
|
|
|
567
575
|
this.getConfiguration()
|
|
568
576
|
this.getIsShowUploadWidget()
|
|
569
577
|
},
|
|
578
|
+
activated() {
|
|
579
|
+
if (!this._canRefreshConfiguration) return
|
|
580
|
+
this.getConfiguration()
|
|
581
|
+
},
|
|
582
|
+
deactivated() {
|
|
583
|
+
this._canRefreshConfiguration = true
|
|
584
|
+
},
|
|
570
585
|
methods: {
|
|
571
586
|
// 查询选择审批人
|
|
572
587
|
async showAdvancePop() {
|
|
@@ -646,18 +661,19 @@ export default {
|
|
|
646
661
|
},
|
|
647
662
|
// 意见是否必填
|
|
648
663
|
async getConfiguration() {
|
|
664
|
+
let opinionRequired = false
|
|
649
665
|
try {
|
|
650
|
-
const
|
|
651
|
-
|
|
666
|
+
const approvalConfig = await getApprovalConfig()
|
|
667
|
+
opinionRequired = approvalConfig.opinionRequired
|
|
668
|
+
const { showApproveTo } = approvalConfig
|
|
652
669
|
this.showApproveTo = showApproveTo ?? true
|
|
653
670
|
} catch (error) {
|
|
654
|
-
|
|
655
|
-
} finally {
|
|
656
|
-
// 工作流节点配置优先于全局审批意见必填配置。
|
|
657
|
-
if (this.$route.query.remarkIsMust !== undefined) {
|
|
658
|
-
this.requiredC = this.$route.query.remarkIsMust === '1'
|
|
659
|
-
}
|
|
671
|
+
// 配置接口与 JSONC 均不可用时沿用组件默认值。
|
|
660
672
|
}
|
|
673
|
+
// 业务属性、全局配置、工作流节点配置任一开启时,审批意见均为必填。
|
|
674
|
+
this.requiredC = Boolean(
|
|
675
|
+
this.required || isApprovalRequired(opinionRequired) || this.$route.query.remarkIsMust === '1'
|
|
676
|
+
)
|
|
661
677
|
},
|
|
662
678
|
getTodoList() {
|
|
663
679
|
return new Promise((resolve, reject) => {
|
|
@@ -789,7 +805,7 @@ export default {
|
|
|
789
805
|
getParam() {
|
|
790
806
|
let { typeCode, taskId, groupNo, isAgentcy, isCheck } = this.$route.query
|
|
791
807
|
let customizationDtos
|
|
792
|
-
if (this.
|
|
808
|
+
if (this.shouldShowCustomization) {
|
|
793
809
|
customizationDtos = this.$refs['showOtherAttNew']?.getOtherAttData()
|
|
794
810
|
}
|
|
795
811
|
return [
|
|
@@ -2,20 +2,24 @@
|
|
|
2
2
|
<template>
|
|
3
3
|
<div :class="prefixCls">
|
|
4
4
|
<!-- 自定义项 -->
|
|
5
|
-
<
|
|
6
|
-
v-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
5
|
+
<template v-if="taskId && showBtn">
|
|
6
|
+
<ExpandablePane v-show="shouldShowCustomization" :title="$lc('自定义项')" :default-expand="false">
|
|
7
|
+
<el-form ref="approveBtnGroup" label-position="right" :label-width="_lang === 'zh' ? '12em' : '12em'">
|
|
8
|
+
<div
|
|
9
|
+
class="p-b-lg p-t-lg p-r-lg"
|
|
10
|
+
style="max-height: 150px; overflow-y: auto; border: 1px dashed var(--border-color-base); border-radius: 5px"
|
|
11
|
+
>
|
|
12
|
+
<show-other-att-new
|
|
13
|
+
ref="showOtherAttNew"
|
|
14
|
+
:task-id="taskId"
|
|
15
|
+
:form="customizationDtos"
|
|
16
|
+
:required="true"
|
|
17
|
+
@loaded="showCustomItem = $event"
|
|
18
|
+
/>
|
|
19
|
+
</div>
|
|
20
|
+
</el-form>
|
|
21
|
+
</ExpandablePane>
|
|
22
|
+
</template>
|
|
19
23
|
<!-- <div class="n20-form-expandable-pane">
|
|
20
24
|
<div class="n20-title flex-box flex-lr flex-v" :class="titleClass">
|
|
21
25
|
<span class="n20-tips flex-item">
|
|
@@ -326,6 +330,7 @@
|
|
|
326
330
|
<script>
|
|
327
331
|
import selectSpr from './selectSpr.vue'
|
|
328
332
|
import getJsonc from '../../assets/getJsonc.js'
|
|
333
|
+
import getApprovalConfig, { isApprovalRequired } from './getApprovalConfig'
|
|
329
334
|
import { closeTagsForBackPage } from '../../plugins/CompatibleOld'
|
|
330
335
|
import axios from '../../utils/axios'
|
|
331
336
|
import { $lc } from '../../utils/i18n/index'
|
|
@@ -507,6 +512,10 @@ export default {
|
|
|
507
512
|
}
|
|
508
513
|
},
|
|
509
514
|
computed: {
|
|
515
|
+
// 兼容历史流程:权限标识缺失时,以任务实际返回的自定义项作为展示和提交依据
|
|
516
|
+
shouldShowCustomization() {
|
|
517
|
+
return this.authList.includes('isShowOtherAtt') || this.showCustomItem
|
|
518
|
+
},
|
|
510
519
|
messageC: {
|
|
511
520
|
get() {
|
|
512
521
|
return this.msgisSync ? this.message : this.messageIn
|
|
@@ -539,9 +548,16 @@ export default {
|
|
|
539
548
|
this.getShowApprovalTo()
|
|
540
549
|
this.getHasQueryAppOpiAndUser()
|
|
541
550
|
this.nextApproval && this.getTodoList()
|
|
542
|
-
|
|
551
|
+
this.getConfiguration()
|
|
543
552
|
this.getIsShowUploadWidget()
|
|
544
553
|
},
|
|
554
|
+
activated() {
|
|
555
|
+
if (!this._canRefreshConfiguration) return
|
|
556
|
+
this.getConfiguration()
|
|
557
|
+
},
|
|
558
|
+
deactivated() {
|
|
559
|
+
this._canRefreshConfiguration = true
|
|
560
|
+
},
|
|
545
561
|
methods: {
|
|
546
562
|
// 查询选择审批人
|
|
547
563
|
async showAdvancePop() {
|
|
@@ -576,22 +592,18 @@ export default {
|
|
|
576
592
|
console.log(code, data)
|
|
577
593
|
},
|
|
578
594
|
// 意见是否必填
|
|
579
|
-
getConfiguration() {
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
if (this.$route.query.remarkIsMust !== undefined) {
|
|
592
|
-
this.requiredC = this.$route.query.remarkIsMust === '1'
|
|
593
|
-
}
|
|
594
|
-
})
|
|
595
|
+
async getConfiguration() {
|
|
596
|
+
let opinionRequired = false
|
|
597
|
+
try {
|
|
598
|
+
const approvalConfig = await getApprovalConfig()
|
|
599
|
+
opinionRequired = approvalConfig.opinionRequired
|
|
600
|
+
} catch (error) {
|
|
601
|
+
// 配置接口与 JSONC 均不可用时沿用组件默认值。
|
|
602
|
+
}
|
|
603
|
+
// 业务属性、全局配置、工作流节点配置任一开启时,审批意见均为必填。
|
|
604
|
+
this.requiredC = Boolean(
|
|
605
|
+
this.required || isApprovalRequired(opinionRequired) || this.$route.query.remarkIsMust === '1'
|
|
606
|
+
)
|
|
595
607
|
},
|
|
596
608
|
getTodoList() {
|
|
597
609
|
return new Promise((resolve, reject) => {
|
|
@@ -721,7 +733,7 @@ export default {
|
|
|
721
733
|
getParam() {
|
|
722
734
|
let { typeCode, taskId, groupNo, isAgentcy, isCheck } = this.$route.query
|
|
723
735
|
let customizationDtos
|
|
724
|
-
if (this.
|
|
736
|
+
if (this.shouldShowCustomization) {
|
|
725
737
|
customizationDtos = this.$refs['showOtherAttNew']?.getOtherAttData()
|
|
726
738
|
}
|
|
727
739
|
return [
|
|
@@ -143,22 +143,30 @@ export default {
|
|
|
143
143
|
if (data.length) {
|
|
144
144
|
this.otherAttData = data
|
|
145
145
|
}
|
|
146
|
+
this.$emit('loaded', this.otherAttData.length > 0)
|
|
146
147
|
if (this.taskId) {
|
|
147
|
-
axios
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
148
|
+
axios
|
|
149
|
+
.post(`/bems/admin/customization/${this.taskId}`, null, { loading: false })
|
|
150
|
+
.then(({ data }) => {
|
|
151
|
+
if (data && data.length) {
|
|
152
|
+
this.otherAttData =
|
|
153
|
+
data?.map((item) => {
|
|
154
|
+
if (['32'].includes(item.cfgType)) {
|
|
155
|
+
item.checkList = item.checkList ? item.checkList : []
|
|
156
|
+
}
|
|
157
|
+
if (['31'].includes(item.cfgType)) {
|
|
158
|
+
item.selectList = item.selectList ? item.selectList : []
|
|
159
|
+
}
|
|
160
|
+
this.setDefaultValue(item)
|
|
161
|
+
return item
|
|
162
|
+
}) || []
|
|
163
|
+
}
|
|
164
|
+
this.$emit('loaded', this.otherAttData.length > 0)
|
|
165
|
+
})
|
|
166
|
+
.catch(() => {
|
|
167
|
+
// 接口不可用时保留传入数据和原权限标识逻辑,不阻断普通审批
|
|
168
|
+
this.$emit('loaded', this.otherAttData.length > 0)
|
|
169
|
+
})
|
|
162
170
|
}
|
|
163
171
|
},
|
|
164
172
|
changeFn(val, item) {
|