index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. <template>
  2. <view class="app-container">
  3. <custom :bgColor="'bg-them'" :backColor="'#FFFFFF'" :isBack="false" v-show="isCustom">
  4. <text slot="content" style="color: #FFFFFF; font-size: 36rpx;">我的</text>
  5. </custom>
  6. <view class="top-container">
  7. <image src="@/static/home/top_bg.png" mode="widthFix" class="bg"></image>
  8. <view class="content">
  9. <view class="title" :style="cuStyle">我的</view>
  10. <view class="user" v-if="isLogin">
  11. <view class="left" @tap="isShowInfoDialog = true">
  12. <block v-if="detail.avatar">
  13. <image :src="detail.avatar" mode="aspectFill" v-if="detail.avatar.indexOf('http') >= 0"></image>
  14. <image :src="imageUrl + detail.avatar" mode="aspectFill" v-else></image>
  15. </block>
  16. <view class="main" v-if="isServiceUser">
  17. <view class="name">{{detail.serviceWorkerBean.workerRealName}}</view>
  18. <view class="text" v-if="detail.serviceWorkerBean.websit">{{detail.serviceWorkerBean.websit}}</view>
  19. </view>
  20. <view class="main" v-else>
  21. <view class="name">{{detail.nickName}}</view>
  22. </view>
  23. </view>
  24. <view class="code" v-if="isServiceUser">
  25. <image src="@/static/mine/code.png" @tap="navigatePage('/pages/mine/mallCode')"></image>
  26. <text>商城二维码</text>
  27. </view>
  28. </view>
  29. <view class="user" @tap="navigatePage('/pages/login/index')" v-else>
  30. <view class="left">
  31. <image :src="configInfo.minLogo3" mode="aspectFill"></image>
  32. <view class="main">
  33. <view class="name">请先登录</view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="order">
  38. <view class="top">
  39. <view class="left">我的订单</view>
  40. <view class="right" @tap="toMyOrder('')">查看全部订单<image src="../../static/icon/right.png"></image></view>
  41. </view>
  42. <view class="list">
  43. <view class="item" @tap="toMyOrder('NOPAY')">
  44. <view class="image"><image src="../../static/mine/order_icon1.png"></image><text v-if="count.noPay > 0">{{count.noPay}}</text></view>
  45. <view>待付款</view>
  46. </view>
  47. <view class="item" @tap="toMyOrder('DFH')">
  48. <view class="image"><image src="../../static/mine/order_icon2.png"></image><text v-if="count.dfh > 0">{{count.dfh}}</text></view>
  49. <view>待发货</view>
  50. </view>
  51. <view class="item" @tap="toMyOrder('YFH')">
  52. <view class="image"><image src="../../static/mine/order_icon3.png"></image><text v-if="count.yfh > 0">{{count.yfh}}</text></view>
  53. <view>待收货</view>
  54. </view>
  55. <view class="item" @tap="toMyOrder('OVER')">
  56. <view class="image"><image src="../../static/mine/order_icon4.png"></image><text v-if="count.ywc > 0">{{count.ywc}}</text></view>
  57. <view>已完成</view>
  58. </view>
  59. <view class="item" @tap="toMyOrder('REFUND')">
  60. <view class="image"><image src="../../static/mine/order_icon5.png"></image><text v-if="count.sh > 0">{{count.sh}}</text></view>
  61. <view>售后服务</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <view class="list-container">
  68. <view class="group" v-if="!isServiceUser">
  69. <view class="item" @tap="navigatePage('/pages/mine/applySalesman')">
  70. <view class="left">
  71. <image src="/static/mine/mine_icon1.png"></image>申请成为业务员
  72. </view>
  73. <view class="right"><image src="/static/icon/right.png"></image></view>
  74. </view>
  75. </view>
  76. <view class="group" v-if="isHeadUser">
  77. <view class="item" @tap="navigatePage('/pages/mine/groupbuy/list')">
  78. <view class="left">
  79. <image src="/static/mine/mine_icon12.png"></image>我的团购
  80. </view>
  81. <view class="right"><image src="/static/icon/right.png"></image></view>
  82. </view>
  83. </view>
  84. <view class="group" v-if="isServiceUser || isHeadUser">
  85. <view class="item" @tap="navigatePage('/pages/mine/profit/list')" v-if="isServiceUser || isHeadUser">
  86. <view class="left">
  87. <image src="/static/mine/mine_icon7.png"></image>我的收益
  88. </view>
  89. <view class="right"><image src="/static/icon/right.png"></image></view>
  90. </view>
  91. <view class="item" @tap="navigatePage('/pages/mine/ranking/list')" v-if="isServiceUser">
  92. <view class="left">
  93. <image src="/static/mine/mine_icon10.png"></image>销售排行榜
  94. </view>
  95. <view class="right"><image src="/static/icon/right.png"></image></view>
  96. </view>
  97. </view>
  98. <view class="group" v-if="isServiceUser">
  99. <view class="item" @tap="navigatePage('/pages/mine/discode/list')" v-if="hasExchangeCode">
  100. <view class="left">
  101. <image src="/static/mine/mine_icon13.png"></image>我的优惠码
  102. </view>
  103. <view class="right"><image src="/static/icon/right.png"></image></view>
  104. </view>
  105. <view class="item" @tap="navigatePage('/pages/mine/discount/list')" v-if="isInnerrUser">
  106. <view class="left">
  107. <image src="/static/mine/mine_icon14.png"></image>用户减免金额{{isExamineUser ? '审核':'申请'}}
  108. </view>
  109. <view class="right"><image src="/static/icon/right.png"></image></view>
  110. </view>
  111. </view>
  112. <view class="group" v-if="isServiceUser">
  113. <view class="item" @tap="navigatePage('/pages/mine/mallCode')">
  114. <view class="left">
  115. <image src="/static/mine/mine_icon9.png"></image>商城二维码
  116. </view>
  117. <view class="right"><image src="/static/icon/right.png"></image></view>
  118. </view>
  119. <view class="item" @tap="navigatePage('/pages/mine/wxCode')">
  120. <view class="left">
  121. <image src="/static/mine/mine_icon9.png"></image>企微二维码
  122. </view>
  123. <view class="right"><image src="/static/icon/right.png"></image></view>
  124. </view>
  125. </view>
  126. <view class="group">
  127. <view class="item" @tap="navigatePage('/pages/mine/exchange/index')">
  128. <view class="left">
  129. <image src="/static/mine/mine_icon15.png"></image>兑换中心
  130. </view>
  131. <view class="right"><image src="/static/icon/right.png"></image></view>
  132. </view>
  133. <view class="item" @tap="navigatePage('/pages/mine/coupon/list')">
  134. <view class="left">
  135. <image src="/static/mine/mine_icon4.png"></image>我的优惠券
  136. </view>
  137. <view class="right"><image src="/static/icon/right.png"></image></view>
  138. </view>
  139. <view class="item" @tap="navigatePage('/pages/mine/address/list')">
  140. <view class="left">
  141. <image src="/static/mine/mine_icon5.png"></image>我的收货地址
  142. </view>
  143. <view class="right"><image src="/static/icon/right.png"></image></view>
  144. </view>
  145. </view>
  146. <view class="group">
  147. <view class="item" @tap="navigatePage('/pages/mine/collection')">
  148. <view class="left">
  149. <image src="/static/mine/mine_icon2.png"></image>我的收藏
  150. </view>
  151. <view class="right"><image src="/static/icon/right.png"></image></view>
  152. </view>
  153. <!-- <view class="item" v-if="!isServiceUser" @tap="toMyManager">
  154. <view class="left">
  155. <image src="/static/mine/mine_icon3.png"></image>我的客户经理
  156. </view>
  157. <view class="right"><image src="/static/icon/right.png"></image></view>
  158. </view> -->
  159. <view class="item" v-if="isServiceUser" @tap="navigatePage('/pages/mine/customer/list')">
  160. <view class="left">
  161. <image src="/static/mine/mine_icon8.png"></image>我的客户列表
  162. </view>
  163. <view class="right"><image src="/static/icon/right.png"></image></view>
  164. </view>
  165. <view class="item" @tap="navigatePage('/pages/mine/workOrder/list')">
  166. <view class="left">
  167. <image src="/static/mine/mine_icon11.png"></image>我的工单信息
  168. </view>
  169. <view class="right"><image src="/static/icon/right.png"></image></view>
  170. </view>
  171. </view>
  172. <view class="group">
  173. <button class="item" open-type="contact">
  174. <view class="left">
  175. <image src="/static/mine/mine_icon6.png"></image>联系客服
  176. </view>
  177. <view class="right"><image src="/static/icon/right.png"></image></view>
  178. </button>
  179. </view>
  180. </view>
  181. <modal-dialog showTitle="我的客户经理" :showText="myManagerDetail.workName + ' ' + myManagerDetail.workPhone" :isShowDialog="isManagerDialog" @cancel="isManagerDialog = false" @confirm="callPhone(myManagerDetail.workPhone)" confirmText="拨打电话"></modal-dialog>
  182. <drag-button :isDock="true" :customBar="false" ref="dragButton"></drag-button>
  183. <u-popup :round="10" :show="isShowInfoDialog">
  184. <view class="info-dialog">
  185. <view class="content">
  186. <view class="title">获取您的头像和昵称</view>
  187. <view class="text">为了方便识别您的身份,请授权您的头像和昵称</view>
  188. </view>
  189. <view class="form">
  190. <view class="item">
  191. <view class="label">头像</view>
  192. <view class="value">
  193. <button open-type="chooseAvatar" @chooseavatar="chooseAvatar">
  194. <image :src="imageUrl + infoForm.avatar" v-if="infoForm.avatar"></image>
  195. <view class="empty" v-else>请选择</view>
  196. </button>
  197. </view>
  198. </view>
  199. <view class="item">
  200. <view class="label">昵称</view>
  201. <view class="value">
  202. <input
  203. type="nickname"
  204. placeholder="请输入昵称"
  205. border="none"
  206. v-model="infoForm.nickname"
  207. @change="getNickname"
  208. ></input>
  209. </view>
  210. </view>
  211. </view>
  212. <view class="btn">
  213. <button @tap="isShowInfoDialog = false">取消</button>
  214. <button type="primary" @tap="saveUserInfo()">提交</button>
  215. </view>
  216. </view>
  217. </u-popup>
  218. </view>
  219. </template>
  220. <script>
  221. import {mapState} from 'vuex';
  222. import modalDialog from '@/components/modalDialog.vue';
  223. import dragButton from '@/components/drag-button.vue';
  224. import { uploadImg } from '@/api/axios.js';
  225. export default {
  226. components:{
  227. modalDialog,
  228. dragButton
  229. },
  230. data() {
  231. return {
  232. imageUrl: this.$imageUrl,
  233. configInfo: uni.getStorageSync('configInfo'),
  234. detail: {}, // 信息详情
  235. myManagerDetail: {}, // 我的客户经理信息
  236. count: {}, // 订单数量统计
  237. scrollTop: 0, // 滚动高度(用于控制自定义导航)
  238. isCustom: false, // 是否显示自定义导航
  239. isManagerDialog: false, // 是否显示联系客户经理弹窗
  240. isShowInfoDialog: false, // 是否显示获取用户信息弹窗
  241. infoForm: {
  242. avatar: '',
  243. nickname: '',
  244. },
  245. }
  246. },
  247. computed:{
  248. ...mapState(['userInfo', 'isLogin', 'userId']),
  249. cuStyle(){
  250. return `height:${this.CustomBar-this.StatusBar}px; padding-top:${this.StatusBar}px;`
  251. },
  252. isServiceUser() { // 是否业务员
  253. return this.detail.type === 'SERVICE';
  254. },
  255. isHeadUser() { // 是否团长
  256. return this.detail.promotionGroupLeader;
  257. },
  258. isExamineUser() { // 是否审核人员
  259. return this.detail.promotionApplyExamineby;
  260. },
  261. isInnerrUser() { // 是否内部人员
  262. return this.detail.innerr;
  263. },
  264. hasExchangeCode() { // 是否有优惠码权限
  265. return this.detail.isExchangeCode;
  266. },
  267. },
  268. watch: {
  269. scrollTop() {
  270. if(this.scrollTop > 100) {
  271. this.isCustom = true;
  272. }else {
  273. this.isCustom = false;
  274. }
  275. }
  276. },
  277. onLoad() {
  278. if(!this.isLogin) {
  279. uni.navigateTo({
  280. url: '/pages/login/index'
  281. })
  282. }
  283. },
  284. onShow() {
  285. if(this.userId && this.isLogin) {
  286. this.getDetail();
  287. this.getCount();
  288. }
  289. this.$refs.dragButton.init();
  290. },
  291. onPageScroll(res) {
  292. this.scrollTop = res.scrollTop;
  293. },
  294. methods: {
  295. // 获取个人信息
  296. async getDetail() {
  297. this.detail = await this.$getUserInfo();
  298. if(!this.detail.openId) {
  299. return uni.navigateTo({
  300. url: '/pages/login/index?isNotOpenid=' + true
  301. })
  302. }
  303. },
  304. // 获取订单数量
  305. getCount() {
  306. this.$axios({
  307. url: '/order/count',
  308. method: 'get',
  309. params: {
  310. userId: this.userId
  311. }
  312. }).then(res => {
  313. this.count = res.data;
  314. })
  315. },
  316. // 跳转页面
  317. navigatePage(url) {
  318. if(!this.isLogin) {
  319. return uni.navigateTo({
  320. url: '/pages/login/index'
  321. })
  322. }
  323. if(!url) {
  324. return this.$toast('跳转链接错误');
  325. }
  326. uni.navigateTo({
  327. url
  328. })
  329. },
  330. // 我的客户经理
  331. toMyManager() {
  332. if(!this.isLogin) {
  333. return uni.navigateTo({
  334. url: '/pages/login/index'
  335. })
  336. }
  337. this.$axios({
  338. url: '/user/parent',
  339. method: 'get',
  340. params: {
  341. userId: this.userId
  342. }
  343. }).then(res => {
  344. if(!res.data) {
  345. return this.$toast('您暂无客户经理');
  346. }else {
  347. this.myManagerDetail = res.data;
  348. this.isManagerDialog = true;
  349. }
  350. })
  351. },
  352. // 拨打电话
  353. callPhone(number) {
  354. uni.makePhoneCall({
  355. phoneNumber: number
  356. });
  357. },
  358. // 去我的订单列表
  359. toMyOrder(tab) {
  360. if(!this.isLogin) {
  361. return uni.navigateTo({
  362. url: '/pages/login/index'
  363. })
  364. }
  365. uni.navigateTo({
  366. url: '/pages/mine/order/list?tab=' + tab
  367. })
  368. },
  369. // 选择头像
  370. chooseAvatar(e) {
  371. uploadImg({
  372. path: e.detail.avatarUrl,
  373. name: e.detail.avatarUrl,
  374. }).then(data => {
  375. this.infoForm.avatar = data.url;
  376. })
  377. },
  378. // 用户昵称审核完毕
  379. getNickname(e) {
  380. this.infoForm.nickname = e.detail.value;
  381. },
  382. // 保存用户信息
  383. saveUserInfo() {
  384. if(!this.infoForm.avatar) {
  385. return this.$toast('请先上传头像');
  386. }
  387. if(!this.infoForm.nickname) {
  388. return this.$toast('请先输入昵称');
  389. }
  390. this.$axios({
  391. url: '/user/userinfo/save',
  392. params: {
  393. userId: this.userId,
  394. avatarUrl: this.infoForm.avatar,
  395. nickName: this.infoForm.nickname,
  396. },
  397. }).then(res => {
  398. this.isShowInfoDialog = false;
  399. this.getDetail();
  400. })
  401. },
  402. }
  403. }
  404. </script>
  405. <style lang="scss">
  406. .app-container {
  407. background: #F4F2F2;
  408. box-sizing: border-box;
  409. padding-bottom: 80rpx;
  410. }
  411. .top-container {
  412. position: relative;
  413. .bg {
  414. display: block;
  415. width: 750rpx;
  416. position: absolute;
  417. top: 0;
  418. z-index: 0;
  419. }
  420. .content {
  421. width: 710rpx;
  422. padding: 0 20rpx;
  423. position: relative;
  424. z-index: 1;
  425. }
  426. .title {
  427. display: flex;
  428. align-items: center;
  429. justify-content: center;
  430. color: #FFFFFF;
  431. font-size: 36rpx;
  432. }
  433. .user {
  434. display: flex;
  435. align-items: center;
  436. justify-content: space-between;
  437. margin-top: 40rpx;
  438. .left {
  439. display: flex;
  440. align-items: center;
  441. image {
  442. width: 120rpx;
  443. height: 120rpx;
  444. border-radius: 50%;
  445. border: 2px solid #FFFFFF;
  446. margin-right: 20rpx;
  447. }
  448. .main {
  449. width: 360rpx;
  450. display: flex;
  451. flex-direction: column;
  452. .name {
  453. font-size: 32rpx;
  454. color: #FFFFFF;
  455. line-height: 36rpx;
  456. }
  457. .text {
  458. font-size: 24rpx;
  459. color: #FFFFFF;
  460. line-height: 30rpx;
  461. margin-top: 12rpx;
  462. }
  463. }
  464. }
  465. .code {
  466. display: flex;
  467. flex-direction: column;
  468. align-items: center;
  469. justify-content: center;
  470. flex-shrink: 0;
  471. margin-right: 30rpx;
  472. image {
  473. width: 52rpx;
  474. height: 52rpx;
  475. display: block;
  476. }
  477. text {
  478. font-size: 20rpx;
  479. line-height: 20rpx;
  480. color: #FFFFFF;
  481. margin-top: 12rpx;
  482. }
  483. }
  484. }
  485. .order {
  486. margin-top: 20rpx;
  487. background: #FFFFFF;
  488. border-radius: 20rpx;
  489. .top {
  490. height: 88rpx;
  491. display: flex;
  492. justify-content: space-between;
  493. align-items: center;
  494. padding: 0 20rpx;
  495. .left {
  496. font-size: 32rpx;
  497. color: #333333;
  498. }
  499. .right {
  500. display: flex;
  501. align-items: center;
  502. font-size: 24rpx;
  503. color: #999999;
  504. image {
  505. width: 16rpx;
  506. height: 28rpx;
  507. margin-left: 12rpx;
  508. }
  509. }
  510. }
  511. .list {
  512. display: flex;
  513. border-top: 1px solid #eaeaea;
  514. padding: 10rpx 0 24rpx;
  515. .item {
  516. width: 20%;
  517. display: flex;
  518. flex-direction: column;
  519. align-items: center;
  520. .image {
  521. position: relative;
  522. }
  523. image {
  524. width: 60rpx;
  525. height: 60rpx;
  526. display: block;
  527. }
  528. text {
  529. position: absolute;
  530. right: -12rpx;
  531. top: -8rpx;
  532. z-index: 11;
  533. background: #FF3F42;
  534. width: 32rpx;
  535. height: 32rpx;
  536. line-height: 32rpx;
  537. text-align: center;
  538. border-radius: 32rpx;
  539. font-size: 20rpx;
  540. color: #FFFFFF;
  541. }
  542. view {
  543. font-size: 28rpx;
  544. line-height: 28rpx;
  545. color: #333333;
  546. margin-top: 10rpx;
  547. }
  548. }
  549. }
  550. }
  551. }
  552. .list-container {
  553. padding: 0 20rpx;
  554. margin-top: 20rpx;
  555. padding-bottom: 20rpx;
  556. .group {
  557. margin-bottom: 20rpx;
  558. background: #FFFFFF;
  559. border-radius: 20rpx;
  560. overflow: hidden;
  561. &:last-child {
  562. margin-bottom: 0;
  563. }
  564. .item {
  565. display: flex;
  566. align-items: center;
  567. justify-content: space-between;
  568. height: 88rpx;
  569. border-bottom: 1px solid #eaeaea;
  570. padding: 0 20rpx;
  571. background: #FFFFFF;
  572. color: #333333;
  573. &:last-child {
  574. border: none;
  575. }
  576. &::after {
  577. border: none;
  578. }
  579. .left {
  580. display: flex;
  581. align-items: center;
  582. font-size: 30rpx;
  583. image {
  584. width: 40rpx;
  585. height: 40rpx;
  586. margin-right: 20rpx;
  587. }
  588. }
  589. .right {
  590. image {
  591. width: 16rpx;
  592. height: 28rpx;
  593. display: block;
  594. }
  595. }
  596. }
  597. }
  598. }
  599. .info-dialog {
  600. padding: 40rpx 40rpx 80rpx;
  601. box-sizing: border-box;
  602. .content {
  603. .title {
  604. font-size: 32rpx;
  605. font-weight: 500;
  606. }
  607. .text {
  608. font-size: 24rpx;
  609. color: #999999;
  610. margin-top: 20rpx;
  611. }
  612. }
  613. .form {
  614. .item {
  615. display: flex;
  616. align-items: center;
  617. justify-content: space-between;
  618. margin-top: 30rpx;
  619. .label {
  620. color: #666666;
  621. }
  622. .value {
  623. button {
  624. padding: 0;
  625. background: none;
  626. border: none;
  627. &::after {
  628. border: none;
  629. }
  630. }
  631. input {
  632. width: 500rpx;
  633. height: 68rpx;
  634. text-align: right !important;
  635. }
  636. image {
  637. width: 88rpx;
  638. height: 88rpx;
  639. border-radius: 88rpx;
  640. display: block;
  641. }
  642. .empty {
  643. width: 88rpx;
  644. height: 88rpx;
  645. border-radius: 88rpx;
  646. background: #f5f5f5;
  647. text-align: center;
  648. line-height: 88rpx;
  649. font-size: 24rpx;
  650. color: #999999;
  651. }
  652. }
  653. }
  654. }
  655. .btn {
  656. display: flex;
  657. justify-content: center;
  658. margin-top: 60rpx;
  659. button::after {
  660. border: none;
  661. }
  662. button {
  663. width: 180rpx;
  664. height: 70rpx;
  665. line-height: 70rpx;
  666. margin: 0;
  667. font-size: 28rpx;
  668. margin: 0 30rpx;
  669. &:first-child {
  670. background: #f5f5f5;
  671. color: $theme-color;
  672. }
  673. &:last-child {
  674. background: $theme-color;
  675. color: #FFFFFF;
  676. }
  677. }
  678. }
  679. }
  680. </style>