This commit is contained in:
yanran200730
2023-03-02 09:00:28 +08:00
parent 74e78c8e59
commit 6039674de8

View File

@@ -462,7 +462,9 @@ export default {
...mapState(['user']),
groupLen() {
return this.form.groupList.length
return this.form.executorList.map(v => v.customerCount).reduce((prev, cur) => {
return prev + cur
}, 0)
}
},