|
@@ -34,7 +34,7 @@
|
|
|
fit
|
|
|
highlight-current-row
|
|
|
>
|
|
|
- <el-table-column label="设备SN" sortable="custom">
|
|
|
+ <el-table-column label="设备SN">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.sn || '-' }}
|
|
|
</template>
|
|
@@ -72,7 +72,7 @@
|
|
|
|
|
|
<el-table-column align="center" label="入库时间">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.statusTitle || '-' }}</span>
|
|
|
+ <span>{{ scope.row.instorage_time || '-' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -102,17 +102,17 @@ export default {
|
|
|
index: 1,
|
|
|
length: 20,
|
|
|
importance: undefined,
|
|
|
- batchNum: '',/**批次Id */
|
|
|
imei: '',
|
|
|
status: null,
|
|
|
sn: '',
|
|
|
- sort: ''
|
|
|
+ sort: '',
|
|
|
+ operateID: null
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- if (this.$route.query.batchId !== undefined) {
|
|
|
- this.listQuery.batchNum = this.$route.query.batchId
|
|
|
+ if (this.$route.query.operateId !== undefined) {
|
|
|
+ this.listQuery.operateID = this.$route.query.operateId
|
|
|
}
|
|
|
|
|
|
this.getDataList()
|
|
@@ -129,11 +129,11 @@ export default {
|
|
|
index: 1,
|
|
|
length: 20,
|
|
|
importance: undefined,
|
|
|
- batchNum: this.listQuery.batchNum,/**批次Id */
|
|
|
imei: '',
|
|
|
status: null,
|
|
|
sn: '',
|
|
|
- sort: ''
|
|
|
+ sort: '',
|
|
|
+ operateID: this.listQuery.operateID
|
|
|
}
|
|
|
this.getDataList()
|
|
|
},
|