index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="acea-row nav" v-show="(nav !== 3)">
  4. <view class="acea-row row-center-wrapper" :class="{ on: nav === 1 }" @click="navTab(1)">{{ $t(`消费商`) }}
  5. </view>
  6. <view class="acea-row row-center-wrapper" :class="{ on: nav === 2 }" @click="navTab(2)">{{ $t(`绑定记录`) }}
  7. </view>
  8. </view>
  9. <view v-show="(nav === 2)" class="record-wrapper">
  10. <u-cell-group>
  11. <u-cell v-for="(item, index) in invoiceList" :key="index">
  12. <view slot="title" class="u-slot-title">
  13. <u--text mode="name" :text="item.userName" bold></u--text>
  14. <u--text :text="('前上级:' + item.beforeParentName)" size="12"></u--text>
  15. <u--text :text="('现上级:' + item.afterParentName)" size="12"></u--text>
  16. </view>
  17. <view slot="right-icon" style="margin-top: 20px">
  18. <u--text :text="item.typeMsg" bold align="right"></u--text>
  19. <u--text :text="item.updateTime" size="12"></u--text>
  20. </view>
  21. </u-cell>
  22. </u-cell-group>
  23. <view v-show="page === 2 && !invoiceList.length" class="nothing">
  24. <image :src="imgHost + '/statics/images/noInvoice.png'"></image>
  25. <view>{{ $t(`没有绑定信息哟~`) }}</view>
  26. </view>
  27. </view>
  28. <view v-show="(nav === 1)">
  29. <view class="list">
  30. <u-grid :border="true" col="2" @click="click">
  31. <u-grid-item v-for="(listItem, listIndex) in list" :key="listIndex">
  32. <text class="grid-text">{{ (listItem.title) }}{{ listIndex == 0 ? ' >' : '' }}</text>
  33. <text class="grid-text-amount">{{ listItem.count }}{{ listIndex <= 1 ? '元' : '' }}</text>
  34. </u-grid-item>
  35. </u-grid>
  36. <view class="imageUrl">
  37. <view class="imageUrlin" v-if="url">
  38. <ayQrcode ref="qrcode" qrcode_id="qrcode" :modal="modal_qr" :url="url" @hideQrcode="hideQrcode"
  39. :height="qr_height" :width="qr_width" />
  40. <!-- <u--image src="https://cdn.uviewui.com/uview/album/1.jpg" height="200px" width="100%"
  41. :showLoading="true">
  42. <view slot="error" style="font-size: 24rpx;">加载失败</view>
  43. </u--image> -->
  44. </view>
  45. </view>
  46. </view>
  47. <!-- <view v-show="page === 2 && !invoiceList.length" class="nothing">
  48. <image :src="imgHost + '/statics/images/noInvoice.png'"></image>
  49. <view>{{ $t(`没有消费商信息哟~`) }}</view>
  50. </view> -->
  51. <!-- <button v-if="isGongFu" class="add-link" :url="`/pages/goods_details/index?id=${gongFuId}&zoneType=8`">
  52. {{ $t(`邀请用户立即参与`) }}</button> -->
  53. <button v-if="isGongFu" class="add-link" open-type="share">
  54. {{ $t(`邀请用户立即参与`) }}</button>
  55. <navigator v-else class="add-link" :url="`/pages/goods/goods_list_mall/index?zoneType=8&title=共富1580`">
  56. {{ $t(`邀请用户立即参与`) }}</navigator>
  57. </view>
  58. <view v-show="(nav === 3)">
  59. <view class="list-nav3">
  60. <u-empty mode="permission" text="您还未参与共富1580" icon="http://cdn.uviewui.com/uview/empty/permission.png"
  61. :height="600">
  62. </u-empty>
  63. </view>
  64. <navigator v-if="isGongFu" class="add-link" :url="`/pages/goods_details/index?id=${gongFuId}&zoneType=8`">
  65. {{ $t(`立即参与`) }}</navigator>
  66. <navigator v-else class="add-link" :url="`/pages/goods/goods_list_mall/index?zoneType=8&title=共富1580`">
  67. {{ $t(`立即参与`) }}</navigator>
  68. </view>
  69. <!-- #ifndef MP -->
  70. <home></home>
  71. <!-- #endif -->
  72. </view>
  73. </template>
  74. <script>
  75. import ayQrcode from "@/components/ay-qrcode/ay-qrcode.vue"
  76. import home from '@/components/home';
  77. import {
  78. mapGetters
  79. } from "vuex";
  80. import {
  81. invoiceList,
  82. invoiceDelete,
  83. getUserInfo
  84. } from '@/api/user.js';
  85. import {
  86. postStatistics,
  87. linkedBindLogList,
  88. getGoodsInfo,
  89. postLinkedUrl
  90. } from '@/api/home.js';
  91. import {
  92. orderInvoiceList
  93. } from '@/api/order.js';
  94. import colors from '@/mixins/color.js';
  95. import { HTTP_REQUEST_URL } from '@/config/app';
  96. export default {
  97. components: {
  98. home,
  99. ayQrcode
  100. },
  101. mixins: [colors],
  102. data() {
  103. return {
  104. //二维码相关参数
  105. modal_qr: false,
  106. url: '', // 要生成的二维码值
  107. list: [{
  108. name: 'photo',
  109. title: '累计收益',
  110. count: 0
  111. },
  112. {
  113. name: 'lock',
  114. title: '今日收益',
  115. count: 0
  116. },
  117. {
  118. name: 'star',
  119. title: '直属伙伴',
  120. count: 0
  121. },
  122. {
  123. name: 'hourglass',
  124. title: '团队伙伴',
  125. count: 0
  126. },
  127. {
  128. name: 'home',
  129. title: '我的幸运数',
  130. count: 0
  131. },
  132. {
  133. name: 'star',
  134. title: '当前幸运数',
  135. count: 0
  136. },
  137. ],
  138. imgHost: HTTP_REQUEST_URL,
  139. orderList: [],
  140. invoiceList: [],
  141. nav: 1, // 1:发票记录 2:抬头管理
  142. page: 1,
  143. limit: 300,
  144. where: {
  145. zoneType: 8,
  146. current: 1,
  147. size: 20,
  148. },
  149. loading: false,
  150. finished: false,
  151. specialInvoice: true,
  152. storeInfo: {},
  153. promotionShare: '',
  154. isGongFu: true,
  155. gongFuId: true,
  156. qr_height: 200,
  157. qr_width: 200,
  158. };
  159. },
  160. watch: {
  161. nav: {
  162. immediate: true,
  163. handler(value) {
  164. this.page = 1;
  165. switch (value) {
  166. case 1:
  167. this.orderList = [];
  168. this.getStatistics();
  169. break;
  170. case 2:
  171. this.invoiceList = [];
  172. this.getInvoiceList();
  173. break;
  174. }
  175. }
  176. }
  177. },
  178. computed: mapGetters(['isLogin']),
  179. /**
  180. * 用户点击右上角分享
  181. */
  182. onShareAppMessage: function (res) {
  183. let that = this;
  184. return {
  185. title: that.storeInfo.goodsName || "",
  186. imageUrl: "http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" || that.storeInfo.image,
  187. path: "/pages/goods_details/index?id=" + that.gongFuId + "&inviteCode=" + that.promotionShare,
  188. };
  189. },
  190. onLoad(option) {
  191. let that = this
  192. if (option.from === 'invoice_form') {
  193. this.nav = 2;
  194. }
  195. uni.getSystemInfo({
  196. success: function (res) {
  197. that.qr_width = res.windowWidth * 0.4
  198. that.qr_height = res.windowWidth * 0.4
  199. },
  200. });
  201. this.getStatistics();
  202. },
  203. methods: {
  204. // 展示二维码
  205. showQrcode() {
  206. let _this = this;
  207. this.modal_qr = true;
  208. // uni.showLoading()
  209. setTimeout(function () {
  210. // uni.hideLoading()
  211. _this.$refs.qrcode.crtQrCode()
  212. }, 50)
  213. },
  214. //传入组件的方法
  215. hideQrcode() {
  216. this.modal_qr = false;
  217. },
  218. click(index) {
  219. if (index == 0) {
  220. uni.navigateTo({
  221. url: '/pages/users/user_earningsCount/index'
  222. })
  223. }
  224. },
  225. getStatistics() {
  226. let that = this
  227. uni.showLoading({
  228. title: this.$t(`加载中`)
  229. });
  230. postStatistics({
  231. userId: this.$store.state.app.uid
  232. }
  233. ).then(res => {
  234. uni.hideLoading();
  235. if (res.data.isPartner == -1) {
  236. this.nav = 3
  237. } else {
  238. this.list[0].count = res.data.earningsCount || 0
  239. this.list[1].count = res.data.todayEarnings || 0
  240. this.list[2].count = res.data.oneCount || 0
  241. this.list[3].count = res.data.twoCount || 0
  242. this.list[4].count = res.data.sort || 0
  243. this.list[5].count = res.data.outSort || 0
  244. this.specialInvoice = true
  245. if (res.data.sheraUrl) {
  246. this.url = res.data.sheraUrl
  247. this.showQrcode()
  248. }
  249. }
  250. });
  251. getGoodsInfo(that.where).then(res => {
  252. let list = res.data;
  253. if (that.where.zoneType == 8 && list.length == 1) {
  254. // 自动跳转共富1580商品详情参数准备
  255. that.gongFuId = list[0].id
  256. that.storeInfo = list[0]
  257. that.isGongFu = true
  258. // that.godDetail(list[0])
  259. } else {
  260. that.isGongFu = false
  261. }
  262. })
  263. postLinkedUrl().then(res => {
  264. this.promotionShare = res.data.promotionNo
  265. })
  266. },
  267. // 菜单切换
  268. navTab(nav) {
  269. if (this.nav !== nav) {
  270. this.nav = nav;
  271. }
  272. },
  273. // 记录列表
  274. getOrderList() {
  275. uni.showLoading({
  276. title: this.$t(`加载中`)
  277. });
  278. orderInvoiceList({
  279. page: this.page,
  280. limit: this.limit
  281. }).then(res => {
  282. const {
  283. data
  284. } = res;
  285. uni.hideLoading();
  286. this.orderList = this.orderList.concat(data);
  287. this.finished = data.length < this.limit;
  288. this.page += 1;
  289. }).catch(err => {
  290. uni.showToast({
  291. title: err.msg,
  292. icon: 'none'
  293. });
  294. });
  295. },
  296. // 发票列表
  297. getInvoiceList() {
  298. uni.showLoading({
  299. title: this.$t(`加载中`)
  300. });
  301. linkedBindLogList({
  302. userId: this.$store.state.app.uid,
  303. current: this.page,
  304. size: this.limit
  305. }).then(res => {
  306. const {
  307. data
  308. } = res;
  309. uni.hideLoading();
  310. this.invoiceList = this.invoiceList.concat(data);
  311. this.finished = data.length < this.limit;
  312. this.page += 1;
  313. }).catch(err => {
  314. uni.showToast({
  315. title: err.msg,
  316. icon: 'none'
  317. });
  318. });
  319. },
  320. // 编辑发票
  321. editInvoice(id) {
  322. uni.navigateTo({
  323. url: `/pages/users/user_invoice_form/index?id=${id}`
  324. });
  325. },
  326. // 删除发票
  327. deleteInvoice(id) {
  328. let that = this;
  329. uni.showModal({
  330. content: that.$t(`删除该发票?`),
  331. confirmColor: '#E93323',
  332. success(res) {
  333. if (res.confirm) {
  334. invoiceDelete(id).then(() => {
  335. that.$util.Tips({
  336. title: that.$t(`删除成功`),
  337. icon: 'success'
  338. }, () => {
  339. let index = that.invoiceList.findIndex(value => {
  340. return value.id == id;
  341. });
  342. that.invoiceList.splice(index, 1);
  343. });
  344. }).catch(err => {
  345. return that.$util.Tips({
  346. title: err
  347. });
  348. });
  349. }
  350. }
  351. });
  352. }
  353. }
  354. }
  355. </script>
  356. <style lang="scss" scoped>
  357. .imageUrl {
  358. margin-top: 30px;
  359. width: 100%;
  360. height: 100%;
  361. background-color: white;
  362. }
  363. .imageUrlin {
  364. width: 50%;
  365. height: 200px;
  366. margin-left: auto;
  367. margin-right: auto;
  368. }
  369. .grid-text {
  370. font-size: 16px;
  371. color: #3b3c3d;
  372. padding: 20rpx 20px 20rpx 0rpx;
  373. /* #ifndef APP-PLUS */
  374. box-sizing: border-box;
  375. /* #endif */
  376. }
  377. .grid-text-amount {
  378. font-size: 16px;
  379. color: #d82a64;
  380. padding: 10rpx 20px 20rpx 0rpx;
  381. /* #ifndef APP-PLUS */
  382. box-sizing: border-box;
  383. /* #endif */
  384. }
  385. .nav {
  386. position: fixed;
  387. top: 0;
  388. left: 0;
  389. z-index: 9;
  390. width: 100%;
  391. height: 90rpx;
  392. background-color: #FFFFFF;
  393. }
  394. .nav .acea-row {
  395. flex: 1;
  396. border-top: 3rpx solid transparent;
  397. border-bottom: 3rpx solid transparent;
  398. font-size: 30rpx;
  399. color: #282828;
  400. }
  401. .nav .on {
  402. border-bottom-color: var(--view-theme);
  403. color: var(--view-theme);
  404. }
  405. .list {
  406. padding: 14rpx 32rpx;
  407. margin-top: 90rpx;
  408. margin-bottom: 140rpx;
  409. background-color: white;
  410. }
  411. .list-nav3 {
  412. margin-top: 2rpx;
  413. height: 500px;
  414. background-image: url('http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg');
  415. }
  416. .list .item {
  417. padding: 28rpx 32rpx;
  418. background-color: #FFFFFF;
  419. }
  420. .list .item~.item {
  421. margin-top: 14rpx;
  422. }
  423. .list .item-hd .acea-row {
  424. flex: 1;
  425. min-width: 0;
  426. }
  427. .list .name {
  428. font-weight: 600;
  429. font-size: 30rpx;
  430. color: #282828;
  431. }
  432. .list .label {
  433. width: 56rpx;
  434. height: 28rpx;
  435. border: 1rpx solid var(--view-theme);
  436. margin-left: 18rpx;
  437. font-size: 20rpx;
  438. line-height: 26rpx;
  439. text-align: center;
  440. color: var(--view-theme);
  441. }
  442. .list .type {
  443. // width: 172rpx;
  444. height: 42rpx;
  445. margin-left: 30rpx;
  446. background-color: #FCF0E0;
  447. font-size: 24rpx;
  448. line-height: 42rpx;
  449. text-align: center;
  450. color: #D67300;
  451. }
  452. .list .type.special {
  453. background-color: #FDE9E7;
  454. color: #E93323;
  455. }
  456. .list .item-bd {
  457. margin-top: 18rpx;
  458. }
  459. .list .cell {
  460. font-size: 26rpx;
  461. color: #666666;
  462. }
  463. .list .cell~.cell {
  464. margin-top: 12rpx;
  465. }
  466. .list .item-ft {
  467. margin-top: 11rpx;
  468. }
  469. .list .btn {
  470. font-size: 26rpx;
  471. color: #282828;
  472. cursor: pointer;
  473. }
  474. .list .btn~.btn {
  475. margin-left: 35rpx;
  476. }
  477. .list .btn .iconfont {
  478. margin-right: 10rpx;
  479. font-size: 24rpx;
  480. color: #000000;
  481. }
  482. .add-link {
  483. position: fixed;
  484. right: 30rpx;
  485. bottom: 33rpx;
  486. left: 30rpx;
  487. height: 86rpx;
  488. border-radius: 43rpx;
  489. background-color: var(--view-theme);
  490. font-size: 30rpx;
  491. line-height: 86rpx;
  492. text-align: center;
  493. color: #FFFFFF;
  494. .iconfont {
  495. margin-right: 14rpx;
  496. font-size: 28rpx;
  497. }
  498. }
  499. .nothing {
  500. margin-top: 254rpx;
  501. font-size: 26rpx;
  502. text-align: center;
  503. color: #999999;
  504. .image {
  505. width: 400rpx;
  506. height: 260rpx;
  507. margin-bottom: 20rpx;
  508. }
  509. }
  510. .record-wrapper {
  511. margin-top: 90rpx;
  512. background-color: white;
  513. .item {
  514. padding-right: 30rpx;
  515. padding-left: 30rpx;
  516. border-radius: 6rpx;
  517. margin: 30rpx;
  518. background-color: #FFFFFF;
  519. .item-hd {
  520. padding-top: 36rpx;
  521. padding-bottom: 36rpx;
  522. .image {
  523. width: 78rpx;
  524. height: 78rpx;
  525. border-radius: 6rpx;
  526. }
  527. .text {
  528. flex: 1;
  529. display: -webkit-box;
  530. -webkit-box-orient: vertical;
  531. -webkit-line-clamp: 2;
  532. overflow: hidden;
  533. margin-left: 24rpx;
  534. font-size: 26rpx;
  535. line-height: 37rpx;
  536. color: #282828;
  537. }
  538. }
  539. .item-bd {
  540. padding: 26rpx 30rpx 25rpx 32rpx;
  541. border-radius: 20rpx;
  542. background-color: #F5F6F7;
  543. font-size: 26rpx;
  544. line-height: 37rpx;
  545. color: #818181;
  546. .name {
  547. margin-bottom: 8rpx;
  548. font-weight: bold;
  549. font-size: 26rpx;
  550. color: #282828;
  551. }
  552. .money {
  553. font-weight: bold;
  554. font-size: 24rpx;
  555. color: #282828;
  556. .num {
  557. font-size: 32rpx;
  558. }
  559. }
  560. }
  561. .item-ft {
  562. padding-top: 30rpx;
  563. padding-bottom: 30rpx;
  564. font-weight: bold;
  565. font-size: 28rpx;
  566. color: #282828;
  567. .link {
  568. width: 150rpx;
  569. height: 57rpx;
  570. border: 1rpx solid #707070;
  571. border-radius: 29rpx;
  572. font-weight: normal;
  573. font-size: 26rpx;
  574. line-height: 57rpx;
  575. text-align: center;
  576. color: #282828;
  577. }
  578. }
  579. }
  580. }
  581. </style>