master
Phoenix 7 months ago
parent 5e866f5e31
commit 2329270e98

@ -27,7 +27,7 @@ watch(route, () => {
} }
} }
document.title= route.meta.title /* document.title= route.meta.title*/
}, { }, {
immediate: true immediate: true
}) })

@ -83,7 +83,13 @@ const isWithinThreeMonths=(dateStr)=> {
return isEarlier && isWithinThreeMonths; return isEarlier && isWithinThreeMonths;
} }
const confirmAddress = (data) => { 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 showBottom.value = false
} }
const sendCode = async () => { const sendCode = async () => {

@ -29,7 +29,6 @@ const contentComputed = computed(() => {
} }
}) })
const submitClick =async () => { const submitClick =async () => {
const data={ const data={
artistName:idCardInfo.value.realName, artistName:idCardInfo.value.realName,
gender:idCardInfo.value.sex==='男'?1:2, gender:idCardInfo.value.sex==='男'?1:2,

Loading…
Cancel
Save