submit
This commit is contained in:
parent
5e866f5e31
commit
2329270e98
@ -27,7 +27,7 @@ watch(route, () => {
|
||||
|
||||
}
|
||||
}
|
||||
document.title= route.meta.title
|
||||
/* document.title= route.meta.title*/
|
||||
}, {
|
||||
immediate: true
|
||||
})
|
||||
|
@ -83,7 +83,13 @@ const isWithinThreeMonths=(dateStr)=> {
|
||||
return isEarlier && isWithinThreeMonths;
|
||||
}
|
||||
const confirmAddress = (data) => {
|
||||
submitReturnData.value.address=JSON.stringify(data.selectedOptions)
|
||||
submitReturnData.value.address=JSON.stringify(data.selectedOptions.map((x)=>{
|
||||
return {
|
||||
text:x.text,
|
||||
value:x.value
|
||||
}
|
||||
|
||||
}))
|
||||
showBottom.value = false
|
||||
}
|
||||
const sendCode = async () => {
|
||||
|
@ -29,7 +29,6 @@ const contentComputed = computed(() => {
|
||||
}
|
||||
})
|
||||
const submitClick =async () => {
|
||||
|
||||
const data={
|
||||
artistName:idCardInfo.value.realName,
|
||||
gender:idCardInfo.value.sex==='男'?1:2,
|
||||
|
Loading…
Reference in New Issue
Block a user