完成consumer端同步

This commit is contained in:
2026-05-14 15:28:09 +08:00
parent 612fb3d360
commit 0ffbc53902
197 changed files with 92657 additions and 7564 deletions

View File

@@ -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;