6e668ba7
起风了
111
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
<template>
<view class="page">
<pyh-nv ref="nv" :config="nvConfig"></pyh-nv>
<view class="listBox" :style="{'padding-top':(pageTop+'px')}">
<view class="content">
<!-- 订单tab -->
<view class="order-tab">
<view class="tab" :class="{'action':OrderType==0}" @click="onOrderTab(0)">
<text>全部</text>
<text class="line"></text>
</view>
<view class="tab" :class="{'action':OrderType==1}" @click="onOrderTab(1)">
<text>待付款</text>
<text class="line"></text>
</view>
<view class="tab" :class="{'action':OrderType==2}" @click="onOrderTab(2)">
<text>已完成</text>
<text class="line"></text>
</view>
<view class="tab" :class="{'action':OrderType==3}" @click="onOrderTab(3)">
<text>待评价</text>
<text class="line"></text>
</view>
</view>
<!-- 订单列表 -->
<view class="order-list">
<view class="list" v-for="(item,index) in list" @click="onOrderList" :key="index">
<view class="title-status">
<view class="title">
<text>订单号:{{item.funeralUserOrderInfoPo.orderId}}</text>
<!-- <image :src="Baseapi + item.image"></image> -->
</view>
<view class="status">
<text>待付款</text>
</view>
</view>
<view class="goods-list">
<view class="goods">
<view class="thumb">
<image :src="Baseapi + item.orderProductInfoVoList[0].productImage" mode=""></image>
</view>
<view class="item">
<view class="goods-name">
<view class="goods-name-title">{{item.orderProductInfoVoList[0].productName}}</view>
<view>下单时间:{{item.funeralUserOrderInfoPo.orderPlacedTime}}</view>
</view>
<view class="goods-price">
<view class="min">¥{{item.orderProductInfoVoList[0].totalPrice / item.orderProductInfoVoList[0].quantityNumber}}</view>
<view>x{{item.orderProductInfoVoList[0].quantityNumber}}</view>
</view>
</view>
</view>
</view>
<view class="status-btn">
<view>共{{item.orderProductInfoVoList[0].quantityNumber}}件商品,合计<text class="red">¥</text><text class="red big">{{item.orderProductInfoVoList[0].totalPrice}}</text></view>
<view class="btn" @click="myorderdetail(item)">
<image src="../../static/btn.png" mode="widthFix"></image>
<text>查看详情</text>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
Baseapi:"http://zhmz.rsxmzj.cn:8536",
OrderType: 0,
nvConfig:{
title:"商城订单",
bgColor:"#ffffff",
color:"#000000",
fixedAssist:{
hide:true,
},
},
list:[],
cxinfo:{
pageNum:1,
pageSize:10,
status:null,
customerName:""
}
};
},
onPageScroll(e) {this.$refs.nv.pageScroll(e)},
computed:{
pageTop(){return parseInt(88*uni.getSystemInfoSync().windowWidth/750) + uni.getSystemInfoSync().statusBarHeight}
},
onLoad(params) {
console.log("111",params);
this.OrderType = params.type;
this.onOrderTab(params.type);
// this.getuserdd();
},
methods:{
myorderdetail(info){
info = JSON.stringify(info)
uni.navigateTo({
url: '/pages/myorderdetail/myorderdetail?info=' + info,
})
},
onOrderTab(e){
this.OrderType = e;
this.list = []
if(e == 0){
this.cxinfo.status = ''
}
if(e == 1){
this.cxinfo.status = "待付款"
}
if(e == 2){
this.cxinfo.status = "已完成"
}
if(e == 3){
this.cxinfo.status = "待评价"
}
var user = uni.getStorageSync('USERS_KEY')
this.cxinfo.customerName = user.userName
this.cxinfo.userId = user.userId
console.log("user",user);
this.API.getDdxq(this.cxinfo).then(res=>{
console.log(res);
this.list = res.data
})
// this.API.getuserdd(this.cxinfo).then(res=>{
// console.log("用户订单",res);
// for(let i = 0;i < res.rows.length;i++){
// var info = {
// ddid:"",
// name:"",
// time:"",
// number:"",
// price:"",
// image:""
// }
// info.ddid = res.rows[i].orderId;
// info.time = res.rows[i].orderPlacedTime
// this.API.getuserddxq(res.rows[i].orderId).then(res1=>{
// console.log("订单详情",res1);
// info.number = res1.rows[0].quantityNumber
// info.price = info.number * res1.rows[0].unitPrice
// this.API.getspjcxx(res1.rows[0].productId).then(res2=>{
// console.log("产品信息",res2);
// info.name = res2.rows[0].productName;
// info.image = res2.rows[0].productImage;
// this.list.push(info)
// })
// })
// console.log("list",this.list);
// }
// })
},
// 获取用户订单
getuserdd(){
this.list = []
var is = {
userId:uni.getStorageSync("USERS_KEY").userId
}
this.API.getuserdd(is).then(res=>{
console.log("用户订单",res);
for(let i = 0;i < res.rows.length;i++){
console.log(11111);
var info = {
ddid:"",
name:"",
time:"",
number:"",
price:"",
image:""
}
info.ddid = res.rows[i].orderId;
info.time = res.rows[i].orderPlacedTime
this.API.getuserddxq(res.rows[i].orderId).then(res1=>{
console.log("订单详情",res1);
info.number = res1.rows[0].quantityNumber
info.price = info.number * res1.rows[0].unitPrice
this.API.getspjcxx(res1.rows[0].productId).then(res2=>{
console.log("产品信息",res2);
info.name = res2.rows[0].productName;
info.image = res2.rows[0].productImage;
})
})
this.list.push(info)
console.log("订单列表",this.list);
}
})
},
}
}
</script>
<style scoped lang="scss">
@import 'myorder.scss';
</style>
|