| | |
| | | </el-row> |
| | | <el-row > |
| | | <el-col :span="12"> |
| | | <el-form-item label="问题分类" prop="issueType"> |
| | | <el-form-item label="问题类型" prop="issueType"> |
| | | <el-select style="width:100%" v-model="unPassForm.issueType" :disabled="type === 'view'" size="small" placeholder="请选择"> |
| | | <el-option v-for="item in issueTypeOptions" :key="item.value" :label="item.label" |
| | | :value="item.value"></el-option> |
| | |
| | | methods: { |
| | | //确认删除排班 |
| | | confirmDelScheduling() { |
| | | this.$refs.delSchedulingFormRef.validate(valid => { |
| | | if (valid) { |
| | | const data = { |
| | | userIdList: this.delSchedulingForm.userIdList, |
| | | startTime: this.delSchedulingForm.dateRange[0], |
| | |
| | | console.error(err); |
| | | this.closeSchedulingDelDialog() |
| | | }) |
| | | } |
| | | }) |
| | | }, |
| | | closeSchedulingDelDialog(){ |
| | | this.delSchedulingVisible = false; |