代码提交
This commit is contained in:
@ -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
|
||||
})
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user