GuLiMmo
2024-01-23 2e80903f72d58a86cd13c2a24a8d3132d015073e
src/views/evaluate/components/IndividualTaskPublic.vue
@@ -108,7 +108,7 @@
            form: {
                categoryEntities: [],
                pollingPersons: [],
                isSelfDept: '',
                isSelfDept: 1,
                votePersonObjInfo: [],
                evaluateCutoffTimeStart: '',
                evaluateCutoffTimeEnd: ''
@@ -147,7 +147,11 @@
                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 || ''
            },