gcs-ui-lib 1.2.42 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gcs-ui-lib",
3
- "version": "1.2.42",
3
+ "version": "1.2.43",
4
4
  "private": false,
5
5
  "main": "./lib/gcs-ui-lib.common.js",
6
6
  "scripts": {
@@ -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;