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
|
@@ -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].
|
|
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.
|
|
124
|
-
let size = this.
|
|
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: {
|