|
@@ -173,6 +173,7 @@ export default {
|
173
|
173
|
page: 1,
|
174
|
174
|
pagesize: 10
|
175
|
175
|
},
|
|
176
|
+ currentItem: {},
|
176
|
177
|
}
|
177
|
178
|
},
|
178
|
179
|
mounted () {
|
|
@@ -242,7 +243,7 @@ export default {
|
242
|
243
|
this.dialogVisible = false
|
243
|
244
|
this.getKeyList({
|
244
|
245
|
...this.postData,
|
245
|
|
- caseid: this.CaseId,
|
|
246
|
+ caseid: this.currentItem.CaseId,
|
246
|
247
|
}).then((res) => {
|
247
|
248
|
// console.log(JSON.stringify(res))
|
248
|
249
|
this.dialogTotal = res.pagenum
|
|
@@ -291,7 +292,7 @@ export default {
|
291
|
292
|
this.postData.page = val
|
292
|
293
|
this.getKeyList({
|
293
|
294
|
...this.postData,
|
294
|
|
- caseid: this.CaseId,
|
|
295
|
+ caseid: this.currentItem.CaseId,
|
295
|
296
|
}).then((res) => {
|
296
|
297
|
// console.log(JSON.stringify(res))
|
297
|
298
|
this.dialogTotal = res.pagenum
|