|
@@ -288,10 +288,10 @@
|
|
|
</view>
|
|
|
</navigator>
|
|
|
|
|
|
- <view class="my_order">
|
|
|
+ <view class="my_order" @click="goOrderIndex">
|
|
|
<u-cell value="全部订单" isLink>
|
|
|
<view slot="title" class="u-slot-title">
|
|
|
- <text class="u-cell-text">我的订单</text>
|
|
|
+ <text class="u-cell-text my_order_text">我的订单</text>
|
|
|
</view>
|
|
|
|
|
|
</u-cell>
|
|
@@ -306,7 +306,7 @@
|
|
|
<!-- <image :src="item.img" mode=""></image> -->
|
|
|
<text class="iconfont" :class="item.img"></text>
|
|
|
</view>
|
|
|
- <view class="txt">{{ item.title}}</view>
|
|
|
+ <view class="txt order_menu_title">{{ item.title}}</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
</view>
|
|
@@ -560,6 +560,14 @@ export default {
|
|
|
methods: {
|
|
|
...mapMutations(["setNewCurrentRole"]),
|
|
|
|
|
|
+
|
|
|
+ goOrderIndex(){
|
|
|
+ uni.switchTab({
|
|
|
+ url:'/pages/order/index'
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
goMyMessage(){
|
|
|
console.log("++++++++++++++++++++++++")
|
|
|
uni.switchTab({
|
|
@@ -1662,6 +1670,10 @@ body {
|
|
|
|
|
|
.my_order{
|
|
|
}
|
|
|
+
|
|
|
+.my_order_text{
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
.u-slot-title {
|
|
|
|
|
|
text {
|
|
@@ -1681,4 +1693,7 @@ body {
|
|
|
.origin{
|
|
|
margin-top: 0 !important;
|
|
|
}
|
|
|
+ .order_menu_title{
|
|
|
+ color: #666666 !important;
|
|
|
+ }
|
|
|
</style>
|