n20-common-lib 2.4.71 → 2.4.73

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": "n20-common-lib",
3
- "version": "2.4.71",
3
+ "version": "2.4.73",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -554,7 +554,7 @@ export default {
554
554
  MultipleSUccessFn(response, file, fileList, row) {
555
555
  if (fileList.length > 1) {
556
556
  let deepRow = cloneDeep(row)
557
- if (!this.tableData[0].beid) {
557
+ if (!this.tableData[0][this.keys.url]) {
558
558
  this.tableData.shift()
559
559
  }
560
560
  setTimeout(() => {
@@ -120,8 +120,8 @@ export default {
120
120
  },
121
121
  computed: {
122
122
  max() {
123
- let total = this.pageObjC[this.pageKey.total]
124
- let size = this.pageObjC[this.pageKey.size]
123
+ let total = this.pageObj[this.pageKey.total]
124
+ let size = this.pageObj[this.pageKey.size]
125
125
  return Math.ceil(total / size) || 1
126
126
  },
127
127
  toNo: {