Commit 1813d6b6 authored by 罗超's avatar 罗超

2

parent 31582beb
......@@ -35,10 +35,10 @@
"root": "pages/favorite",
"pages": [{
"path": "favorite"
},{
"path":"favoriteKotra"
}, {
"path": "favoriteKotra"
}]
},{
}, {
"root": "pages/foot",
"pages": [{
"path": "index/index"
......@@ -827,8 +827,18 @@
"path": "tixianApply" //提现申请
}, {
"path": "orderMessage" //订单消息
},{
"path": "orderSearch" //订单搜索页
}, {
"path": "orderSearch" //订单搜索页
}, {
"path": "orderDetail", //订单详情
"style": {
"navigationStyle": "custom"
}
}, {
"path": "afterOrderDetail", //售后订单详情
"style": {
"navigationStyle": "custom"
}
}]
}
],
......
<template>
<view class="item">
<view class="flex-between orderNum">
<view class="flex-between orderNum" @click="goOrderDetail(data)">
<text>订单号:{{ data.OrderNo }}</text>
<text style="color: #446dfc">{{ data.OrderStatusName }}</text>
</view>
......@@ -157,6 +157,12 @@ export default {
url: url,
});
},
goOrderDetail(item) {
console.log(348, item);
uni.navigateTo({
url: "/pages/MallMange/orderDetail?id=" + item.OrderId,
});
},
//打电话
call(num) {
uni.makePhoneCall({
......
<template>
<view class="item">
<view class="flex-between orderNum">
<view class="flex-between orderNum" @click="goOrderDetail(data)">
<text>订单号:{{ data.ReOrderNo }}</text>
<text style="color: #446dfc">{{ data.ReOrderStatusName }}</text>
</view>
......@@ -169,6 +169,12 @@ export default {
uni.navigateTo({
url: url,
});
},
goOrderDetail(item) {
console.log(174, item);
uni.navigateTo({
url: "/pages/MallMange/afterOrderDetail?id=" + item.OrderId,
});
},
//打电话
call(num) {
......
......@@ -339,6 +339,11 @@ export default {
};
},
methods: {
goOrderSearch(){
uni.navigateTo({
url: '/pages/MallMange/orderSearch?orderType='+this.orderType
});
},
//筛选时间
confirm() {
if (this.orderType === 1) {
......
......@@ -21,7 +21,7 @@
</template>
<template v-slot:content>
<view>
<view class="u-order-desc" style="padding-bottom: 60rpx;margin-top: 5rpx;font-size: 26rpx;">收货地址:{{address}}</view>
<view class="u-order-desc" style="padding-bottom: 60rpx;margin-top: 5rpx;font-size: 26rpx;">收货地址:{{address||''}}</view>
</view>
</template>
</u-time-line-item>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment