Blame view

src/pages/myOrder/components/OrderCard.vue 8.11 KB
46e5b6c99   BigBoss   add myOrder
1
  <template>
92d01cfd5   Adam   修正订单数据
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
    <view>
      <view
        class="card"
        v-if="current == status"
        @click="toOrderInfo(status,order.pay_id)"
      >
        <view class="cardHeader">
          <text
            class="orderId"
            v-if="status == '0'||status == '1'"
          >订单号:{{order.pay_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> -->
        </view>
        <view
          class="orderCardInfo"
36e559203   BigBoss   逻辑完善
33
          v-for="(orderInfo, index) in orderInfoList"
92d01cfd5   Adam   修正订单数据
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
          :key="index"
        >
          <image
            :src="orderInfo.imgUrl"
            mode="aspectFill"
          ></image>
          <view class="infoText">
            <view class="orderName">{{orderInfo.p_name}}</view>
            <view class="orderDescrib">{{orderInfo.p_name}}</view>
            <view class="infoText-bottom">
              <view class="markPrice">{{orderInfo.nowPrice}}</view>
              <view class="buy-num">X {{orderInfo.num}}</view>
            </view>
          </view>
        </view>
        <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>
          <view class="btn-type2">去支付</view>
        </view>
        <view
          class="btns"
          v-if="status == '1'"
        >
          <view class="btn-type2">确认收货</view>
        </view>
        <view
          class="btns"
          v-if="status == '2'"
        >
34703a767   BigBoss   订单逻辑修改
68
          <view class="btn-type2" @click="toDetail">再次购买</view>
92d01cfd5   Adam   修正订单数据
69
70
        </view>
        <!-- 	<view class="btns" v-if="status == '3'">
9a8f39ae3   BigBoss   订单
71
72
  				<view class="btn-type2">再次购买</view>
  			</view> -->
46e5b6c99   BigBoss   add myOrder
73
  		</view>
9a8f39ae3   BigBoss   订单
74
  		<view class="card" v-if="current == '10'" @click="toOrderInfo(status,order.pay_id)">
46e5b6c99   BigBoss   add myOrder
75
  			<view class="cardHeader">
34703a767   BigBoss   订单逻辑修改
76
  				<text class="orderId" v-if="status == '0'||status == '1'">订单号:{{order.pay_id}}</text>
9a8f39ae3   BigBoss   订单
77
78
79
80
81
  				<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   BigBoss   add myOrder
82
  			</view>
36e559203   BigBoss   逻辑完善
83
  			<view class="orderCardInfo"  v-for="(orderInfo) in orderInfoList" :key="orderInfo">
9a8f39ae3   BigBoss   订单
84
  				<image :src="orderInfo.imgUrl" mode="aspectFill"></image>
46e5b6c99   BigBoss   add myOrder
85
  				<view class="infoText">
9a8f39ae3   BigBoss   订单
86
87
  					<view class="orderName">{{orderInfo.p_name}}</view>
  					<view class="orderDescrib">{{orderInfo.p_name}}</view>
46e5b6c99   BigBoss   add myOrder
88
  					<view class="infoText-bottom">
9a8f39ae3   BigBoss   订单
89
90
  						<view class="markPrice">{{orderInfo.nowPrice}}</view>
  						<view class="buy-num">X {{orderInfo.num}}</view>
46e5b6c99   BigBoss   add myOrder
91
92
93
  					</view>
  				</view>
  			</view>
9a8f39ae3   BigBoss   订单
94
95
96
  			<view class="payPrice">实付:<text class="priceNum">{{order.total_fee}}</text> </view>
  			<view class="btns" v-if="status == '0'">
  				<view class="btn-type1" >取消订单</view>
46e5b6c99   BigBoss   add myOrder
97
98
  				<view class="btn-type2">去支付</view>
  			</view>
9a8f39ae3   BigBoss   订单
99
100
101
  			<view class="btns" v-if="status == '1'">
  				<view class="btn-type2">确认收货</view>
  			</view>
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
102
  			<view class="btns" v-if="status == '2'||status == '3'">
34703a767   BigBoss   订单逻辑修改
103
  				<view class="btn-type2" @click="toDetail(order.order_info[0].pid)">再次购买</view>
46e5b6c99   BigBoss   add myOrder
104
  			</view>
9a8f39ae3   BigBoss   订单
105
  			<!-- <view class="btns" v-if="status == '3'">
54c9be564   BigBoss   修改冲突
106
  
9a8f39ae3   BigBoss   订单
107
108
  				<view class="btn-type2">再次购买</view>
  			</view> -->
92d01cfd5   Adam   修正订单数据
109
110
      </view>
    </view>
72d769fb7   范牧   myOrder
111
112
113
  </template>
  
  <script>
46e5b6c99   BigBoss   add myOrder
114
115
116
117
118
  	export default {
  		props: {
  			/**
  			 * 订单数据
  			 */
36e559203   BigBoss   逻辑完善
119
  			order: {},
46e5b6c99   BigBoss   add myOrder
120
121
122
123
124
  			/**
  			 * 当前选择
  			 */
  			current:Number
  			
72d769fb7   范牧   myOrder
125
  		},
9a8f39ae3   BigBoss   订单
126
  		created() {
34703a767   BigBoss   订单逻辑修改
127
  			console.log('order',this.order);
9a8f39ae3   BigBoss   订单
128
129
130
131
132
133
134
135
  			// console.log(this.order.status );
  			// console.log(this.current);
  		},
  		computed:{
  			status(){
  				return this.order.status
  			},
  			orderInfoList(){
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
136
  				return this.order.order_info
9a8f39ae3   BigBoss   订单
137
  			}
72d769fb7   范牧   myOrder
138
139
140
141
  		},
  		data() {
  			return {
  			};
2e191f6b1   BigBoss   修改详情页
142
143
  		},
  		methods:{
34703a767   BigBoss   订单逻辑修改
144
145
146
147
148
149
150
  			toDetail(pid){
  				console.log('pid',pid)
  				uni.navigateTo({
  					url: '../details/details?pid='+pid,
  					fail: (res) => {console.log(res)},
  				});
  			},
2e191f6b1   BigBoss   修改详情页
151
152
153
154
155
156
157
  			toRefundment(){
  				uni.navigateTo({
  					url: '../refundment/refundment',
  					success: res => {},
  					fail: () => {},
  					complete: () => {}
  				});
9a8f39ae3   BigBoss   订单
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
  			},
  			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   BigBoss   订单
187
  					break;
9a8f39ae3   BigBoss   订单
188
189
190
191
  					default:
  					break;
  					
  				}
2e191f6b1   BigBoss   修改详情页
192
  			}
72d769fb7   范牧   myOrder
193
194
  		}
  	}
92d01cfd5   Adam   修正订单数据
195
  
72d769fb7   范牧   myOrder
196
197
198
  </script>
  
  <style lang="scss">
92d01cfd5   Adam   修正订单数据
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
  .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;
    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;
        width: 368rpx;
      }
      .orderName {
        font-size: 14px;
        color: #333333;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }
      .orderDescrib {
        font-size: 12px;
        color: #999999;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }
      .infoText-bottom {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        .markPrice {
          font-size: 14px;
          color: #ff6b4a;
          margin-right: 20rpx;
        }
        .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
317
  </style>