index.vue 11 KB

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