yj
2024-12-05 ac3234c308e86f20cc63465573f321561ee00690
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
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
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
<template>
  <view class="container">
    <view class="user-section">
      <image class="bg" src="/static/user-bg.jpg" />
      <view class="user-info-box">
        <view class="portrait-box">
          <image class="portrait" :src="userInfo.avatarUrl || '/static/missing-face.png'" />
        </view>
        <view class="info-box">
          <text class="username" @click="toLogin">
            {{ hasLogin ? (userInfo.nickname || '未设置昵称') : '立即登录' }}
          </text>
        </view>
      </view>
      <view class="vip-card-box">
        <image class="card-bg" src="/static/vip-card-bg.png" mode="" />
        <view class="tit">
          <text v-if="isVip" class="yticon icon-iLinkapp-" @click="navTo('/pages/user/vip')">
            <text style="padding-left: 10rpx;">
              VIP会员
            </text>
          </text>
          <text v-else class="yticon icon-iLinkapp-" @click="navTo('/pages/user/vip')">
            <text style="padding-left: 10rpx;">
              开通会员
            </text>
          </text>
        </view>
        <text class="e-m">
          VIP权益
        </text>
        <text class="e-b">
          {{ isVip ? '会员专享VIP价' : '点击立即“立即开通”开通会员' }}
        </text>
        <text v-if="userInfo.gmtVipExpire" class="e-b">
          将于{{ userInfo.gmtVipExpire }}过期
        </text>
      </view>
    </view>
 
    <view
      class="cover-container"
      :style="[{
        transform: coverTransform,
        transition: coverTransition
      }]"
      @touchstart="coverTouchstart"
      @touchmove="coverTouchmove"
      @touchend="coverTouchend"
    >
      <image class="arc" src="/static/arc.png" />
 
      <!-- 订单 -->
      <view class="order-section">
        <view class="order-item" hover-class="common-hover" :hover-stay-time="50" @click="navTo('/pages/order/list?state=0')">
          <text class="yticon icon-shouye" />
          <text>全部订单</text>
        </view>
        <view class="order-item" hover-class="common-hover" :hover-stay-time="50" @click="navTo('/pages/order/list?state=10')">
          <text class="yticon icon-daifukuan" />
          <text>待付款</text>
        </view>
        <view class="order-item" hover-class="common-hover" :hover-stay-time="50" @click="navTo('/pages/order/list?state=30')">
          <text class="yticon icon-yishouhuo" />
          <text>待收货</text>
        </view>
        <view class="order-item" hover-class="common-hover" :hover-stay-time="50" @click="navTo('/pages/order/list?state=60')">
          <text class="yticon icon-shouhoutuikuan" />
          <text>退款/售后</text>
        </view>
      </view>
 
      <view class="history-section icon">
        <view v-if="footprintList.length > 0" class="sec-header">
          <text class="yticon icon-lishijilu" />
          <text>浏览历史</text>
        </view>
        <scroll-view v-if="footprintList.length > 0" scroll-x class="h-list">
          <image v-for="(item, index ) in footprintList" :key="index" :src="item.img + style(200)" mode="aspectFill" @longpress="deleteFootprint(item)" @click="navTo('/pages/product/detail?id=' + item.id)" />
        </scroll-view>
        <list-cell icon="icon-dizhi" icon-color="#5fcda2" title="地址管理" @eventClick="navTo('/pages/address/list')" />
        <list-cell icon="icon-shoucang_xuanzhongzhuangtai" icon-color="#54b4ef" title="我的收藏" @eventClick="navTo('/pages/product/favorite')" />
        <!-- #ifdef MP-WEIXIN -->
        <list-cell icon="icon-huifu" icon-color="#e07472" title="在线客服" :open-type="'contact'" />
        <!-- #endif -->
        <list-cell icon="icon-tuandui" icon-color="#EE82EE" title="个人资料" @eventClick="navTo('/pages/user/profile')" />
        <list-cell icon="icon-iconfontweixin" icon-color="#EEEE00" title="我的优惠券" @eventClick="navTo('/pages/coupon/list?type=user')" />
        <list-cell icon="icon-pinglun-copy" icon-color="#ee883b" title="关于" @eventClick="navTo('/pages/user/about')" />
        <list-cell icon="icon-zuoshang" icon-color="#e07472" title="退出登录" @eventClick="logout()" />
      </view>
    </view>
  </view>
</template>
<script>
import listCell from '@/components/mix-list-cell'
import {
  mapState
} from 'vuex'
let startY = 0; let moveY = 0; const pageAtTop = true
export default {
  components: {
    listCell
  },
  data() {
    return {
      style: this.$api.style,
      coverTransform: 'translateY(0px)',
      coverTransition: '0s',
      moving: false,
      footprintList: [],
      isVip: false
    }
  },
  onShow() {
    this.isVip = this.$api.isVip()
    this.loadFootprint()
  },
  onLoad() {
  },
  computed: {
    ...mapState(['hasLogin', 'userInfo'])
  },
  methods: {
    async loadFootprint() {
      const that = this
      that.$api.request('footprint', 'list').then(res => {
        that.footprintList = res.data
      })
    },
 
    deleteFootprint(item) {
      const that = this
      uni.showModal({
        title: '删除?',
        content: '您确定要删除此足迹吗?',
        success: (e) => {
          if (e.confirm) {
            that.$api.request('footprint', 'delete', {
              footprintId: item.id
            }).then(res => {
              that.loadFootprint()
            })
          }
        }
      })
    },
 
    toLogin() {
      if (!this.hasLogin) {
        uni.navigateTo({
          url: '/pages/public/login'
        })
      }
    },
 
    logout() {
      const that = this
      uni.showModal({
        title: '询问',
        content: '您确定要退出吗?',
        cancelText: '取消',
        confirmText: '确定',
        success: (e) => {
          if (e.confirm) {
            that.$store.commit('logout')
            that.$api.logout()
          }
        }
      })
    },
 
    /**
     * 统一跳转接口,拦截未登录路由
     * navigator标签现在默认没有转场动画,所以用view
     */
    navTo(url) {
      if (!this.hasLogin) {
        url = '/pages/public/login'
      }
      uni.navigateTo({
        url
      })
    },
 
    /**
     *  会员卡下拉和回弹
     *  1.关闭bounce避免ios端下拉冲突
     *  2.由于touchmove事件的缺陷(以前做小程序就遇到,比如20跳到40,h5反而好很多),下拉的时候会有掉帧的感觉
     *    transition设置0.1秒延迟,让css来过渡这段空窗期
     *  3.回弹效果可修改曲线值来调整效果,推荐一个好用的bezier生成工具 http://cubic-bezier.com/
     */
    coverTouchstart(e) {
      if (pageAtTop === false) {
        return
      }
      this.coverTransition = 'transform .1s linear'
      startY = e.touches[0].clientY
    },
    coverTouchmove(e) {
      moveY = e.touches[0].clientY
      let moveDistance = moveY - startY
      if (moveDistance < 0) {
        this.moving = false
        return
      }
      this.moving = true
      if (moveDistance >= 80 && moveDistance < 100) {
        moveDistance = 80
      }
 
      if (moveDistance > 0 && moveDistance <= 80) {
        this.coverTransform = `translateY(${moveDistance}px)`
      }
    },
    coverTouchend() {
      if (this.moving === false) {
        return
      }
      this.moving = false
      this.coverTransition = 'transform 0.3s cubic-bezier(.21,1.93,.53,.64)'
      this.coverTransform = 'translateY(0px)'
    }
  }
}
</script>
<style lang='scss'>
    %flex-center {
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    %section {
        display:flex;
        justify-content: space-around;
        align-content: center;
        background: #fff;
        border-radius: 10upx;
    }
 
    .user-section{
        height: 520upx;
        padding: 100upx 30upx 0;
        position:relative;
        .bg{
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: blur(1px);
    opacity: .7;
        }
    }
    .user-info-box{
        height: 180upx;
        display:flex;
        align-items:center;
        position:relative;
        z-index: 1;
        .portrait{
    width: 130upx;
    height: 130upx;
    border:5upx solid #fff;
    border-radius: 50%;
        }
        .username{
    font-size: $font-lg + 6upx;
    color: $font-color-dark;
    margin-left: 20upx;
        }
    }
 
    .vip-card-box{
        display:flex;
        flex-direction: column;
        color: #f7d680;
        height: 240upx;
        background: rgba(0,0,0,.7);
        border-radius: 16upx 16upx 0 0;
        overflow: hidden;
        position: relative;
        padding: 20upx 24upx;
        .card-bg{
    position:absolute;
    top: 20upx;
    right: 0;
    width: 380upx;
    height: 260upx;
        }
        .b-btn{
    position: absolute;
    right: 20upx;
    top: 16upx;
    width: 132upx;
    height: 40upx;
    text-align: center;
    line-height: 40upx;
    font-size: 22upx;
    color: #36343c;
    border-radius: 20px;
    background: linear-gradient(left, #f9e6af, #ffd465);
    z-index: 1;
        }
        .tit{
    font-size: $font-base+2upx;
    color: #f7d680;
    margin-bottom: 28upx;
    .yticon{
        color: #f6e5a3;
        margin-right: 16upx;
    }
        }
        .e-b{
    font-size: $font-sm;
    color: #d8cba9;
    margin-top: 10upx;
        }
    }
    .cover-container{
        background: $page-color-base;
        margin-top: -150upx;
        padding: 0 30upx;
        position:relative;
        background: #f5f5f5;
        padding-bottom: 20upx;
        .arc{
    position:absolute;
    left: 0;
    top: -34upx;
    width: 100%;
    height: 36upx;
        }
    }
    .tj-sction{
        @extend %section;
        .tj-item{
    @extend %flex-center;
    flex-direction: column;
    height: 140upx;
    font-size: $font-sm;
    color: #75787d;
        }
        .num{
    font-size: $font-lg;
    color: $font-color-dark;
    margin-bottom: 8upx;
        }
    }
    .order-section{
        @extend %section;
        padding: 28upx 0;
        margin-top: 20upx;
        .order-item{
    @extend %flex-center;
    width: 120upx;
    height: 120upx;
    border-radius: 10upx;
    font-size: $font-sm;
    color: $font-color-dark;
        }
        .yticon{
    font-size: 48upx;
    margin-bottom: 18upx;
    color: #fa436a;
        }
        .icon-shouhoutuikuan{
    font-size:44upx;
        }
    }
    .history-section{
        padding: 30upx 0 0;
        margin-top: 20upx;
        background: #fff;
        border-radius:10upx;
        .sec-header{
    display:flex;
    align-items: center;
    font-size: $font-base;
    color: $font-color-dark;
    line-height: 40upx;
    margin-left: 30upx;
    .yticon{
        font-size: 44upx;
        color: #5eba8f;
        margin-right: 16upx;
        line-height: 40upx;
    }
        }
        .h-list{
    white-space: nowrap;
    padding: 30upx 30upx 0;
    image{
        display:inline-block;
        width: 160upx;
        height: 160upx;
        margin-right: 20upx;
        border-radius: 10upx;
    }
        }
    }
 
</style>