| | |
| | | </a-form-item> |
| | | </a-col> |
| | | </a-row> |
| | | <a-row :gutter="24"> |
| | | <a-col :span="24"> |
| | | <a-form-item |
| | | label="问题及处理措施描述" |
| | | :labelCol="{span:3}" |
| | | :wrapperCol="{span:18}" |
| | | class="hightColor" |
| | | > |
| | | <a-textarea |
| | | allowClear |
| | | :disabled="this.model.status!='4'" |
| | | :placeholder="'请输入问题及处理措施描述'" |
| | | v-model="model.description" |
| | | /> |
| | | </a-form-item> |
| | | </a-col> |
| | | </a-row> |
| | | </div> |
| | | |
| | | <a-tabs |
| | |
| | | :loading="loading" |
| | | @change="handleTableChange" |
| | | :pagination="ipagination" |
| | | :scroll="{ x: 'calc(1200px + 50%)', y: 900 }" |
| | | > |
| | | <!-- :scroll="{ x: 'calc(1200px + 50%)', y: 900 }" --> |
| | | <!-- :scroll="{x:true}" --> |
| | | <template |
| | | v-for="col in columns" |
| | |
| | | xs: { span: 24 }, |
| | | sm: { span: 18 }, |
| | | }, |
| | | validatorRules: { |
| | | // description: { |
| | | // rules: [ |
| | | // { required: true, message: '请输入描述!' }, |
| | | // ] |
| | | // } |
| | | }, |
| | | columns: [ |
| | | { |
| | | title: '#', |
| | |
| | | okText: '确认', |
| | | cancelText: '取消', |
| | | onOk() { |
| | | requestPut(that.url.report, { id: that.model.id, status: '5' }).then((res) => { |
| | | requestPut(that.url.report, { id: that.model.id, status: '5', description: that.model.description }).then((res) => { |
| | | if (res.success) { |
| | | that.model.status = '5' |
| | | that.$message.success(res.message) |