| | |
| | | </u-radio-group> |
| | | </u-form-item> |
| | | <u-form-item border-bottom label="任务分类:" prop="keyPoint"> |
| | | <u-checkbox-group v-model="form.keyPoint" placement='column' style="font-size: 13px;" |
| | | @change='changeKeyPoint'> |
| | | <u-checkbox :key="index" v-for="(item, index) in emphasisEnumlist" |
| | | :customStyle="{marginTop: '10px'}" shape="circle" :label="item.name" :name="item.value" |
| | | :disabled="item.disabled"></u-checkbox> |
| | | </u-checkbox-group> |
| | | <u-radio-group v-model="form.keyPoint" style="font-size: 13px;" placement='column'> |
| | | <u-radio :key="index" v-for="(item, index) in Dic.emphasisEnum" :customStyle="{marginTop: '10px'}" |
| | | :label="item.name" :name="item.value" /> |
| | | </u-radio-group> |
| | | </u-form-item> |
| | | <u-form-item border-bottom label="问题描述:" prop="problemDescribe" required> |
| | | <u--textarea v-model="form.problemDescribe" border="none" placeholder="请输入内容" /> |
| | |
| | | escalationTime: '', |
| | | problemDescribe: '', |
| | | pollutePosition: '', |
| | | keyPoint: [] |
| | | keyPoint: 0 |
| | | }, |
| | | sumbitForm: { |
| | | unitId: '', |
| | |
| | | unitList: [], |
| | | polluteList: [], |
| | | fileBaseList: [], |
| | | emphasisEnumlist: [] |
| | | } |
| | | }, |
| | | onReady() { |
| | |
| | | return false |
| | | }, |
| | | methods: { |
| | | changeKeyPoint(name) { |
| | | if (name.length > 0) { |
| | | this.sumbitForm.keyPoint = name[0] |
| | | this.emphasisEnumlist.forEach(item => { |
| | | if (item.value === name[0]) { |
| | | item.disabled = false |
| | | } else { |
| | | item.disabled = true |
| | | } |
| | | }) |
| | | } else { |
| | | this.emphasisEnumlist.forEach(item => { |
| | | item.disabled = false |
| | | }) |
| | | } |
| | | console.log(this.emphasisEnumlist) |
| | | }, |
| | | handleFile(data) { |
| | | console.log('datadata', data) |
| | | this.fileBaseList = data |
| | |
| | | this.sumbitForm.escalationTime = data |
| | | }, |
| | | submit() { |
| | | console.log('this.sumbitForm', this.form) |
| | | this.$refs.uForm.validate().then(res => { |
| | | this.sumbitForm.problemDescribe = this.form.problemDescribe |
| | | this.sumbitForm.pollutePosition = this.form.pollutePosition |
| | |
| | | this.sumbitForm.investigationType = this.form.investigationType |
| | | this.sumbitForm.fileBaseList = this.fileBaseList |
| | | this.sumbitForm.changeType = this.form.changeType |
| | | this.sumbitForm.keyPoint = this.form.keyPoint |
| | | this.sumbitForm.state = '20' |
| | | console.log('this.sumbitForm', this.sumbitForm) |
| | | this.$http.httpPost('/allocation/insert', { |
| | |
| | | this.Dic = JSON.parse(uni.getStorageSync('dict') || '[]') |
| | | this.changeEnum = this.Dic.changeEnum |
| | | this.changeEnum = this.Dic.changeEnum |
| | | this.emphasisEnumlist = this.Dic.emphasisEnum.map(item => { |
| | | item.disabled = false |
| | | return item |
| | | }) |
| | | this.setDefaultValue() |
| | | }) |
| | | }, |