fix: 修复bug

pull/2/head
TianYu 2023-05-29 17:01:10 +08:00
parent 9a084e3a48
commit 3d34feb481
2 changed files with 12 additions and 12 deletions

View File

@ -88,7 +88,7 @@
<view class="item" v-for="item in productList" @click="goDetail(item)"> <view class="item" v-for="item in productList" @click="goDetail(item)">
<image :src="item.image" mode=""></image> <image :src="item.image" mode=""></image>
<view class="name">{{item.storeName}}</view> <view class="name">{{item.storeName}}</view>
<u--text class="text" color="#E50202" mode="price" :text="item.price"></u--text> <u--text class="text" color="#E50202" mode="price" size="28" :text="item.price"></u--text>
</view> </view>
</view> </view>
<view class="" style="margin-top: 110rpx;"> <view class="" style="margin-top: 110rpx;">
@ -266,7 +266,7 @@
vip: {}, // vip: {}, //
tempArr: [], // tempArr: [], //
roll: [], // roll: [], //
site_name: '', //title site_name: '首页', //title
iSshowH: false, iSshowH: false,
configApi: {}, // configApi: {}, //
spikeList: [], // spikeList: [], //
@ -334,7 +334,7 @@
// #endif // #endif
}, },
onShow() { onShow() {
this.getIndexConfig(); // this.getIndexConfig();
getUserInfo().then(res => { getUserInfo().then(res => {
this.userInfo = res.data this.userInfo = res.data
getTenant(this.tenantId).then(res => { getTenant(this.tenantId).then(res => {

View File

@ -28,7 +28,7 @@
{{item.storeName}} {{item.storeName}}
</view> </view>
<view class="price"> <view class="price">
<u--text class="text" color="#E50202" mode="price" :text="item.price"></u--text> <u--text class="text" color="#E50202" mode="price" size="26" :text="item.price"></u--text>
</view> </view>
</view> </view>
<!-- <view class="sum">x{{item.cartNum}}</view> --> <!-- <view class="sum">x{{item.cartNum}}</view> -->
@ -58,7 +58,7 @@
<text :class="[isAllSelect?'checkedIcon':'noCheckIcon']"></text> <text :class="[isAllSelect?'checkedIcon':'noCheckIcon']"></text>
<text>全选</text> <text>全选</text>
</view> </view>
<view class="allPrice">合计 <u--text class="text" color="#E50202" mode="price" :text="priceAll"></u--text> <view class="allPrice">合计 <u--text class="text" size="30" color="#E50202" mode="price" :text="priceAll"></u--text>
</view> </view>
<view class="closeAll" @tap="subOrder">({{allCountval}})</view> <view class="closeAll" @tap="subOrder">({{allCountval}})</view>
</view> </view>