index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  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 userInfo = this.$Cache.get("USER_INFO", true)
  184. let that = this;
  185. return {
  186. title: that.storeInfo.goodsName || "",
  187. imageUrl: "http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" || that.storeInfo.image,
  188. path: "/pages/goods_details/index?id=" + that.gongFuId + "&inviteCode=" + that.promotionShare
  189. +"&zoneType=8",
  190. };
  191. },
  192. onLoad(option) {
  193. let that = this
  194. if (option.from === 'invoice_form') {
  195. this.nav = 2;
  196. }
  197. uni.getSystemInfo({
  198. success: function (res) {
  199. that.qr_width = res.windowWidth * 0.4
  200. that.qr_height = res.windowWidth * 0.4
  201. },
  202. });
  203. this.getStatistics();
  204. },
  205. methods: {
  206. // 展示二维码
  207. showQrcode() {
  208. let _this = this;
  209. this.modal_qr = true;
  210. // uni.showLoading()
  211. setTimeout(function () {
  212. // uni.hideLoading()
  213. _this.$refs.qrcode.crtQrCode()
  214. }, 50)
  215. },
  216. //传入组件的方法
  217. hideQrcode() {
  218. this.modal_qr = false;
  219. },
  220. click(index) {
  221. if (index == 0) {
  222. uni.navigateTo({
  223. url: '/pages/users/user_earningsCount/index'
  224. })
  225. }
  226. },
  227. getStatistics() {
  228. let that = this
  229. uni.showLoading({
  230. title: this.$t(`加载中`)
  231. });
  232. postStatistics({
  233. userId: this.$store.state.app.uid
  234. }
  235. ).then(res => {
  236. uni.hideLoading();
  237. if (res.data.isPartner == -1) {
  238. this.nav = 3
  239. } else {
  240. this.list[0].count = res.data.earningsCount || 0
  241. this.list[1].count = res.data.todayEarnings || 0
  242. this.list[2].count = res.data.oneCount || 0
  243. this.list[3].count = res.data.twoCount || 0
  244. this.list[4].count = res.data.sort || 0
  245. this.list[5].count = res.data.outSort || 0
  246. this.specialInvoice = true
  247. if (res.data.sheraUrl) {
  248. this.url = res.data.sheraUrl
  249. this.showQrcode()
  250. }
  251. }
  252. });
  253. getGoodsInfo(that.where).then(res => {
  254. let list = res.data;
  255. if (that.where.zoneType == 8 && list.length == 1) {
  256. // 自动跳转共富1580商品详情参数准备
  257. that.gongFuId = list[0].id
  258. that.storeInfo = list[0]
  259. that.isGongFu = true
  260. // that.godDetail(list[0])
  261. } else {
  262. that.isGongFu = false
  263. }
  264. })
  265. postLinkedUrl().then(res => {
  266. this.promotionShare = res.data.promotionNo
  267. })
  268. },
  269. // 菜单切换
  270. navTab(nav) {
  271. if (this.nav !== nav) {
  272. this.nav = nav;
  273. }
  274. },
  275. // 记录列表
  276. getOrderList() {
  277. uni.showLoading({
  278. title: this.$t(`加载中`)
  279. });
  280. orderInvoiceList({
  281. page: this.page,
  282. limit: this.limit
  283. }).then(res => {
  284. const {
  285. data
  286. } = res;
  287. uni.hideLoading();
  288. this.orderList = this.orderList.concat(data);
  289. this.finished = data.length < this.limit;
  290. this.page += 1;
  291. }).catch(err => {
  292. uni.showToast({
  293. title: err.msg,
  294. icon: 'none'
  295. });
  296. });
  297. },
  298. // 发票列表
  299. getInvoiceList() {
  300. uni.showLoading({
  301. title: this.$t(`加载中`)
  302. });
  303. linkedBindLogList({
  304. userId: this.$store.state.app.uid,
  305. current: this.page,
  306. size: this.limit
  307. }).then(res => {
  308. const {
  309. data
  310. } = res;
  311. uni.hideLoading();
  312. this.invoiceList = this.invoiceList.concat(data);
  313. this.finished = data.length < this.limit;
  314. this.page += 1;
  315. }).catch(err => {
  316. uni.showToast({
  317. title: err.msg,
  318. icon: 'none'
  319. });
  320. });
  321. },
  322. // 编辑发票
  323. editInvoice(id) {
  324. uni.navigateTo({
  325. url: `/pages/users/user_invoice_form/index?id=${id}`
  326. });
  327. },
  328. // 删除发票
  329. deleteInvoice(id) {
  330. let that = this;
  331. uni.showModal({
  332. content: that.$t(`删除该发票?`),
  333. confirmColor: '#E93323',
  334. success(res) {
  335. if (res.confirm) {
  336. invoiceDelete(id).then(() => {
  337. that.$util.Tips({
  338. title: that.$t(`删除成功`),
  339. icon: 'success'
  340. }, () => {
  341. let index = that.invoiceList.findIndex(value => {
  342. return value.id == id;
  343. });
  344. that.invoiceList.splice(index, 1);
  345. });
  346. }).catch(err => {
  347. return that.$util.Tips({
  348. title: err
  349. });
  350. });
  351. }
  352. }
  353. });
  354. }
  355. }
  356. }
  357. </script>
  358. <style lang="scss" scoped>
  359. .imageUrl {
  360. margin-top: 30px;
  361. width: 100%;
  362. height: 100%;
  363. background-color: white;
  364. }
  365. .imageUrlin {
  366. width: 50%;
  367. height: 200px;
  368. margin-left: auto;
  369. margin-right: auto;
  370. }
  371. .grid-text {
  372. font-size: 16px;
  373. color: #3b3c3d;
  374. padding: 20rpx 20px 20rpx 0rpx;
  375. /* #ifndef APP-PLUS */
  376. box-sizing: border-box;
  377. /* #endif */
  378. }
  379. .grid-text-amount {
  380. font-size: 16px;
  381. color: #d82a64;
  382. padding: 10rpx 20px 20rpx 0rpx;
  383. /* #ifndef APP-PLUS */
  384. box-sizing: border-box;
  385. /* #endif */
  386. }
  387. .nav {
  388. position: fixed;
  389. top: 0;
  390. left: 0;
  391. z-index: 9;
  392. width: 100%;
  393. height: 90rpx;
  394. background-color: #FFFFFF;
  395. }
  396. .nav .acea-row {
  397. flex: 1;
  398. border-top: 3rpx solid transparent;
  399. border-bottom: 3rpx solid transparent;
  400. font-size: 30rpx;
  401. color: #282828;
  402. }
  403. .nav .on {
  404. border-bottom-color: var(--view-theme);
  405. color: var(--view-theme);
  406. }
  407. .list {
  408. padding: 14rpx 32rpx;
  409. margin-top: 90rpx;
  410. margin-bottom: 140rpx;
  411. background-color: white;
  412. }
  413. .list-nav3 {
  414. margin-top: 2rpx;
  415. height: 1200px;
  416. background-image: url('http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg');
  417. }
  418. .list .item {
  419. padding: 28rpx 32rpx;
  420. background-color: #FFFFFF;
  421. }
  422. .list .item~.item {
  423. margin-top: 14rpx;
  424. }
  425. .list .item-hd .acea-row {
  426. flex: 1;
  427. min-width: 0;
  428. }
  429. .list .name {
  430. font-weight: 600;
  431. font-size: 30rpx;
  432. color: #282828;
  433. }
  434. .list .label {
  435. width: 56rpx;
  436. height: 28rpx;
  437. border: 1rpx solid var(--view-theme);
  438. margin-left: 18rpx;
  439. font-size: 20rpx;
  440. line-height: 26rpx;
  441. text-align: center;
  442. color: var(--view-theme);
  443. }
  444. .list .type {
  445. // width: 172rpx;
  446. height: 42rpx;
  447. margin-left: 30rpx;
  448. background-color: #FCF0E0;
  449. font-size: 24rpx;
  450. line-height: 42rpx;
  451. text-align: center;
  452. color: #D67300;
  453. }
  454. .list .type.special {
  455. background-color: #FDE9E7;
  456. color: #E93323;
  457. }
  458. .list .item-bd {
  459. margin-top: 18rpx;
  460. }
  461. .list .cell {
  462. font-size: 26rpx;
  463. color: #666666;
  464. }
  465. .list .cell~.cell {
  466. margin-top: 12rpx;
  467. }
  468. .list .item-ft {
  469. margin-top: 11rpx;
  470. }
  471. .list .btn {
  472. font-size: 26rpx;
  473. color: #282828;
  474. cursor: pointer;
  475. }
  476. .list .btn~.btn {
  477. margin-left: 35rpx;
  478. }
  479. .list .btn .iconfont {
  480. margin-right: 10rpx;
  481. font-size: 24rpx;
  482. color: #000000;
  483. }
  484. .add-link {
  485. position: fixed;
  486. right: 30rpx;
  487. bottom: 33rpx;
  488. left: 30rpx;
  489. height: 86rpx;
  490. border-radius: 43rpx;
  491. background-color: var(--view-theme);
  492. font-size: 30rpx;
  493. line-height: 86rpx;
  494. text-align: center;
  495. color: #FFFFFF;
  496. .iconfont {
  497. margin-right: 14rpx;
  498. font-size: 28rpx;
  499. }
  500. }
  501. .nothing {
  502. margin-top: 254rpx;
  503. font-size: 26rpx;
  504. text-align: center;
  505. color: #999999;
  506. .image {
  507. width: 400rpx;
  508. height: 260rpx;
  509. margin-bottom: 20rpx;
  510. }
  511. }
  512. .record-wrapper {
  513. margin-top: 90rpx;
  514. background-color: white;
  515. .item {
  516. padding-right: 30rpx;
  517. padding-left: 30rpx;
  518. border-radius: 6rpx;
  519. margin: 30rpx;
  520. background-color: #FFFFFF;
  521. .item-hd {
  522. padding-top: 36rpx;
  523. padding-bottom: 36rpx;
  524. .image {
  525. width: 78rpx;
  526. height: 78rpx;
  527. border-radius: 6rpx;
  528. }
  529. .text {
  530. flex: 1;
  531. display: -webkit-box;
  532. -webkit-box-orient: vertical;
  533. -webkit-line-clamp: 2;
  534. overflow: hidden;
  535. margin-left: 24rpx;
  536. font-size: 26rpx;
  537. line-height: 37rpx;
  538. color: #282828;
  539. }
  540. }
  541. .item-bd {
  542. padding: 26rpx 30rpx 25rpx 32rpx;
  543. border-radius: 20rpx;
  544. background-color: #F5F6F7;
  545. font-size: 26rpx;
  546. line-height: 37rpx;
  547. color: #818181;
  548. .name {
  549. margin-bottom: 8rpx;
  550. font-weight: bold;
  551. font-size: 26rpx;
  552. color: #282828;
  553. }
  554. .money {
  555. font-weight: bold;
  556. font-size: 24rpx;
  557. color: #282828;
  558. .num {
  559. font-size: 32rpx;
  560. }
  561. }
  562. }
  563. .item-ft {
  564. padding-top: 30rpx;
  565. padding-bottom: 30rpx;
  566. font-weight: bold;
  567. font-size: 28rpx;
  568. color: #282828;
  569. .link {
  570. width: 150rpx;
  571. height: 57rpx;
  572. border: 1rpx solid #707070;
  573. border-radius: 29rpx;
  574. font-weight: normal;
  575. font-size: 26rpx;
  576. line-height: 57rpx;
  577. text-align: center;
  578. color: #282828;
  579. }
  580. }
  581. }
  582. }
  583. </style>