index.vue 11 KB

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