| | |
| | | type="danger" |
| | | size="small" |
| | | @click="deletePro" |
| | | :disabled="!proStatus.deletable" |
| | | disabled |
| | | >删除</el-button |
| | | > |
| | | <el-button |
| | | v-if="proStatus.name.indexOf('不通过') != -1" |
| | | <!-- <el-button |
| | | type="danger" |
| | | size="small" |
| | | @click="deletePro" |
| | | :disabled="!proStatus.deletable" |
| | | >删除</el-button |
| | | > --> |
| | | <!-- 审核驳回操作 --> |
| | | <!-- <el-button |
| | | v-if=" |
| | | this.problem.extension3 == 'fail' || |
| | | this.problem.extension3 == 'change_fail' |
| | | " |
| | | type="danger" |
| | | size="small" |
| | | @click="revokePro" |
| | |
| | | size="small" |
| | | @click="rejectPro" |
| | | :disabled="!proStatus.checkable" |
| | | >驳回</el-button |
| | | > |
| | | >审核驳回</el-button |
| | | > --> |
| | | <el-button |
| | | v-if=" |
| | | proStatus.name.indexOf('不通过') == -1 && |
| | | proStatus.name.indexOf('通过') != -1 |
| | | this.problem.extension3 == 'pass' || |
| | | this.problem.extension3 == 'change_pass' |
| | | " |
| | | type="danger" |
| | | size="small" |
| | |
| | | size="small" |
| | | @click="passPro" |
| | | :disabled="!proStatus.checkable" |
| | | >通过</el-button |
| | | >审核通过</el-button |
| | | > |
| | | </el-row> |
| | | </el-col> |
| | |
| | | import CompProRecent from './CompProRecent.vue'; |
| | | import { useCloned } from '@vueuse/core'; |
| | | export default { |
| | | emits: ['submmit', 'cancel'], |
| | | emits: ['check', 'submit', 'cancel'], |
| | | components: { |
| | | CompProblemAddOrUpd, |
| | | ComChangeEdit, |
| | |
| | | this.proAddOrUpdDialogVisible = false; |
| | | }, |
| | | onChangeCanceled() { |
| | | this.changeDialogVisible = false; |
| | | }, |
| | | onChangeSubmited(isOk) { |
| | | this.$emit('submit', isOk); |
| | |
| | | .checkProblem({ pId: pro.guid, action: action }) |
| | | .then((res) => { |
| | | if (res.success) { |
| | | this.$emit('submit', false); |
| | | pro.extension3 = status |
| | | this.$emit('check'); |
| | | } |
| | | }); |
| | | } |
| | |
| | | .checkProblem({ pId: pro.guid, action: action }) |
| | | .then((res) => { |
| | | if (res.success) { |
| | | this.$emit('submit', false); |
| | | pro.extension3 = status |
| | | this.$emit('check'); |
| | | } |
| | | }); |
| | | } |