更新购物车

This commit is contained in:
wwz
2025-03-28 18:29:06 +08:00
parent 75e5fb65be
commit 10a47abe13
12 changed files with 299 additions and 195 deletions

View File

@@ -1,10 +1,12 @@
<template>
<view class="towcontent flex-between" v-if="district">
<view class="towcontent_item flex-colum" v-for="(item,index) in district" :key="index"
@click="clickdistrict(item,index)">
<image :src="item.coverImg" mode="aspectFill"></image>
<text>{{item.name}}</text>
<view v-for="(item,index) in district" :key="index" @click="clickdistrict(item,index)">
<view class="towcontent_item flex-colum" v-if="item.isShowMall == 1">
<image :src="item.coverImg" mode="aspectFill"></image>
<text>{{item.name}}</text>
</view>
</view>
</view>
</template>
@@ -84,8 +86,8 @@
}
}
.towcontent_item:nth-child(1) {
margin-left: 0rpx;
}
// .towcontent_item:nth-child(1) {
// margin-left: 0rpx;
// }
}
</style>