我的订单

This commit is contained in:
liuye
2023-03-27 14:56:11 +08:00
parent 5887bcb08e
commit 586ad61488

View File

@@ -6,7 +6,7 @@
<p>积分余额</p> <p>积分余额</p>
<h3>562</h3> <h3>562</h3>
</div> </div>
<div class="btn">我的订单</div> <div class="btn" @click="toMyOrder">我的订单</div>
</div> </div>
<div class="search"> <div class="search">
<u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="76" font-size="28" bg-color="#fff" inactive-color="#8891A1" <u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="76" font-size="28" bg-color="#fff" inactive-color="#8891A1"
@@ -114,6 +114,9 @@ export default {
}, },
toProductDetail() { toProductDetail() {
uni.navigateTo({url: './productDetails'}) uni.navigateTo({url: './productDetails'})
},
toMyOrder() {
uni.navigateTo({url: './myOrderList'})
} }
}, },
onReachBottom() { onReachBottom() {