This commit is contained in:
shijingjing
2022-08-15 14:03:18 +08:00
parent ebcb37cdf6
commit 3fb0b4bec0
2 changed files with 2 additions and 9 deletions

View File

@@ -108,7 +108,7 @@ export default {
eventDesc: "", eventDesc: "",
enclosure: "", // 附件 enclosure: "", // 附件
integralCalcType: "", integralCalcType: "",
integral: 0, integral: '',
file: [], file: [],
}, },
personList: [], personList: [],
@@ -167,7 +167,7 @@ export default {
selectPerson(val) { selectPerson(val) {
this.personList = val this.personList = val
this.form.ids = this.personList.map(e => e.id) this.form.ids = [...this.personList.map(e => e.id)]
// .concat(this.chooseUserList.map(v=>v.id)) // .concat(this.chooseUserList.map(v=>v.id))
// if (val) { // if (val) {
// this.form.residentId = val.id // this.form.residentId = val.id

View File

@@ -259,13 +259,6 @@ export default {
}, },
toEdit(row) { toEdit(row) {
this.form = {...row} this.form = {...row}
// let arr = this.form?.validRangeData?.split(",");
// this.girdInfoList = arr.map(e=> {
// return {
// id: e,
// checkType: true
// }
// })
this.girdInfoList = this.form?.validRangeData?.split(","); this.girdInfoList = this.form?.validRangeData?.split(",");
this.$nextTick(() => { this.$nextTick(() => {
this.dialog = true; this.dialog = true;