|
|
@ -483,6 +483,7 @@ export default { |
|
|
|
selectedRowKeys: [], |
|
|
|
selectedRowKeys: [], |
|
|
|
// 加载数据方法 必须为 Promise 对象 |
|
|
|
// 加载数据方法 必须为 Promise 对象 |
|
|
|
loadData: (param) => { |
|
|
|
loadData: (param) => { |
|
|
|
|
|
|
|
console.log(param) |
|
|
|
const data = { ...param, ...this.queryParam } |
|
|
|
const data = { ...param, ...this.queryParam } |
|
|
|
const orderEnum = { |
|
|
|
const orderEnum = { |
|
|
|
ascend: 'asc', |
|
|
|
ascend: 'asc', |
|
|
@ -740,7 +741,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
refreshParentMethod() { |
|
|
|
refreshParentMethod() { |
|
|
|
this.handleRefresh(true) |
|
|
|
this.handleRefresh(false) |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 编辑记录 |
|
|
|
// 编辑记录 |
|
|
|
async handleEdit(id) { |
|
|
|
async handleEdit(id) { |
|
|
@ -1028,6 +1029,7 @@ export default { |
|
|
|
* @param Boolean bool 强制刷新到第一页 |
|
|
|
* @param Boolean bool 强制刷新到第一页 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
handleRefresh(bool = false) { |
|
|
|
handleRefresh(bool = false) { |
|
|
|
|
|
|
|
console.log(bool) |
|
|
|
this.selectedRowKeys = [] |
|
|
|
this.selectedRowKeys = [] |
|
|
|
this.$refs.table.refresh(bool) |
|
|
|
this.$refs.table.refresh(bool) |
|
|
|
}, |
|
|
|
}, |
|
|
|