index.vue 11 KB

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