Blame view
src/pages/user/user.vue
11.4 KB
0db291810 “-mcomfirmOder页面 |
1 |
<template> |
fb85b244c user页面 |
2 |
<view class="wrap"> |
55ddb3f8a 登陆逻辑修改 |
3 |
<view v-if="isAuth" class="content"> |
fb85b244c user页面 |
4 5 |
<view class="userInfo"> <view class="info"> |
55ddb3f8a 登陆逻辑修改 |
6 |
<image :src="headerphoto" mode="aspectFill"></image> |
fb85b244c user页面 |
7 |
<view class="infoText"> |
55ddb3f8a 登陆逻辑修改 |
8 |
<text class="userName">{{nickName}}</text> |
fb85b244c user页面 |
9 10 |
</view> </view> |
9a8f39ae3 订单 |
11 |
<!-- <view class="service"> |
fb85b244c user页面 |
12 |
<image src="../../static/serviceLogo.png" mode="aspectFill"></image> |
9a8f39ae3 订单 |
13 14 15 16 17 18 |
</view> --> </view> <view class="myOpticsData"> <view class="left"> <image src="../../static/img/user/dataWrite.png" mode="aspectFit"></image> <text>验光数据</text> |
fb85b244c user页面 |
19 |
</view> |
9a8f39ae3 订单 |
20 |
<image src="../../static/right.png" mode="aspectFit"></image> |
fb85b244c user页面 |
21 22 23 24 |
</view> <view class="myOrder"> <view class="orderHeader"> <text>全部订单</text> |
9a8f39ae3 订单 |
25 |
<view class="btn" @click="toMyOrder('10')"> |
fb85b244c user页面 |
26 |
全部 |
9a8f39ae3 订单 |
27 |
<image src="../../static/right.png" mode="aspectFit"></image> |
fb85b244c user页面 |
28 29 30 |
</view> </view> <view class="orderBody"> |
9a8f39ae3 订单 |
31 32 |
<view class="item waitPay" @click="toMyOrder('0')"> <image src="../../static/img/user/waitDeliver.png" mode="aspectFit"></image> |
fb85b244c user页面 |
33 34 |
<text>待付款</text> </view> |
9a8f39ae3 订单 |
35 36 |
<view class="item waitDeliver" @click="toMyOrder('1')" > <image src="../../static/img/user/waitPay.png" mode="aspectFit"></image> |
fb85b244c user页面 |
37 38 |
<text>待收货</text> </view> |
9a8f39ae3 订单 |
39 40 41 |
<view class="item waitReceive" @click="toMyOrder('2')"> <image src="../../static/img/user/waitReceive.png" mode="aspectFit"></image> <text>已完成</text> |
fb85b244c user页面 |
42 |
</view> |
9a8f39ae3 订单 |
43 44 45 46 47 48 49 |
<!-- <view class="item service" @click="toMyOrder('3')"> <image src="../../static/img/user/refound.png" mode="aspectFit"></image> <text>已评价</text> </view> --> </view> </view> <view class="someItem"> |
f0cf57997 合并冲突 |
50 |
<!-- <view class="item"> |
9a8f39ae3 订单 |
51 52 53 54 55 |
<view class="left"> <image src="../../static/img/user/shouyi.png" mode="aspectFit"></image> <text>推广记录与收益</text> </view> <image src="../../static/right.png" mode="aspectFit"></image> |
f0cf57997 合并冲突 |
56 |
</view> --> |
9a8f39ae3 订单 |
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
<view class="item"> <view class="left"> <image src="../../static/img/user/introduce.png" mode="aspectFit"></image> <text>系统介绍</text> </view> <image src="../../static/right.png" mode="aspectFit"></image> </view> <view class="item"> <view class="left"> <image src="../../static/img/user/joinUs.png" mode="aspectFit"></image> <text>加入我们</text> </view> <image src="../../static/right.png" mode="aspectFit"></image> </view> <view class="item"> <view class="left"> <image src="../../static/img/user/service.png" mode="aspectFit"></image> <text>联系客服</text> </view> <image src="../../static/right.png" mode="aspectFit"></image> |
fb85b244c user页面 |
77 78 79 80 81 82 83 84 85 86 |
</view> </view> <view class="recommend"> <view class="title"> <view class="line"></view> <view class="text">精选推荐</view> <view class="line"></view> </view> <!-- 商品列表 --> <view class="goods-list"> |
cc196c33c 购物车和用户推荐接口渲染 |
87 88 89 90 91 92 93 |
<scroll-view enable-flex @scrolltolower="handleScrolltolower" scroll-y class="product-list"> <block v-for="(goods) in userRecommandList " :key="goods.list.sk_id"> <view class="product" v-for="(item) in goods.list" :key="item.sk_id"> <Card :goods="item" ></Card> </view> </block> </scroll-view> |
fb85b244c user页面 |
94 95 96 |
<view class="loading-text">{{loadingText}}</view> </view> </view> |
0db291810 “-mcomfirmOder页面 |
97 |
</view> |
55ddb3f8a 登陆逻辑修改 |
98 99 100 101 102 103 104 105 106 107 108 |
<view v-else class="auth"> <view class="icon"></view> <view class="divider"></view> <view class="title">申请获取以下权限</view> <view class="text">获得您的公开信息(昵称、头像等)</view> <button type="primary" open-type="getUserInfo" @getuserinfo="onGotUserInfo" >授权登陆</button> </view> |
0db291810 “-mcomfirmOder页面 |
109 110 111 112 |
</view> </template> <script> |
55ddb3f8a 登陆逻辑修改 |
113 114 115 |
import Card from "@/components/CommodityCard/CommodityCard.vue"; import store from '@/store'; |
0db291810 “-mcomfirmOder页面 |
116 |
export default { |
fb85b244c user页面 |
117 118 119 |
components: { 'Card':Card }, |
0db291810 “-mcomfirmOder页面 |
120 121 |
data() { return { |
cc196c33c 购物车和用户推荐接口渲染 |
122 123 |
isAuth: true, // 是否显示授权页面, pagesnum:1 // 分页请求初始值 |
0db291810 “-mcomfirmOder页面 |
124 125 126 |
} }, onLoad() { |
55ddb3f8a 登陆逻辑修改 |
127 128 129 130 131 132 133 134 135 136 137 |
// 判断是否授权 uni.getSetting({ success(res) { console.log('authSetting',res.authSetting) if(res.authSetting['scope.userInfo'] === true) { this.isAuth = true } else { this.isAuth = false } } }) |
cc196c33c 购物车和用户推荐接口渲染 |
138 |
|
55ddb3f8a 登陆逻辑修改 |
139 140 141 142 143 144 145 146 |
}, computed: { nickName() { console.log('nickName', this.$store.state.user.userInfo) return this.$store.state.user.userInfo.nickName; }, headerphoto() { return this.$store.state.user.userInfo.headerphoto; |
f72f302c7 合并冲突 |
147 |
}, |
db5b5fe00 "修改样式细节" |
148 149 150 |
userRecommandList() { console.log('recommandList', this.$store.state.userRecommand.recommandList); return this.$store.state.userRecommand.recommandList; |
55ddb3f8a 登陆逻辑修改 |
151 |
} |
0db291810 “-mcomfirmOder页面 |
152 |
}, |
cc196c33c 购物车和用户推荐接口渲染 |
153 154 155 |
onLoad:function(){ console.log('usr-my',this.$store.state.user.userInfo) |
f72f302c7 合并冲突 |
156 |
store.dispatch('userRecommand/getRecommandList', { |
cc196c33c 购物车和用户推荐接口渲染 |
157 158 159 160 161 |
// uid:468, uid: this.$store.state.user.userInfo.uid, // openid:"oc8cg0d-0mFIInO4LyrCFtInPWr4", openid:this.$store.state.user.userInfo.openid, page: this.pagesnum |
f72f302c7 合并冲突 |
162 163 |
}); }, |
cc196c33c 购物车和用户推荐接口渲染 |
164 |
|
0db291810 “-mcomfirmOder页面 |
165 |
methods: { |
55ddb3f8a 登陆逻辑修改 |
166 167 168 169 170 171 172 173 174 175 176 |
// 授权 onGotUserInfo(e) { console.log('anthInfo', e); if(e.detail.errMsg == 'getUserInfo:ok') { const { fromInfo } = this.$store.state.user; console.log('=====la', fromInfo) // 用户授权成功 store.dispatch('user/getUserInfo', fromInfo); this.isAuth = true } }, |
9a8f39ae3 订单 |
177 |
toMyOrder(status){ |
066667dc4 add refundProgress |
178 |
uni.navigateTo({ |
9a8f39ae3 订单 |
179 |
url: `../myOrder/myOrder?status=`+status, |
066667dc4 add refundProgress |
180 181 182 183 184 |
success: res => {}, fail: () => {}, complete: () => {} }); }, |
cc196c33c 购物车和用户推荐接口渲染 |
185 186 187 188 189 190 191 192 |
handleScrolltolower(){ // console.log('usr-my',this.$store.state.user.userInfo) this.pagesnum++; store.dispatch('userRecommand/getRecommandList', { uid: this.$store.state.user.userInfo.uid, openid:this.$store.state.user.userInfo.openid, page: this.pagesnum }); |
72a08fa45 icon |
193 |
} |
0db291810 “-mcomfirmOder页面 |
194 195 196 197 |
} } </script> |
fb85b244c user页面 |
198 199 200 201 202 203 |
<style lang="scss"> .warp{ font-size: 24rpx; background-color: #f2f2f2; height: 100vh; } |
0db291810 “-mcomfirmOder页面 |
204 205 206 207 208 |
.content { display: flex; flex-direction: column; align-items: center; justify-content: center; |
fb85b244c user页面 |
209 |
background-color: #F2F2F2; |
0db291810 “-mcomfirmOder页面 |
210 |
} |
fb85b244c user页面 |
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 |
.userInfo{ background-image: linear-gradient(270deg, #FFA481 0%, #FF6B4A 66%); width: 100%; height: 240rpx; color: #FFFFFF; padding: 60rpx 82rpx 80rpx 44rpx; box-sizing: border-box; display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; .info{ display: flex; flex-direction: row; justify-content: space-between; align-items: center; image{ border-radius: 50rpx; height: 100rpx ; width: 100rpx; margin-right: 40rpx; } .infoText{ display: flex; flex-direction: column; justify-content: space-between; align-items: flex-scetart; .userName{ font-size: 18px; color: #FFFFFF; margin-bottom: 8rpx; } .nickName{ font-size: 12px; color: #FFFFFF; } } } |
9a8f39ae3 订单 |
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 |
// .service{ // margin-top: 20rpx; // image{ // height: 36rpx; // width: 36rpx; // } // } } .myOpticsData{ width: 670rpx; height: 120rpx; background-color: #FFFFFF; border-radius: 6px; box-shadow: 1px 1px 7px 0 rgba(133,107,107,0.10); position: relative; bottom: 44rpx; padding: 40rpx; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; .left{ font-size: 14px; color: #333333; display: flex; align-items: center; |
fb85b244c user页面 |
275 |
image{ |
9a8f39ae3 订单 |
276 277 278 |
margin-right: 32rpx; width: 30rpx; height: 34rpx; |
fb85b244c user页面 |
279 280 |
} } |
9a8f39ae3 订单 |
281 282 283 284 |
image{ height: 16px; width: 8px; } |
0db291810 “-mcomfirmOder页面 |
285 |
} |
fb85b244c user页面 |
286 287 288 |
.myOrder{ width: 100%; height: 296rpx; |
9a8f39ae3 订单 |
289 |
// margin-top: 116rpx; |
fb85b244c user页面 |
290 291 292 |
margin-bottom: 20rpx; padding: 0 40rpx; box-sizing: border-box; |
9ff2df1bf 文件名称规范 |
293 294 295 |
background: #FFFFFF; box-shadow: 0 0 4px 0 rgba(133,107,107,0.10); border-radius: 6px; |
fb85b244c user页面 |
296 |
border-radius: 6px; |
0db291810 “-mcomfirmOder页面 |
297 |
display: flex; |
fb85b244c user页面 |
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
flex-direction: column; justify-content: space-around; align-items: center; .orderHeader{ width: 100%; height: 100rpx; display: flex; flex-direction: row; justify-content: space-between; align-items: center; border-bottom: 1px solid #E9E9E9;; font-weight: bold; font-size: 18px; color: #333333; .btn{ font-size: 12px; color: #999999; |
9a8f39ae3 订单 |
315 316 |
display: flex; align-items: center; |
fb85b244c user页面 |
317 318 |
image{ margin-left: 20rpx; |
9a8f39ae3 订单 |
319 320 |
height: 32rpx; width: 16rpx; |
fb85b244c user页面 |
321 322 323 324 325 326 327 |
} } } .orderBody{ width: 100%; display: flex; flex-direction: row; |
9a8f39ae3 订单 |
328 |
justify-content: space-around; |
fb85b244c user页面 |
329 330 331 332 333 334 |
align-items: center; .item{ display: flex; flex-direction: column; align-items: center; image{ |
9a8f39ae3 订单 |
335 |
width: 62rpx; |
fb85b244c user页面 |
336 337 338 339 |
height: 46rpx; } text{ margin-top: 24rpx; |
9ff2df1bf 文件名称规范 |
340 |
font-size: 12px; |
fb85b244c user页面 |
341 342 343 344 |
color: #333333; } } } |
0db291810 “-mcomfirmOder页面 |
345 |
} |
9a8f39ae3 订单 |
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 |
.someItem{ width: 100%; height: 336rpx; background: #FFFFFF; box-shadow: 0 0 4px 0 rgba(133,107,107,0.10); border-radius: 6px; border-radius: 6px; margin-bottom: 18rpx; box-sizing: border-box; padding: 21rpx 48rpx 21rpx 42rpx; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; align-items: center; .item{ display: flex; justify-content: space-between; border-bottom: 1px solid #F2F2F2;; align-items: center; height: 72rpx; width: 100%; .left{ font-size: 14px; color: #333333; display: flex; align-items: center; image{ margin-right: 32rpx; width: 30rpx; height: 34rpx; } } image{ height: 16px; width: 8px; } } } |
fb85b244c user页面 |
386 387 388 389 390 |
.recommend{ background: #FFFFFF; box-shadow: 0 0 4px 0 rgba(133,107,107,0.10); border-radius: 6px; border-radius: 6px; |
ab4209caf update |
391 |
width: 100%; |
fb85b244c user页面 |
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 |
.title{ display: flex; flex-direction: row; align-items: center; justify-content: space-between; padding: 20rpx 40rpx; .line{ width: 264rpx; height: 1rpx; border-bottom: 1px solid #EAEAEA; } .text{ font-family: PingFangSC-Medium; font-size: 14px; color: #333333; letter-spacing: -0.26px; text-align: justify; line-height: 24px; } } .goods-list{ .loading-text{ width: 100%; display: flex; justify-content: center; align-items: center; height: 30px; color: #979797; font-size: 12px; } .product-list{ width: 92%; padding: 0 4% 3vw 4%; display: flex; |
cc196c33c 购物车和用户推荐接口渲染 |
426 |
height: 200px; |
fb85b244c user页面 |
427 428 429 430 431 |
justify-content: space-between; flex-wrap: wrap; .product{ width: 48%; margin: 0 0 20rpx 0; |
9ff2df1bf 文件名称规范 |
432 |
background: #FFFFFF; |
fb85b244c user页面 |
433 434 435 436 |
border: 1px solid #F2F2F2; } } } |
0db291810 “-mcomfirmOder页面 |
437 |
} |
55ddb3f8a 登陆逻辑修改 |
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 |
.auth { height: 100vh; display: flex; flex-direction: column; align-items: center; .icon { width: 140rpx; height: 140rpx; border-radius: 50%; margin-top: 100rpx; background-color: grey; } .divider { height: 1rpx; width: 600rpx; margin-top: 80rpx; background-color: #E6E3E3; } .title { width: 600rpx; margin-top: 50rpx; text-align: left; } .text { width: 600rpx; margin-top: 30rpx; text-align: left; color: #E6E3E3; } button { width: 450rpx; height: 80rpx; line-height: 80rpx; margin-top: 80rpx; border-radius: 30rpx; } } |
fb85b244c user页面 |
475 |
|
9ff2df1bf 文件名称规范 |
476 |
</style> |