|
|
@@ -1,12 +1,13 @@
|
|
|
<template>
|
|
|
- <a-modal
|
|
|
+ <a-drawer
|
|
|
:title="title"
|
|
|
- :width="800"
|
|
|
+ :maskClosable="true"
|
|
|
+ width=650
|
|
|
+ placement="right"
|
|
|
+ :closable="true"
|
|
|
+ @close="close"
|
|
|
:visible="visible"
|
|
|
- :confirmLoading="confirmLoading"
|
|
|
- @ok="handleOk"
|
|
|
- @cancel="handleCancel"
|
|
|
- cancelText="关闭">
|
|
|
+ style="height: calc(100% - 55px);overflow: auto;padding-bottom: 53px;">
|
|
|
|
|
|
<a-spin :spinning="confirmLoading">
|
|
|
<a-form :form="form">
|
|
|
@@ -31,18 +32,18 @@
|
|
|
</a-form-item>
|
|
|
|
|
|
<a-form-item label="营业执照正面" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
- <img :src="getAvatarView()" alt="营业执照正面" style="height:104px;max-width:300px"/>
|
|
|
+ <img :src="getAvatarView()" :preview="getAvatarView()" alt="营业执照正面" style="height:104px;max-width:300px"/>
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
|
<a-form-item label="其他资质照片" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
- <img :src="getAvatarView1()" alt="其他资质照片" style="height:104px;max-width:300px"/>
|
|
|
+ <img :src="getAvatarView1()" :preview="getAvatarView1()" alt="其他资质照片" style="height:104px;max-width:300px"/>
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
|
</a-form>
|
|
|
</a-spin>
|
|
|
- </a-modal>
|
|
|
+ </a-drawer>
|
|
|
</template>
|
|
|
|
|
|
<script>
|