优化
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
</el-col>
|
||||
<el-col :span="span">
|
||||
<el-form-item label="法人身份证号">
|
||||
<el-input v-model="form.idCard.certno" placeholder="请输入法人身份证号" />
|
||||
<el-input v-model="form.idCard.certno" placeholder="请输入法人身份证号" @input="e => form.idCard.certno = removeSpaces(e)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
@@ -30,12 +30,12 @@
|
||||
<el-row :gutter="gutter">
|
||||
<el-col :span="span">
|
||||
<el-form-item label="执照名称">
|
||||
<el-input v-model="form.license.bussauthname" placeholder="请输入执照名称" />
|
||||
<el-input v-model="form.license.bussauthname" placeholder="请输入执照名称" @input="e => form.license.bussauthname = removeSpaces(e)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="span">
|
||||
<el-form-item label="工商注册号">
|
||||
<el-input v-model="form.license.bussauthnum" placeholder="请输入工商注册号" />
|
||||
<el-input v-model="form.license.bussauthnum" placeholder="请输入工商注册号" @input="e => form.license.bussauthnum = removeSpaces(e)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
@@ -88,6 +88,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { removeSpaces } from '@/utils/index.js'
|
||||
import { merchLicense, updatemerchLicense } from '@/api/shop.js'
|
||||
|
||||
import uploadCard from './uploadCard.vue'
|
||||
|
||||
Reference in New Issue
Block a user