index.vue 13 KB

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