Blame view
src/pages/myOrder/components/OrderCard.vue
8.9 KB
46e5b6c99 add myOrder |
1 2 |
<template> <view> |
9a8f39ae3 订单 |
3 |
<view class="card" v-if="current == status" @click="toOrderInfo(status,order.pay_id)"> |
46e5b6c99 add myOrder |
4 |
<view class="cardHeader"> |
9a8f39ae3 订单 |
5 6 7 8 9 10 |
<text class="orderId" v-if="status == '0'||status == '1'">订单号:{{order.mch_id}}</text> <text class="orderId" v-if="status == '2'||status == '3'">下单时间:{{order.pay_time}}</text> <text class="orderType" v-if="status=='0'">待付款</text> <text class="orderType" v-if="status=='1'">待收货</text> <text class="orderType" v-if="status == '2'||status == '3'">已完成</text> <!-- <text class="orderType" v-if="status == '3'">已评价</text> --> |
46e5b6c99 add myOrder |
11 |
</view> |
9a8f39ae3 订单 |
12 13 |
<view class="orderCardInfo" v-for="(orderInfo) in orderInfoList.list" :key="orderInfo"> <image :src="orderInfo.imgUrl" mode="aspectFill"></image> |
46e5b6c99 add myOrder |
14 |
<view class="infoText"> |
9a8f39ae3 订单 |
15 16 |
<view class="orderName">{{orderInfo.p_name}}</view> <view class="orderDescrib">{{orderInfo.p_name}}</view> |
46e5b6c99 add myOrder |
17 |
<view class="infoText-bottom"> |
9a8f39ae3 订单 |
18 19 |
<view class="markPrice">{{orderInfo.nowPrice}}</view> <view class="buy-num">X {{orderInfo.num}}</view> |
46e5b6c99 add myOrder |
20 21 22 |
</view> </view> </view> |
9a8f39ae3 订单 |
23 24 25 26 |
<view class="payPrice">实付:<text class="priceNum">{{order.total_fee}}</text> </view> <!-- 0待付款 1 已付款 待收货 2 已收货待评价 3 已评价 --> <view class="btns" v-if="status == '0'"> <view class="btn-type1" >取消订单</view> |
46e5b6c99 add myOrder |
27 28 |
<view class="btn-type2">去支付</view> </view> |
9a8f39ae3 订单 |
29 30 |
<view class="btns" v-if="status == '1'"> <view class="btn-type2">确认收货</view> |
46e5b6c99 add myOrder |
31 |
</view> |
9a8f39ae3 订单 |
32 33 34 35 36 37 |
<view class="btns" v-if="status == '2'"> <view class="btn-type2">再次购买</view> </view> <!-- <view class="btns" v-if="status == '3'"> <view class="btn-type2">再次购买</view> </view> --> |
46e5b6c99 add myOrder |
38 |
</view> |
9a8f39ae3 订单 |
39 |
<view class="card" v-if="current == '10'" @click="toOrderInfo(status,order.pay_id)"> |
46e5b6c99 add myOrder |
40 |
<view class="cardHeader"> |
9a8f39ae3 订单 |
41 42 43 44 45 46 |
<text class="orderId" v-if="status == '0'||status == '1'">订单号:{{order.mch_id}}</text> <text class="orderId" v-if="status == '2'||status == '3'">下单时间:{{order.pay_time}}</text> <text class="orderType" v-if="status=='0'">待付款</text> <text class="orderType" v-if="status=='1'">待收货</text> <text class="orderType" v-if="status == '2'||status == '3'">已完成</text> <!-- <text class="orderType" v-if="status == '3'">已评价</text> --> |
46e5b6c99 add myOrder |
47 |
</view> |
9a8f39ae3 订单 |
48 49 |
<view class="orderCardInfo" v-if v-for="(orderInfo) in orderInfoList.list" :key="orderInfo"> <image :src="orderInfo.imgUrl" mode="aspectFill"></image> |
46e5b6c99 add myOrder |
50 |
<view class="infoText"> |
9a8f39ae3 订单 |
51 52 |
<view class="orderName">{{orderInfo.p_name}}</view> <view class="orderDescrib">{{orderInfo.p_name}}</view> |
46e5b6c99 add myOrder |
53 |
<view class="infoText-bottom"> |
9a8f39ae3 订单 |
54 55 |
<view class="markPrice">{{orderInfo.nowPrice}}</view> <view class="buy-num">X {{orderInfo.num}}</view> |
46e5b6c99 add myOrder |
56 57 58 |
</view> </view> </view> |
9a8f39ae3 订单 |
59 60 61 |
<view class="payPrice">实付:<text class="priceNum">{{order.total_fee}}</text> </view> <view class="btns" v-if="status == '0'"> <view class="btn-type1" >取消订单</view> |
46e5b6c99 add myOrder |
62 63 |
<view class="btn-type2">去支付</view> </view> |
9a8f39ae3 订单 |
64 65 66 67 68 |
<view class="btns" v-if="status == '1'"> <view class="btn-type2">确认收货</view> </view> <view class="btns" v-if="status == '2'"> <view class="btn-type2">再次购买</view> |
46e5b6c99 add myOrder |
69 |
</view> |
9a8f39ae3 订单 |
70 71 72 |
<!-- <view class="btns" v-if="status == '3'"> <view class="btn-type2">再次购买</view> </view> --> |
46e5b6c99 add myOrder |
73 |
</view> |
72d769fb7 myOrder |
74 75 76 77 |
</view> </template> <script> |
46e5b6c99 add myOrder |
78 79 80 81 82 83 |
export default { props: { /** * 订单数据 */ order: { |
9a8f39ae3 订单 |
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 |
// orderId: Number, // img: String, // name: String, // originCost:String, // price: String, // orderType:Number, // buyNum:Number, finished_time: null, is_refound: String, mch_id: String, money_of_dcw: String, money_of_partner: String, money_of_shop: String, orderJudge: Boolean, order_info: { address:{ cityName: String, countyName: String, detailInfo: String, errMsg: String, nationalCode: String, postalCode: String, provinceName: String, telNumber: String, userName: String, }, cartinfo: ["127"], keyname: "330_1588911391", lefttime: Number, list:[ { cart_id: "127", imgUrl: String, img_index_url: null, memo: String, mp_id: String, nowPrice: String, num: String, oldPrice: Number, p_discount: String, p_name: String, p_root_index: String, p_sale_price: String, peopleName: String, pics: ["79_0_D122D2.jpg","79_1_E0A1ED.jpg","79_2_B00B3D.jpg","79_3_B2CF21.jpg","79_4_33AD1B.jpg"], pid: String, sk_id: String, } ], orderDesc: String, total_fee: Number, }, partner_uid: String, pay_cate: String, pay_id: String, pay_time: String, pay_wood_desc: String, pay_wood_id: String, prepay_id: String, re_check_staus: String, shopid: String, split_userid: String, status: String, // status0待付款 1已付款 待收货 2 已收货待评价 3 已评价 total_fee: String, uid: String, |
46e5b6c99 add myOrder |
150 151 152 153 154 155 |
}, /** * 当前选择 */ current:Number |
72d769fb7 myOrder |
156 |
}, |
9a8f39ae3 订单 |
157 158 159 160 161 162 163 164 165 166 167 168 |
created() { console.log(this.order); // console.log(this.order.status ); // console.log(this.current); }, computed:{ status(){ return this.order.status }, orderInfoList(){ return this.order.order_info[0] } |
72d769fb7 myOrder |
169 170 171 172 |
}, data() { return { }; |
2e191f6b1 修改详情页 |
173 174 175 176 177 178 179 180 181 |
}, methods:{ toRefundment(){ uni.navigateTo({ url: '../refundment/refundment', success: res => {}, fail: () => {}, complete: () => {} }); |
9a8f39ae3 订单 |
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
}, toOrderInfo(status,payId){ console.log(status,payId) switch(status){ // 0待付款 1待收货 2已收货 3 已评价 case '0': uni.navigateTo({ url:`../myOrderPaying/myOrderPaying?status=`+status+`&payId=`+payId, fail(errMsg) { console.log(errMsg) } }) break; case '1': uni.navigateTo({ url:`../myOrderPaying/myOrderPaying?status=`+status+`&payId=`+payId, fail(errMsg) { console.log(errMsg) } }) break; case '2 || 3': uni.navigateTo({ url:`../myOrderPaying/myOrderPaying?status=`+status+`&payId=`+payId, fail(errMsg) { console.log(errMsg) } }) |
9a8f39ae3 订单 |
211 |
break; |
9a8f39ae3 订单 |
212 213 214 215 |
default: break; } |
2e191f6b1 修改详情页 |
216 |
} |
72d769fb7 myOrder |
217 218 219 220 221 |
} } </script> <style lang="scss"> |
987972474 订单页card组件提取 |
222 223 224 225 226 227 228 229 |
.card{ width: 670rpx; height: 478rpx; background: #FFFFFF; box-shadow: 0 0 10px 0 rgba(177,128,128,0.06); border-radius: 8px; border-radius: 8px; margin-top: 20rpx; |
46e5b6c99 add myOrder |
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
padding: 40rpx; box-sizing: border-box; .cardHeader{ width: 100%; height: 40rpx; display: flex; justify-content: space-between; align-items: center; .orderId{ font-size: 12px; color: #999999; } .orderType{ font-size: 14px; color: #FF6B4A; } } .orderCardInfo{ width: 100%; height: 188rpx; display: flex; flex-direction: row; justify-content: space-between; align-items: center; margin-top: 40rpx; image{ height: 188rpx; width: 188rpx; margin-right: 24rpx; } .infoText{ display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; height: 188rpx; |
9a8f39ae3 订单 |
266 |
width: 368rpx; |
46e5b6c99 add myOrder |
267 268 269 270 |
} .orderName{ font-size: 14px; color: #333333; |
9a8f39ae3 订单 |
271 272 273 274 |
display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; |
46e5b6c99 add myOrder |
275 276 277 278 |
} .orderDescrib{ font-size: 12px; color: #999999; |
9a8f39ae3 订单 |
279 280 281 282 |
display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; |
46e5b6c99 add myOrder |
283 284 285 286 |
} .infoText-bottom{ display: flex; flex-direction: row; |
9a8f39ae3 订单 |
287 |
justify-content: flex-start; |
46e5b6c99 add myOrder |
288 289 290 291 292 |
align-items: center; width: 100%; .markPrice{ font-size: 14px; color: #FF6B4A; |
9a8f39ae3 订单 |
293 |
margin-right: 20rpx; |
46e5b6c99 add myOrder |
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
} .buy-num{ font-size: 12px; color: #999999; } } } .payPrice{ text-align: right; margin: 20rpx 0; font-size: 14px; color: #333333; .priceNum{ font-size: 14px; color: #FF6B4A; } } .btns{ display: flex; justify-content: flex-end; align-items: center; .btn-type1{ height: 48rpx; width: 156rpx; border: 1px solid #FF6B4A; border-radius: 12px; border-radius: 12px; text-align: center; line-height: 48rpx; font-size: 12px; color: #FF6B4A; } .btn-type2{ height: 48rpx; width: 140rpx; background: #FF6B4A; border-radius: 12px; border-radius: 12px; text-align: center; line-height: 48rpx; font-size: 12px; color: #FFFFFF; margin-left: 20rpx; } } |
72d769fb7 myOrder |
339 340 |
} </style> |