| | |
| | | console.log(this.params.data.pollingPersons); |
| | | const pollingPersons = this.params.data.pollingPersons |
| | | this.form.pollingPersons = pollingPersons !== "0" ? pollingPersons.split(',') : [] |
| | | this.form.votePersonObjInfo = JSON.parse(this.params.data.votePersonObjInfo) || [] |
| | | if (typeof this.params.data.votePersonObjInfo === 'object') { |
| | | this.form.votePersonObjInfo = [] |
| | | } else { |
| | | this.form.votePersonObjInfo = JSON.parse(this.params.data.votePersonObjInfo) || [] |
| | | } |
| | | this.form.evaluateCutoffTimeStart = this.params.data.evaluateCutoffTimeStart || '' |
| | | this.form.evaluateCutoffTimeEnd = this.params.data.evaluateCutoffTimeEnd || '' |
| | | }, |