|
|
|
@ -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();
|
|
|
|
|