Browse Source

用户审核

master
DX 1 month ago
parent
commit
318ea936d9
  1. 9
      src/views/system/user/examineform.vue
  2. 11
      src/views/task/index.vue

9
src/views/system/user/examineform.vue

@ -46,11 +46,14 @@ function open(param) {
function submit(type) { function submit(type) {
form.value.audit = type; form.value.audit = type;
UserApi.examineUser(form.value).then((res) => { try {
proxy.$modal.msgSuccess("审批成功"); UserApi.examineUser(form.value).then((res) => {
emits("success"); emits("success");
show.value = false;
}); });
} finally {
show.value = false
}
} }
defineExpose({ open }); defineExpose({ open });

11
src/views/task/index.vue

@ -187,6 +187,17 @@
> >
删除 删除
</el-button> </el-button>
<el-button
link
type="danger"
@click="handleDelete(scope.row.id)"
v-hasPermi="['system:task-info:audit']"
v-if="scope.row.status == 0"
>
审核
</el-button>
<!-- <el-button link type="primary" @click="openForm(scope.row.id)"> 详情 </el-button> --> <!-- <el-button link type="primary" @click="openForm(scope.row.id)"> 详情 </el-button> -->
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save