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) {
form.value.audit = type;
UserApi.examineUser(form.value).then((res) => {
proxy.$modal.msgSuccess("审批成功");
try {
UserApi.examineUser(form.value).then((res) => {
emits("success");
show.value = false;
});
} finally {
show.value = false
}
}
defineExpose({ open });

11
src/views/task/index.vue

@ -187,6 +187,17 @@
>
删除
</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> -->
</template>
</el-table-column>

Loading…
Cancel
Save