员工-审核管理:调整详情、入驻审核、变更审核弹窗宽度、弹窗导航栏文字提示、申请审核的展示逻辑

This commit is contained in:
1378012178@qq.com 2026-02-04 16:28:46 +08:00
parent 243914add5
commit e437648a8d
2 changed files with 8 additions and 11 deletions

View File

@ -254,16 +254,13 @@
</a-form>
</template>
</JFormContainer>
<JFormContainer :disabled="disabled">
<JFormContainer :disabled="disabled" v-show="!disabled">
<template #detail>
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"
name="EmployeesApplyForm">
<a-row class="card-class">
<a-col :span="24" style="border-bottom: 2px solid #f7f7f7; margin-bottom: 14px;">
<div v-if="formData.applyType == 0">
<SectionDivider :title="'邀请结果'" />
</div>
<div v-if="formData.applyType == 1">
<div>
<SectionDivider :title="'申请审核'" />
</div>
</a-col>
@ -385,9 +382,9 @@ const statusVal = ref('')
const { createMessage } = useMessage();
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 8 } });
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
const labelCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 4 } });
const labelCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 6 } });
const wrapperCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
const labelCol3 = ref<any>({ xs: { span: 24 }, sm: { span: 2 } });
const labelCol3 = ref<any>({ xs: { span: 24 }, sm: { span: 3 } });
const confirmLoading = ref<boolean>(false);
//
const validatorRules = reactive({

View File

@ -1,5 +1,5 @@
<template>
<a-drawer :title="title" width="70vw" :visible="visible" :closable="true" :footer-style="{ textAlign: 'right' }"
<a-drawer :title="title" width="1000px" :visible="visible" :closable="true" :footer-style="{ textAlign: 'right' }"
:bodyStyle="{ padding: '14px' }" @close="handleCancel">
<template #footer>
<a-button type="primary" style="margin-right: 8px" @click="handleCancel">关闭</a-button>
@ -10,7 +10,7 @@
</EmployeesApplyForm>
</a-drawer>
<!-- 可邀请邀请列表 -->
<a-drawer :title="'邀请'" width="70vw" :visible="invidedVisible" :closable="true" :footer-style="{ textAlign: 'right' }"
<a-drawer :title="'邀请'" width="1200px" :visible="invidedVisible" :closable="true" :footer-style="{ textAlign: 'right' }"
:bodyStyle="{ padding: '14px' }" @close="handleInvidedCancel">
<template #footer>
<a-button type="primary" style="margin-right: 8px" @click="handleInvidedCancel">关闭</a-button>
@ -18,7 +18,7 @@
<NuEmployeesAdvisoryInfoList v-if="invidedVisible" ref="invidedRef" @reload="submitCallback" />
</a-drawer>
<!-- 员工信息变更审核 -->
<a-drawer :title="'审核'" width="70vw" :visible="upInfoVisible" :closable="true" :footer-style="{ textAlign: 'right' }"
<a-drawer :title="'变更审核'" width="1000px" :visible="upInfoVisible" :closable="true" :footer-style="{ textAlign: 'right' }"
:bodyStyle="{ padding: '14px' }" @close="handleUpInfoCancel">
<template #footer>
<a-button type="primary" style="margin-right: 8px" @click="handleUpInfoCancel">关闭</a-button>
@ -63,7 +63,7 @@ function add() {
* @param record
*/
function edit(record) {
title.value = disableSubmit.value ? '详情' : '审核';
title.value = disableSubmit.value ? '详情' : '入驻审核';
visible.value = true;
nextTick(() => {
registerForm.value.edit(record);