讲师管理页面调整

This commit is contained in:
wangxuemei
2024-08-05 17:38:10 +08:00
parent b0f6f56759
commit 36200b08ef
11 changed files with 330 additions and 94 deletions

View File

@@ -102,6 +102,34 @@
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="16">
<a-col :span="12">
<a-form-item label="组织负责人" name="zzfzr">
<a-select v-model:value="formParam.zzfzr" placeholder="请选择组织负责人"
:options="PlaceOfPayList" allowClear showSearch/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="一级审批人" name="yjspr">
<a-select v-model:value="formParam.yjspr" placeholder="请选择一级审批人"
:options="PlaceOfPayList" allowClear showSearch/>
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="16">
<a-col :span="12">
<a-form-item label="二级审批人" name="zzfzr">
<a-select v-model:value="formParam.zzfzr" placeholder="请选择二级审批人"
:options="PlaceOfPayList" allowClear showSearch/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="三级审批人" name="sjspr">
<a-select v-model:value="formParam.sjspr" placeholder="请选择三级审批人"
:options="PlaceOfPayList" allowClear showSearch/>
</a-form-item>
</a-col>
</a-row>
<a-form-item label="选中组织">
<a-row :gutter="50" style="margin-bottom: 10px;">
<a-col :span="2">
@@ -333,6 +361,10 @@ const getTableDate = (obj) => {
const rules = {
trainorgId: [{ required: true, message: '归属组织编号不能为空' }],
trainorgName: [{ required: true, message: '归属组织名称不能为空' }],
zzfzr: [{ required: true, message: '组织负责人不能为空' }],
yjspr: [{ required: true, message: '"一级审批人不能为空' }],
zzfzr: [{ required: true, message: '二级审批人不能为空' }],
sjspr: [{ required: true, message: '三级审批人不能为空' }],
}