|
@@ -240,12 +240,14 @@ export default {
|
|
|
this.page.pageNum = 1;
|
|
|
|
|
|
this.page.pageSize = 10;
|
|
|
- this.$refs.purchaseTable.$refs.superTable.clearSelection();
|
|
|
+ this.$refs.purchaseTable.$refs.superTable &&
|
|
|
+ this.$refs.purchaseTable.$refs.superTable.clearSelection();
|
|
|
|
|
|
for (const key in this.tabTableDatas) {
|
|
|
this.tabTableDatas[key] = [];
|
|
|
}
|
|
|
- this.$refs.puOrderItemList[0].$refs.superTable.clearSelection();
|
|
|
+ this.$refs.puOrderItemList[0].$refs.superTable &&
|
|
|
+ this.$refs.puOrderItemList[0].$refs.superTable.clearSelection();
|
|
|
|
|
|
// this.checkedList = [];
|
|
|
|
|
@@ -799,7 +801,7 @@ export default {
|
|
|
@pagination="fetchList(params, page)"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
>
|
|
|
- <ux-table-column fixed="right" title="操作" width="120">
|
|
|
+ <ux-table-column fixed="right" title="操作" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
v-if="judgeIsOption('revise', scope.row)"
|