diff --git a/src/views/information/member/index.vue b/src/views/information/member/index.vue
index 18a4ae7..190618b 100644
--- a/src/views/information/member/index.vue
+++ b/src/views/information/member/index.vue
@@ -443,13 +443,19 @@
align="center"
prop="pkAwardsVal"
:label="$t('当月奖衔')"
- width="180"
+ width="160"
+ />
+
{
+ this.tableData.forEach((item, idx) => {
if (this.changeData.placeDept != '') {
item.placeDept = this.changeData.placeDept
item.placeDeptVal = this.changeData.placeDeptVal
@@ -1634,6 +1634,9 @@ export default {
item.autoFlag = this.changeData.autoFlag
item.autoFlagVal = this.changeData.autoFlagVal
}
+ item.autoFlag = 1
+ item.autoFlagVal = '否'
+ this.$set(this.tableData, idx, item)
})
},
handleSelectionChange(val) {
diff --git a/src/views/information/specialBusiness/emptyOrder/index.vue b/src/views/information/specialBusiness/emptyOrder/index.vue
index b53ad23..3c8356f 100644
--- a/src/views/information/specialBusiness/emptyOrder/index.vue
+++ b/src/views/information/specialBusiness/emptyOrder/index.vue
@@ -1702,9 +1702,7 @@ export default {
}
},
changeAllData() {
- this.tableData.forEach((item) => {
- item.autoFlag = ''
- item.autoFlagVal = ''
+ this.tableData.forEach((item, idx) => {
if (this.changeData.placeDept != '') {
item.placeDept = this.changeData.placeDept
item.placeDeptVal = this.changeData.placeDeptVal
@@ -1782,6 +1780,9 @@ export default {
item.autoFlagVal = this.changeData.autoFlagVal
this.$forceUpdate()
}
+ item.autoFlag = 1
+ item.autoFlagVal = '否'
+ this.$set(this.tableData, idx, item)
})
},
handleSelectionChange(val) {