完成consumer端同步
This commit is contained in:
@@ -162,9 +162,10 @@ const loadLogisticsInfo = async () => {
|
||||
|
||||
onLoad((options) => {
|
||||
if (options == null) return
|
||||
const orderIdValue = options['orderId']
|
||||
if (orderIdValue != null) {
|
||||
orderId.value = orderIdValue as string
|
||||
const optionsObj = options as UTSJSONObject
|
||||
const orderIdValue = optionsObj.getString('orderId') ?? ''
|
||||
if (orderIdValue != '') {
|
||||
orderId.value = orderIdValue
|
||||
loadLogisticsInfo()
|
||||
}
|
||||
})
|
||||
@@ -176,7 +177,7 @@ onMounted(() => {
|
||||
|
||||
<style scoped>
|
||||
.logistics-page {
|
||||
/* min-height: 100vh; */
|
||||
/* min-height: 100%; */
|
||||
flex: 1;
|
||||
background-color: #f5f5f5;
|
||||
padding-bottom: 20px;
|
||||
|
||||
Reference in New Issue
Block a user