index.vue 9.9 KB

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