将机构审核详情界面的审核栏目放到最下方
This commit is contained in:
parent
da1c61c95b
commit
64e07f1850
|
|
@ -1,24 +1,5 @@
|
|||
<template>
|
||||
<div class="container2">
|
||||
<a-form ref="formRef" layout="horizontal" :model="formData" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||||
<a-row :gutter="16">
|
||||
<a-col :span="12">
|
||||
<a-form-item label="审核结果" name="status" v-bind="validateInfos.status">
|
||||
<a-select v-model:value="formData.status" style="width: 200px" placeholder="请选择审核结果">
|
||||
<a-select-option value="modifyPass">审核通过</a-select-option>
|
||||
<a-select-option value="modifyFail">审核驳回</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12" v-if="formData.status == 'modifyFail'">
|
||||
<a-form-item label="驳回原因" name="content" v-bind="validateInfos.content">
|
||||
<a-textarea :maxlength="50" show-count v-model:value="formData.content"
|
||||
placeholder="请输入驳回原因(如驳回)" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
|
||||
<a-row>
|
||||
<a-col :span="24" style="padding-top: 10px;padding-left: 30px;padding-right: 30px;">
|
||||
<a-table :dataSource="filteredTableData" :columns="columns" :pagination="false" bordered size="small"
|
||||
|
|
@ -57,6 +38,24 @@
|
|||
</a-table>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-form style="margin-top: 14px;height: 100px;" ref="formRef" layout="horizontal" :model="formData" :label-col="labelCol" :wrapper-col="wrapperCol">
|
||||
<a-row :gutter="16">
|
||||
<a-col :span="12">
|
||||
<a-form-item label="审核结果" name="status" v-bind="validateInfos.status">
|
||||
<a-select v-model:value="formData.status" style="width: 200px" placeholder="请选择审核结果">
|
||||
<a-select-option value="modifyPass">审核通过</a-select-option>
|
||||
<a-select-option value="modifyFail">审核驳回</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12" v-if="formData.status == 'modifyFail'">
|
||||
<a-form-item label="驳回原因" name="content" v-bind="validateInfos.content">
|
||||
<a-textarea :maxlength="50" show-count v-model:value="formData.content"
|
||||
placeholder="请输入驳回原因(如驳回)" style="width: 100%" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
@ -235,7 +234,7 @@ defineExpose({
|
|||
|
||||
<style lang="less" scoped>
|
||||
.container2 {
|
||||
padding: 16px;
|
||||
// padding: 16px;
|
||||
}
|
||||
|
||||
.antd-modal-form {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<a-drawer :title="title" width="70vw" v-model:visible="visible" :closable="true"
|
||||
<a-drawer :title="title" width="70vw" v-model:visible="visible" :closable="true" :bodyStyle="{ padding: '14px' }"
|
||||
:footer-style="{ textAlign: 'right' }" @close="handleCancel">
|
||||
<OrgModifyInfoForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false">
|
||||
</OrgModifyInfoForm>
|
||||
|
|
@ -8,9 +8,9 @@
|
|||
<a-button type="primary" @click="handleOk" v-if="!disableSubmit">确认</a-button>
|
||||
</template>
|
||||
</a-drawer>
|
||||
|
||||
<a-drawer :title="'机构信息变更审核'" width="70vw" v-model:visible="hisVisible" :closable="true"
|
||||
:footer-style="{ textAlign: 'right' }" @close="handleCancel">
|
||||
|
||||
<a-drawer :title="'机构信息变更审核'" width="70vw" v-model:visible="hisVisible" :closable="true"
|
||||
:bodyStyle="{ padding: '14px' }" :footer-style="{ textAlign: 'right' }" @close="handleCancel">
|
||||
<OrgHistoryForm ref="historyRef" @ok="submitCallback" v-if="hisVisible"></OrgHistoryForm>
|
||||
<template #footer>
|
||||
<a-button type="primary" style="margin-right: 8px" @click="handleCancel">关闭</a-button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue