diff --git a/pages/modules/SequenceTable.vue b/pages/modules/SequenceTable.vue
index 85cb52f..f0b9019 100644
--- a/pages/modules/SequenceTable.vue
+++ b/pages/modules/SequenceTable.vue
@@ -34,7 +34,7 @@
-
+
| {{e.workshop_id}} |
{{e.type}} |
{{e.order_id}} |
@@ -103,6 +103,9 @@
let res = await hrBcpOrderList(e, this.pageNum + '', this.pageSize + '')
this.totalCount = res.totalCount
if (res.totalCount > 0) {
+ res.data.map(el => {
+ this.$set(el, 'checked', false)
+ })
const dataMap = res.data
this.dataList = this.reload ? dataMap : this.dataList.concat(dataMap)
this.reload = false