t20-common-lib 0.12.19 → 0.12.21
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
|
@@ -16,7 +16,16 @@
|
|
|
16
16
|
:key="`display-${displayOption[valueKey]}`"
|
|
17
17
|
:label="displayOption.branchBankName"
|
|
18
18
|
:value="displayOption[valueKey]"
|
|
19
|
-
|
|
19
|
+
>
|
|
20
|
+
<slot name="option" :item="displayOption">
|
|
21
|
+
<div class="flex-column flex-c" style="height: 100%">
|
|
22
|
+
<div style="line-height: 20px; font-weight: bold">
|
|
23
|
+
{{ displayOption.branchBankName }}
|
|
24
|
+
</div>
|
|
25
|
+
<div style="line-height: 20px">{{ displayOption.cnapsNo || displayOption[valueKey] }}</div>
|
|
26
|
+
</div>
|
|
27
|
+
</slot>
|
|
28
|
+
</el-option>
|
|
20
29
|
<el-option
|
|
21
30
|
v-for="item in branchBankList"
|
|
22
31
|
:key="item.cnapsNo"
|
|
@@ -164,7 +173,7 @@ export default {
|
|
|
164
173
|
const params = {
|
|
165
174
|
"page.size": this.page.size,
|
|
166
175
|
"page.current": this.page.current,
|
|
167
|
-
|
|
176
|
+
searchKey: this.page.key,
|
|
168
177
|
isDomestic: 1,
|
|
169
178
|
};
|
|
170
179
|
|