update:更新描述
This commit is contained in:
@@ -65,13 +65,19 @@
|
||||
<a-form-item label="收件地址" name="receiverAddress">
|
||||
<a-input v-model:value="form.receiverAddress" :disabled="disableEdit" />
|
||||
</a-form-item>
|
||||
<a-form-item>
|
||||
<template #label>
|
||||
<span :style="{ whiteSpace: 'normal' }"
|
||||
>注册师身份证正反面,并加盖公章以及注册师章</span
|
||||
>
|
||||
</template>
|
||||
<a-form-item name="idCardPicId">
|
||||
<input v-model="form.idCardPicId" hidden />
|
||||
<template #label>
|
||||
<a-tooltip>
|
||||
<template #title
|
||||
>身份证正反面并加盖公司公章,勘察设计类单位还需加盖注册师章</template
|
||||
>
|
||||
<span :style="{ whiteSpace: 'normal' }">
|
||||
身份证正反面
|
||||
<QuestionCircleOutlined />
|
||||
</span>
|
||||
</a-tooltip>
|
||||
</template>
|
||||
<a-upload
|
||||
accept="image/*"
|
||||
action="/api2/upload/uploadfile"
|
||||
@@ -138,7 +144,7 @@
|
||||
</style>
|
||||
<script>
|
||||
import { message } from "ant-design-vue";
|
||||
import { UploadOutlined } from "@ant-design/icons-vue";
|
||||
import { UploadOutlined, QuestionCircleOutlined } from "@ant-design/icons-vue";
|
||||
import { get, post } from "@/services/http";
|
||||
import regex from "@/services/regex";
|
||||
export default {
|
||||
@@ -195,6 +201,14 @@ export default {
|
||||
],
|
||||
receiverAddress: [
|
||||
{ required: true, message: "请输入收件地址", trigger: "blur" }
|
||||
],
|
||||
idCardPicId: [
|
||||
{
|
||||
required: true,
|
||||
message: "上传身份证正反面照片",
|
||||
type: "number",
|
||||
trigger: "blur"
|
||||
}
|
||||
]
|
||||
},
|
||||
userApplyList: [],
|
||||
@@ -342,7 +356,8 @@ export default {
|
||||
}
|
||||
},
|
||||
components: {
|
||||
UploadOutlined
|
||||
UploadOutlined,
|
||||
QuestionCircleOutlined
|
||||
},
|
||||
created: async function() {
|
||||
//获取所在组织信息和个人数字认证信息
|
||||
|
||||
Reference in New Issue
Block a user