代码提交

This commit is contained in:
黄少君
2023-11-22 18:55:55 +08:00
parent c3e62f8922
commit 68b3f2dcc3
46 changed files with 1021 additions and 763 deletions

View File

@ -79,6 +79,7 @@ const pics = ref([])
const fileList1 = ref([])
const comment = ref("")
const orderInfoData = ref(null)
const orderId = ref(0)
const {goBack} = useRouter()
const handleOrderComments = async () => {
@ -148,10 +149,20 @@ const uploadFilePromise = (url) => {
})
}
const goOrderInfo = ()=>{
push({url: '/pages/orderInfo/orderInfo'}, {
data: {
key: unique.value,
orderId: orderId.value,
}
})
}
onLoad((options) => {
const params = getParams(options)
unique.value = params.unique
orderId.value = params.orderId
})