gcs-ui-lib 1.2.32 → 1.2.33
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/gcs-ui-lib.common.js +317 -533
- package/lib/gcs-ui-lib.css +3 -2
- package/lib/gcs-ui-lib.umd.js +317 -533
- package/lib/gcs-ui-lib.umd.min.js +16 -16
- package/package.json +1 -1
- package/packages/AutoFillService/src/main.vue +6 -1
- package/src/utils/exportPageSnapshot.js +728 -728
package/package.json
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
:emptyList="emptyList"
|
|
33
33
|
:filedList="filedList"
|
|
34
34
|
:slot-list="slotList"
|
|
35
|
+
:disabled="disabled"
|
|
35
36
|
>
|
|
36
37
|
<template
|
|
37
38
|
v-for="(slotName, index) in slotList"
|
|
@@ -188,6 +189,9 @@ export default {
|
|
|
188
189
|
? this.$l("修改补填规则")
|
|
189
190
|
: this.$l("新增补填规则");
|
|
190
191
|
},
|
|
192
|
+
disabled(){
|
|
193
|
+
return ['TRANSFER', 'FUND_TRANSFER'].includes(this.form.usedBusiness) && this.form.initFlag == 1 ;
|
|
194
|
+
}
|
|
191
195
|
},
|
|
192
196
|
async created() {
|
|
193
197
|
this.matchingSetting();
|
|
@@ -362,7 +366,8 @@ export default {
|
|
|
362
366
|
let _this = this;
|
|
363
367
|
function flatData(node) {
|
|
364
368
|
//校验匹配规则的每个条件组内的条件不能为空。
|
|
365
|
-
|
|
369
|
+
|
|
370
|
+
if (!node?.matchingRules?.length && !_this.disabled) {
|
|
366
371
|
_this.$message.warning(
|
|
367
372
|
_this.$l("条件分组内的条件不能为空,请添加条件")
|
|
368
373
|
);
|