This commit is contained in:
yanran200730
2023-03-02 13:44:52 +08:00
parent df8ef12198
commit e08c522066
3 changed files with 6 additions and 3 deletions

View File

@@ -433,7 +433,6 @@ export default {
sendScope: '0',
sendType: 0,
name: '',
executorList: [],
taskEndTime: '',
groupList: [],
addTime: '',
@@ -463,7 +462,7 @@ export default {
...mapState(['user']),
groupLen() {
return this.form.executorList.map(v => v.customerCount).reduce((prev, cur) => {
return this.form.groupList.map(v => v.customerCount).reduce((prev, cur) => {
return prev + cur
}, 0)
}