提交订单

This commit is contained in:
liuye
2022-11-23 14:30:39 +08:00
parent 86c418a44b
commit bb8cab35b3
3 changed files with 157 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
<div class="type">
<div class="type-item" :class="index == typeIndex ? 'active' : ''" v-for="(item, index) in typeList" :key="index" @click="typeClick(index)">{{item}}</div>
</div>
<div class="item">
<div class="item" @click="toDetail()">
<div class="left">
<img src="./components/imgs/check-icon.png" alt="">
</div>
@@ -96,6 +96,9 @@ export default {
},
typeClick(index) {
this.typeIndex = index
},
toDetail() {
uni.navigateTo({url:'./detail'})
}
},
onReachBottom() {
@@ -126,6 +129,7 @@ export default {
font-size: 28px;
color: #CA906A;
.header-left {
line-height: 56px;
span {
display: inline-block;
width: 40px;
@@ -137,6 +141,7 @@ export default {
color: #fff;
font-size: 30px;
margin-right: 8px;
vertical-align: middle;
}
}
.header-right {