增加网络波动加载中,增加会员信息扫码充值

This commit is contained in:
wwz
2025-03-26 17:58:52 +08:00
parent 3a6fa55234
commit 98ce8b5544
18 changed files with 1018 additions and 128 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="therecontent flex-between" >
<view class="therecontent flex-between">
<view class="therecontent_box_item">
<view class="therecontent_box_imge flex-between" @click="jrtoday(0)">
<view class="therecontent_box_imge_text">
@@ -42,7 +42,7 @@
style="background: url(https://czg-qr-order.oss-cn-beijing.aliyuncs.com/index/towcontent_box2.png) no-repeat; background-size: cover;"
@click="jrtoday(1)">
<view class="therecontent_box_imge_text">
{{salesList.name}}
{{salesList.name || ''}}
</view>
<view class="therecontent_box_imge_right flex-start">
<view>
@@ -82,13 +82,20 @@
defineProps
} from 'vue';
const props = defineProps({
salesList: Object,
salesList: {
type: Object,
default: {
name: '',
date: '',
hotList: [],
}
},
todayList: {
type: Object,
default: () => ({
name:'',
date:'',
hotList:[]
name: '',
date: '',
hotList: []
}) //
},
});