fix address
This commit is contained in:
parent
ea0fa44bbd
commit
990b508102
@ -39,7 +39,7 @@ const afterRead = async (file) => {
|
||||
<div class="wrap2">上传作品</div>
|
||||
</div>
|
||||
</van-uploader>
|
||||
<div class="bottom-text">*点击相机上传/拍摄作品</div>
|
||||
<div class="bottom-text">*作品画芯尺寸不超过240cm(高)×200cm(宽)</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -35,7 +35,12 @@ const submitClick = async () => {
|
||||
gender: idCardInfo.value.sex === '男' ? 1 : 2,
|
||||
phoneNum: telNum.value,
|
||||
idCard: idCardInfo.value.iDNum,
|
||||
address: JSON.stringify(selectAddress.value.selectedOptions),
|
||||
address: JSON.stringify(selectAddress.value.selectedOptions.map(item => {
|
||||
return {
|
||||
text: item.text,
|
||||
value: item.value
|
||||
}
|
||||
})),
|
||||
address1: detailAddress.value,
|
||||
idCardPhoto: iDCardImage.value.front,
|
||||
idCardBackPhoto: iDCardImage.value.back,
|
||||
@ -88,7 +93,6 @@ const stepsClick = async (item) => {
|
||||
router.replace(`/title-forward/upload-id-card/${1}`)
|
||||
break
|
||||
case 1:
|
||||
|
||||
if (item.type === 'next') {
|
||||
if (!recentPhoto.value) {
|
||||
showToast({
|
||||
|
Loading…
Reference in New Issue
Block a user