Blame view

pages/businessCard/businessCard.vue 18.4 KB
4b045f7c   刘淇   江阴初始化项目
1
2
  <template>
      <view>
4b045f7c   刘淇   江阴初始化项目
3
4
          <uni-section title="50%(折扣券)" type="line">
              <uni-card padding="0" spacing="0">
19569f2b   刘淇   购买券
5
6
                  <!--<template v-slot:cover>-->
                      <!--<view class="custom-cover">-->
4b045f7c   刘淇   江阴初始化项目
7
8
                          <!--<image class="cover-image" mode="aspectFill" :src="cover">-->
                          <!--</image>-->
19569f2b   刘淇   购买券
9
10
11
12
13
                          <!--<view class="cover-content">-->
                              <!--<text class="uni-subtitle uni-white">今日新闻热点</text>-->
                          <!--</view>-->
                      <!--</view>-->
                  <!--</template>-->
4b045f7c   刘淇   江阴初始化项目
14
                  <uni-list>
19569f2b   刘淇   购买券
15
                      <uni-list-item title="适应车场"   rightText="万达商业广场"  >
4b045f7c   刘淇   江阴初始化项目
16
17
                          <text></text>
                      </uni-list-item>
19569f2b   刘淇   购买券
18
                      <uni-list-item title="价格:¥5/张" rightText="商户库存:0张"></uni-list-item>
4b045f7c   刘淇   江阴初始化项目
19
20
                  </uni-list>
                  <view slot="actions" class="card-actions no-border">
19569f2b   刘淇   购买券
21
22
23
24
  
                      <view class="card-actions-item" @click="actionsClick('购买')">
                          <uni-icons type="cart-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">购买</text>
4b045f7c   刘淇   江阴初始化项目
25
                      </view>
e3eb21f6   刘淇   发放券
26
                      <view class="card-actions-item" @click="actionsClick('发放')">
19569f2b   刘淇   购买券
27
                          <uni-icons type="redo-filled" size="18" color="#999"></uni-icons>
e3eb21f6   刘淇   发放券
28
29
30
31
32
                          <text class="card-actions-item-text">发放</text>
                      </view>
                      <view class="card-actions-item" @click="actionsClick('打印')">
                          <uni-icons type="shop-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">打印</text>
4b045f7c   刘淇   江阴初始化项目
33
                      </view>
e3eb21f6   刘淇   发放券
34
35
  
  
4b045f7c   刘淇   江阴初始化项目
36
37
38
39
                  </view>
              </uni-card>
          </uni-section>
  
19569f2b   刘淇   购买券
40
          <uni-section title="2小时(时长券)" type="line">
4b045f7c   刘淇   江阴初始化项目
41
              <uni-card padding="0" spacing="0">
19569f2b   刘淇   购买券
42
43
44
45
46
47
48
49
50
                  <!--<template v-slot:cover>-->
                  <!--<view class="custom-cover">-->
                  <!--<image class="cover-image" mode="aspectFill" :src="cover">-->
                  <!--</image>-->
                  <!--<view class="cover-content">-->
                  <!--<text class="uni-subtitle uni-white">今日新闻热点</text>-->
                  <!--</view>-->
                  <!--</view>-->
                  <!--</template>-->
4b045f7c   刘淇   江阴初始化项目
51
                  <uni-list>
19569f2b   刘淇   购买券
52
53
54
55
                      <uni-list-item title="适应车场"   rightText="万达商业广场"  >
                          <text></text>
                      </uni-list-item>
                      <uni-list-item title="价格:¥5/张" rightText="商户库存:0张"></uni-list-item>
4b045f7c   刘淇   江阴初始化项目
56
57
                  </uni-list>
                  <view slot="actions" class="card-actions no-border">
19569f2b   刘淇   购买券
58
59
60
61
  
                      <view class="card-actions-item" @click="actionsClick('购买')">
                          <uni-icons type="cart-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">购买</text>
4b045f7c   刘淇   江阴初始化项目
62
                      </view>
19569f2b   刘淇   购买券
63
  
4b045f7c   刘淇   江阴初始化项目
64
65
66
67
                  </view>
              </uni-card>
          </uni-section>
  
19569f2b   刘淇   购买券
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
          <uni-section title="5元(金额券)" type="line">
              <uni-card padding="0" spacing="0">
                  <!--<template v-slot:cover>-->
                  <!--<view class="custom-cover">-->
                  <!--<image class="cover-image" mode="aspectFill" :src="cover">-->
                  <!--</image>-->
                  <!--<view class="cover-content">-->
                  <!--<text class="uni-subtitle uni-white">今日新闻热点</text>-->
                  <!--</view>-->
                  <!--</view>-->
                  <!--</template>-->
                  <uni-list>
                      <uni-list-item title="适应车场"   rightText="万达商业广场"  >
                          <text></text>
                      </uni-list-item>
                      <uni-list-item title="价格:¥5/张" rightText="商户库存:0张"></uni-list-item>
                  </uni-list>
                  <view slot="actions" class="card-actions no-border">
  
                      <view class="card-actions-item" @click="actionsClick('购买')">
                          <uni-icons type="cart-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">购买</text>
                      </view>
4b045f7c   刘淇   江阴初始化项目
91
  
4b045f7c   刘淇   江阴初始化项目
92
                  </view>
19569f2b   刘淇   购买券
93
94
              </uni-card>
          </uni-section>
4b045f7c   刘淇   江阴初始化项目
95
96
  
  
19569f2b   刘淇   购买券
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
          <uni-section title="满10减5(满减券)" type="line">
              <uni-card padding="0" spacing="0">
                  <!--<template v-slot:cover>-->
                  <!--<view class="custom-cover">-->
                  <!--<image class="cover-image" mode="aspectFill" :src="cover">-->
                  <!--</image>-->
                  <!--<view class="cover-content">-->
                  <!--<text class="uni-subtitle uni-white">今日新闻热点</text>-->
                  <!--</view>-->
                  <!--</view>-->
                  <!--</template>-->
                  <uni-list>
                      <uni-list-item title="适应车场"   rightText="万达商业广场"  >
                          <text></text>
                      </uni-list-item>
                      <uni-list-item title="价格:¥5/张" rightText="商户库存:0张"></uni-list-item>
                  </uni-list>
                  <view slot="actions" class="card-actions no-border">
  
                      <view class="card-actions-item" @click="actionsClick('购买')">
                          <uni-icons type="cart-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">购买</text>
                      </view>
4b045f7c   刘淇   江阴初始化项目
120
  
4b045f7c   刘淇   江阴初始化项目
121
                  </view>
19569f2b   刘淇   购买券
122
123
              </uni-card>
          </uni-section>
4b045f7c   刘淇   江阴初始化项目
124
  
4b045f7c   刘淇   江阴初始化项目
125
  
19569f2b   刘淇   购买券
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
          <uni-section title="单次(单次券)" type="line">
              <uni-card padding="0" spacing="0">
                  <!--<template v-slot:cover>-->
                  <!--<view class="custom-cover">-->
                  <!--<image class="cover-image" mode="aspectFill" :src="cover">-->
                  <!--</image>-->
                  <!--<view class="cover-content">-->
                  <!--<text class="uni-subtitle uni-white">今日新闻热点</text>-->
                  <!--</view>-->
                  <!--</view>-->
                  <!--</template>-->
                  <uni-list>
                      <uni-list-item title="适应车场"   rightText="万达商业广场"  >
                          <text></text>
                      </uni-list-item>
                      <uni-list-item title="价格:¥5/张" rightText="商户库存:0张"></uni-list-item>
                  </uni-list>
                  <view slot="actions" class="card-actions no-border">
4b045f7c   刘淇   江阴初始化项目
144
  
19569f2b   刘淇   购买券
145
146
147
148
                      <view class="card-actions-item" @click="actionsClick('购买')">
                          <uni-icons type="cart-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">购买</text>
                      </view>
4b045f7c   刘淇   江阴初始化项目
149
  
4b045f7c   刘淇   江阴初始化项目
150
                  </view>
19569f2b   刘淇   购买券
151
152
              </uni-card>
          </uni-section>
4b045f7c   刘淇   江阴初始化项目
153
  
19569f2b   刘淇   购买券
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
          <uni-section title="单天(包天券)" type="line">
              <uni-card padding="0" spacing="0">
                  <!--<template v-slot:cover>-->
                  <!--<view class="custom-cover">-->
                  <!--<image class="cover-image" mode="aspectFill" :src="cover">-->
                  <!--</image>-->
                  <!--<view class="cover-content">-->
                  <!--<text class="uni-subtitle uni-white">今日新闻热点</text>-->
                  <!--</view>-->
                  <!--</view>-->
                  <!--</template>-->
                  <uni-list>
                      <uni-list-item title="适应车场"   rightText="万达商业广场"  >
                          <text></text>
                      </uni-list-item>
                      <uni-list-item title="价格:¥5/张" rightText="商户库存:0张"></uni-list-item>
                  </uni-list>
                  <view slot="actions" class="card-actions no-border">
4b045f7c   刘淇   江阴初始化项目
172
  
19569f2b   刘淇   购买券
173
174
175
176
                      <view class="card-actions-item" @click="actionsClick('购买')">
                          <uni-icons type="cart-filled" size="18" color="#999"></uni-icons>
                          <text class="card-actions-item-text">购买</text>
                      </view>
4b045f7c   刘淇   江阴初始化项目
177
  
4b045f7c   刘淇   江阴初始化项目
178
                  </view>
19569f2b   刘淇   购买券
179
180
              </uni-card>
          </uni-section>
4b045f7c   刘淇   江阴初始化项目
181
182
183
  
  
  
19569f2b   刘淇   购买券
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
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
          <!--<view class="statistics yellow-bg uni-list-cell-pd" style="color: #fff">共18笔充值,充值总金额100.00元</view>-->
          <!--<view class="uni-list">-->
              <!--<view class="uni-list-cell">-->
                  <!--<view class="uni-list-cell-left">-->
                      <!--消费类型-->
                  <!--</view>-->
                  <!--<view class="uni-list-cell-db">-->
                      <!--<picker @change="bindPickerChange" :value="index" :range="array">-->
                          <!--<view class="uni-input">{{array[index]}}</view>-->
                      <!--</picker>-->
                  <!--</view>-->
              <!--</view>-->
          <!--</view>-->
  
          <!--<view class="uni-list">-->
              <!--<view class="uni-list-cell">-->
                  <!--<view class="uni-list-cell-left">-->
                      <!--充值方式-->
                  <!--</view>-->
                  <!--<view class="uni-list-cell-db">-->
                      <!--<picker @change="bindPickerChangeWay" :value="indexWay" :range="arrayWay">-->
                          <!--<view class="uni-input">{{arrayWay[indexWay]}}</view>-->
                      <!--</picker>-->
                  <!--</view>-->
              <!--</view>-->
          <!--</view>-->
  
  
          <!--<view class="uni-list">-->
              <!--<view class="uni-list-cell">-->
                  <!--<view class="uni-list-cell-left">-->
                      <!--开始时间-->
                  <!--</view>-->
                  <!--<view class="uni-list-cell-db">-->
                      <!--<picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindStartDateChange">-->
                          <!--<view class="uni-input">{{benginDate}}</view>-->
                      <!--</picker>-->
                  <!--</view>-->
              <!--</view>-->
          <!--</view>-->
  
          <!--<view class="uni-list">-->
              <!--<view class="uni-list-cell">-->
                  <!--<view class="uni-list-cell-left">-->
                      <!--结束时间-->
                  <!--</view>-->
                  <!--<view class="uni-list-cell-db">-->
                      <!--<picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindEndDateChange">-->
                          <!--<view class="uni-input">{{overDate}}</view>-->
                      <!--</picker>-->
                  <!--</view>-->
              <!--</view>-->
          <!--</view>-->
  
          <!--&lt;!&ndash; <view class="border-bg"></view> &ndash;&gt;-->
4b045f7c   刘淇   江阴初始化项目
239
  
19569f2b   刘淇   购买券
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
  
          <!--<uni-load-more class="load"-->
                         <!--:content-text="contentText"-->
                         <!--:status="status"-->
                         <!--:icon-size="24"-->
                         <!--:iconType="iconType"-->
                         <!--v-if="rows.length == 0">-->
  
              <!--<uni-list class="rechargeWrap">-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text>+66</text>-->
                      <!--<text>充值成功</text>-->
                  <!--</view>-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text class="color-green">微信充值</text>-->
                      <!--<text>2020-10-01 01:01:01</text>-->
                  <!--</view>-->
              <!--</uni-list>-->
  
              <!--<uni-list class="rechargeWrap">-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text>+66</text>-->
                      <!--<text>充值成功</text>-->
                  <!--</view>-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text class="color-blue">支付宝充值</text>-->
                      <!--<text>2020-10-01 01:01:01</text>-->
                  <!--</view>-->
              <!--</uni-list>-->
  
              <!--<uni-list class="rechargeWrap">-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text>+66</text>-->
                      <!--<text>充值成功</text>-->
                  <!--</view>-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text class="color-red">线下公对公充值</text>-->
                      <!--<text>2020-10-01 01:01:01</text>-->
                  <!--</view>-->
              <!--</uni-list>-->
  
              <!--<uni-list class="rechargeWrap">-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text>-66</text>-->
                      <!--<text>支付成功</text>-->
                  <!--</view>-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text class="color-green">购买卡券</text>-->
                      <!--<text>2020-10-01 01:01:01</text>-->
                  <!--</view>-->
                  <!--<view class="rechargeArrow">-->
                      <!--&gt;-->
                  <!--</view>-->
              <!--</uni-list>-->
  
  
  
              <!--<uni-list class="rechargeWrap">-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text>-66</text>-->
                      <!--<text>支付成功</text>-->
                  <!--</view>-->
                  <!--<view class="recordCon uni-list-cell-pd">-->
                      <!--<text class="">停车支付</text>-->
                      <!--<text>2020-10-01 01:01:01</text>-->
                  <!--</view>-->
                  <!--<view class="rechargeArrow">-->
                      <!--&gt;-->
                  <!--</view>-->
              <!--</uni-list>-->
  
          <!--</uni-load-more>-->
4b045f7c   刘淇   江阴初始化项目
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
  
  
      </view>
  </template>
  
  <script>
  import common from "../../common/common.js";
  export default {
    data() {
      const currentDate = this.getDate({
        format: true
      })
      return {
        title: 'picker',
        array: ['全部', '充值', '支付'],
        arrayWay: ['所有方式', '微信', '线下公对公'],
        index: 0,
        indexWay: 0,
        benginDate: currentDate,
        overDate: currentDate,
        rows:[],
        pageNum:1,//当前页
        pageSize:1,//每页条数
        reload:false,
        status:'more',
        contentText:{
          contentdown:'上拉加载更多~',
          contentrefresh:'正在加载更多~',
          contentmore:'我是有底线的~'
        },
        iconType:'auto', // 图标样式
      }
    },
    onLoad(params) {
      wx.showShareMenu({
        withShareTicket: true
      })
      // this.mycarNumber = params.carNumber;
      // this.myorderId = params.orderId;
      // this.myparkCode = params.parkCode;
      // this.myorderState = params.orderState;
      // this.totalFee = params.totalFee
      // this.unPayFee = params.unPayFee
      // if (params.orderState == 5) {
      //   //停车补缴单 103
      //   this.mypaySrcType = '103'
      // } else {
      //   this.mypaySrcType = '101'
      // }
      // // this.GetbillQueryInfo(this.mycarNumber, this.myorderId, this.myparkCode);
      // this.getWxCode();
      // this.PDlogin();
      //console.log("xxxmake = "+this.makedateFormat());
    },
    onShow() {
      var me = this;
      var userInfo = me.getGlobalUser("globalUser");
      if (userInfo != null) {
        me.phoneNumb = userInfo.userPhone;
      }
      var pages = getCurrentPages();
      var currPage = pages[pages.length - 1]; //当前页面
      console.log('currPage.data.selCoupon = ' + currPage.data.selCoupon);
      me.selCoupon = currPage.data.selCoupon;
      console.log(JSON.stringify(me.selCoupon));
      // me.GetbillQueryInfo(me.mycarNumber, me.myorderId, me.myparkCode, me.selCoupon.cardNo, me.selCoupon.couponType, me.selCoupon
      //   .discValue);
      // GetbillQueryInfo(carnum, orderId, parkCode, cardNo, couponType, disValue) {
    },
    computed: {
      startDate() {
        return this.getDate('start');
      },
      endDate() {
        return this.getDate('end');
      }
    },
    methods: {
      actionsClick(text){
        uni.showToast({
          title:text,
          icon:'none'
        })
      },
      bindPickerChange: function (e) {
        console.log('picker发送选择改变,携带值为', e.detail.value)
        this.index = e.detail.value
      },
      bindPickerChangeWay: function (e) {
        console.log('picker发送选择改变,携带值为', e.detail.value)
        this.indexWay = e.detail.value
      },
      bindStartDateChange: function (e) {
        this.benginDate = e.detail.value
      },
      bindEndDateChange: function (e) {
        this.overDate = e.detail.value
      },
      getDate(type) {
        const date = new Date();
        let year = date.getFullYear();
        let month = date.getMonth() + 1;
        let day = date.getDate();
        if (type === 'start') {
          year = year - 60;
        } else if (type === 'end') {
          year = year + 2;
        }
        month = month > 9 ? month : '0' + month;
        day = day > 9 ? day : '0' + day;
        return `${year}-${month}-${day}`;
      },
    }
  }
  </script>
  
  <style lang="scss" scoped>
19569f2b   刘淇   购买券
429
430
431
      /deep/ .uni-section{
          padding-bottom: 10px;
      }
4b045f7c   刘淇   江阴初始化项目
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
      .rechargeWrap{
          position: relative;
          .rechargeArrow{
              position: absolute;
              right: 10px;
              top: 30px;
              font-size: 20px;
              color: #999;
          }
      }
      .recordCon {
          padding-right: 35px;
          color: #999;
          display: flex;
          justify-content: space-between;
      }
  
      .container {
          overflow: hidden;
      }
  
      .custom-cover {
          flex: 1;
          flex-direction: row;
          position: relative;
      }
  
      .cover-content {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 40px;
          background-color: rgba($color: #000000, $alpha: 0.4);
          display: flex;
          flex-direction: row;
          align-items: center;
          padding-left: 15px;
          font-size: 14px;
          color: #fff;
      }
  
      .card-actions {
          display: flex;
          flex-direction: row;
          justify-content: space-around;
          align-items: center;
          height: 45px;
          border-top: 1px #eee solid;
      }
      .card-actions-item {
          display: flex;
          flex-direction: row;
          align-items: center;
      }
      .card-actions-item-text {
          font-size: 12px;
          color: #666;
          margin-left: 5px;
      }
      .cover-image {
          flex: 1;
          height: 150px;
      }
      .no-border {
          border-width: 0;
      }
  </style>