This commit is contained in:
zhoutianchi
2026-01-29 13:59:46 +08:00
parent 043c92efc9
commit bb5ae5375b
11 changed files with 629 additions and 12 deletions

View File

@@ -172,16 +172,30 @@
type="success"
link
icon="CircleCheck"
v-if="permissions.professional_professionaltitlerelation_exam && scope.row.state === '0'"
v-if="permissions.professional_professionaltitlerelation_exam && scope.row.canExam"
@click="changeState(scope.row, 1)">通过
</el-button>
<el-button
type="success"
link
icon="CircleCheck"
v-if="permissions.professional_professionaltitlerelation_exam && scope.row.canDeptExam"
@click="changeState(scope.row, 1)">部门通过
</el-button>
<el-button
type="danger"
link
icon="CircleClose"
v-if="permissions.professional_professionaltitlerelation_exam && (scope.row.state === '0' || scope.row.state === '1')"
v-if="permissions.professional_professionaltitlerelation_exam && scope.row.canBack"
@click="changeState(scope.row, -2)">驳回
</el-button>
<el-button
type="danger"
link
icon="CircleClose"
v-if="permissions.professional_professionaltitlerelation_exam && scope.row.canDeptBack"
@click="changeState(scope.row, -2)">部门驳回
</el-button>
<el-button
type="danger"
link