1.修复资产管理重置后无数据问题

zhairh
x_z 2 years ago
parent a386a8bf5b
commit cf2454cdfc

@ -119,6 +119,7 @@ export default {
this.filterQuery = {
code: null,
nameCode: null,
status: 2,
page: 1,
limit: 20,
};

@ -40,6 +40,17 @@
<el-table-column label="领用记录号" prop="collOrderId" width="180"></el-table-column>
<el-table-column label="养护日期" prop="createTime" width="180"></el-table-column>
<el-table-column label="养护人" prop="createUser" width="120"></el-table-column>
<el-table-column label="操作" width="180" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="print(scope.row)"
>养护
</el-button
>
</template>
</el-table-column>
</el-table>
<el-pagination
@ -201,6 +212,9 @@ export default {
this.detailTotal = 0;
})
},
print(row) {
},
},
created() {
this.getList();

Loading…
Cancel
Save