gcs-ui-lib 1.2.41 → 1.2.43
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 +15454 -15223
- package/lib/gcs-ui-lib.css +2 -3
- package/lib/gcs-ui-lib.umd.js +15454 -15223
- package/lib/gcs-ui-lib.umd.min.js +97 -97
- package/package.json +1 -1
- package/packages/LazyBank/src/main.vue +2 -2
- 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
|
@@ -120,9 +120,9 @@ export default {
|
|
|
120
120
|
getBankData(params, false).then(res => {
|
|
121
121
|
console.log(res)
|
|
122
122
|
if (this.page.current === 1 && !originKey) {
|
|
123
|
-
this.bankList = res.list || []
|
|
123
|
+
this.bankList = res.list || res.data || []
|
|
124
124
|
} else {
|
|
125
|
-
this.bankList = this.bankList.concat(res.list);
|
|
125
|
+
this.bankList = this.bankList.concat(res.list || res.data || []);
|
|
126
126
|
}
|
|
127
127
|
this.bankList = delistToSame(this.bankList, 'bankNo');
|
|
128
128
|
this.total = res.total;
|
|
@@ -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
|