gcs-ui-lib 1.2.40 → 1.2.42
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 +30524 -30292
- package/lib/gcs-ui-lib.css +2 -3
- package/lib/gcs-ui-lib.umd.js +30524 -30292
- package/lib/gcs-ui-lib.umd.min.js +102 -102
- package/package.json +1 -1
- package/packages/AutoFillDetection/src/main.vue +1 -1
- package/packages/AutoFillService/src/components/paymentCategoryT.vue +2 -1
- package/packages/SelectTreeUnit/src/Tree/index.vue +8 -1
- package/packages/SelectTreeUnit/src/main.vue +1 -0
- package/packages/SelectTreeUnitForm/src/Tree/index.vue +5 -1
- package/packages/SelectTreeUnitForm/src/main.vue +1 -0
- package/packages/Trade/src/components/i18n.json +3337 -3337
- package/src/lang/i18n.json +1184 -1184
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
class="m-b-s"
|
|
7
7
|
:content="$l('补填规则检测')"
|
|
8
8
|
/>
|
|
9
|
-
<el-form class="label-width-8em description-b-s" :label-width="'
|
|
9
|
+
<el-form class="label-width-8em description-b-s" :label-width="'14em'">
|
|
10
10
|
<el-form-item :label="$l('数据来源')" prop="description">
|
|
11
11
|
<el-radio-group v-model="searchData.radio" @change="handleRadio">
|
|
12
12
|
<el-radio :label="'SelectEntries'">{{ $l("选择流水") }}</el-radio>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
children: 'children',
|
|
12
12
|
label: nodeName,
|
|
13
13
|
value: nodeKey,
|
|
14
|
-
disabled:
|
|
14
|
+
disabled: 'disabled',
|
|
15
15
|
}"
|
|
16
16
|
>
|
|
17
17
|
</CLSelectTree>
|
|
@@ -161,6 +161,7 @@ export default {
|
|
|
161
161
|
};
|
|
162
162
|
const data = await getPaymentCategory(params);
|
|
163
163
|
this.handlePaymentCategoryDataData(data, directions);
|
|
164
|
+
console.log(data, 'data')
|
|
164
165
|
this.treeData = data;
|
|
165
166
|
},
|
|
166
167
|
|
|
@@ -26,7 +26,10 @@
|
|
|
26
26
|
data[props.label]
|
|
27
27
|
}}
|
|
28
28
|
</span>
|
|
29
|
-
<div
|
|
29
|
+
<div
|
|
30
|
+
class="row-point"
|
|
31
|
+
v-if="showAllCheck && !single && !isList && !searchKey"
|
|
32
|
+
>
|
|
30
33
|
<el-dropdown @click.stop="() => null">
|
|
31
34
|
<span class="el-dropdown-link"> ... </span>
|
|
32
35
|
<el-dropdown-menu slot="dropdown" class="nstc-unit-tree-drop">
|
|
@@ -134,6 +137,10 @@ export default {
|
|
|
134
137
|
type: String,
|
|
135
138
|
default: "",
|
|
136
139
|
},
|
|
140
|
+
searchKey: {
|
|
141
|
+
type: String,
|
|
142
|
+
default: "",
|
|
143
|
+
},
|
|
137
144
|
},
|
|
138
145
|
data() {
|
|
139
146
|
return {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}}
|
|
34
34
|
</div>
|
|
35
35
|
<!-- {{ node.data[nodeKey] }} -->
|
|
36
|
-
<div class="row-point" v-show="multiple && !isList">
|
|
36
|
+
<div class="row-point" v-show="multiple && !isList && !searchKey">
|
|
37
37
|
<el-dropdown @click.stop="() => null">
|
|
38
38
|
<span class="el-dropdown-link"> ... </span>
|
|
39
39
|
<el-dropdown-menu slot="dropdown" class="nstc-unit-tree-drop">
|
|
@@ -132,6 +132,10 @@ export default {
|
|
|
132
132
|
type: Boolean,
|
|
133
133
|
default: false,
|
|
134
134
|
},
|
|
135
|
+
searchKey: {
|
|
136
|
+
type: String,
|
|
137
|
+
default: "",
|
|
138
|
+
},
|
|
135
139
|
// showCheckbox: {
|
|
136
140
|
// type: Boolean,
|
|
137
141
|
// default: false
|