index.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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>
  12. <view slot="title" class="u-slot-title">
  13. <u--text mode="name" text="罗德隆" bold></u--text>
  14. <u--text text="前上级:"></u--text>
  15. <u--text text="现上级:"></u--text>
  16. </view>
  17. <view slot="right-icon" style="margin-top: 20px">
  18. <u--text text="购买订单" bold align="right"></u--text>
  19. <u--text text="2022-11-24 17:11:11"></u--text>
  20. </view>
  21. </u-cell>
  22. </u-cell-group>
  23. <view v-show="page === 2 && !orderList.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">
  31. <u-grid-item v-for="(listItem, listIndex) in list" :key="listIndex">
  32. <text class="grid-text">{{ listItem.title }}</text>
  33. <text class="grid-text-amount">{{ listItem.title }}</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. orderInvoiceList
  69. } from '@/api/order.js';
  70. import colors from '@/mixins/color.js';
  71. import { HTTP_REQUEST_URL } from '@/config/app';
  72. export default {
  73. components: {
  74. home
  75. },
  76. mixins: [colors],
  77. data() {
  78. return {
  79. list: [{
  80. name: 'photo',
  81. title: '图片'
  82. },
  83. {
  84. name: 'lock',
  85. title: '锁头'
  86. },
  87. {
  88. name: 'star',
  89. title: '星星'
  90. },
  91. {
  92. name: 'hourglass',
  93. title: '沙漏'
  94. },
  95. {
  96. name: 'home',
  97. title: '首页'
  98. },
  99. {
  100. name: 'star',
  101. title: '音量'
  102. },
  103. ],
  104. imgHost: HTTP_REQUEST_URL,
  105. orderList: [],
  106. invoiceList: [],
  107. nav: 1, // 1:发票记录 2:抬头管理
  108. page: 1,
  109. limit: 30,
  110. loading: false,
  111. finished: false,
  112. specialInvoice: true
  113. };
  114. },
  115. watch: {
  116. nav: {
  117. immediate: true,
  118. handler(value) {
  119. this.page = 1;
  120. switch (value) {
  121. case 1:
  122. this.orderList = [];
  123. // this.getOrderList();
  124. break;
  125. case 2:
  126. this.invoiceList = [];
  127. // this.getInvoiceList();
  128. break;
  129. }
  130. }
  131. }
  132. },
  133. computed: mapGetters(['isLogin']),
  134. onLoad(option) {
  135. if (option.from === 'invoice_form') {
  136. this.nav = 2;
  137. }
  138. // this.getUserInfo();
  139. },
  140. methods: {
  141. click(name) {
  142. this.$refs.uToast.success(`点击了第${name}个`)
  143. },
  144. getUserInfo() {
  145. getUserInfo().then(res => {
  146. const {
  147. special_invoice
  148. } = res.data;
  149. this.specialInvoice = special_invoice
  150. });
  151. },
  152. // 菜单切换
  153. navTab(nav) {
  154. if (this.nav !== nav) {
  155. this.nav = nav;
  156. }
  157. },
  158. // 记录列表
  159. getOrderList() {
  160. uni.showLoading({
  161. title: this.$t(`加载中`)
  162. });
  163. orderInvoiceList({
  164. page: this.page,
  165. limit: this.limit
  166. }).then(res => {
  167. const {
  168. data
  169. } = res;
  170. uni.hideLoading();
  171. this.orderList = this.orderList.concat(data);
  172. this.finished = data.length < this.limit;
  173. this.page += 1;
  174. }).catch(err => {
  175. uni.showToast({
  176. title: err.msg,
  177. icon: 'none'
  178. });
  179. });
  180. },
  181. // 发票列表
  182. getInvoiceList() {
  183. uni.showLoading({
  184. title: this.$t(`加载中`)
  185. });
  186. invoiceList({
  187. page: this.page,
  188. limit: this.limit
  189. }).then(res => {
  190. const {
  191. data
  192. } = res;
  193. uni.hideLoading();
  194. this.invoiceList = this.invoiceList.concat(data);
  195. this.finished = data.length < this.limit;
  196. this.page += 1;
  197. }).catch(err => {
  198. uni.showToast({
  199. title: err.msg,
  200. icon: 'none'
  201. });
  202. });
  203. },
  204. // 编辑发票
  205. editInvoice(id) {
  206. uni.navigateTo({
  207. url: `/pages/users/user_invoice_form/index?id=${id}`
  208. });
  209. },
  210. // 删除发票
  211. deleteInvoice(id) {
  212. let that = this;
  213. uni.showModal({
  214. content: that.$t(`删除该发票?`),
  215. confirmColor: '#E93323',
  216. success(res) {
  217. if (res.confirm) {
  218. invoiceDelete(id).then(() => {
  219. that.$util.Tips({
  220. title: that.$t(`删除成功`),
  221. icon: 'success'
  222. }, () => {
  223. let index = that.invoiceList.findIndex(value => {
  224. return value.id == id;
  225. });
  226. that.invoiceList.splice(index, 1);
  227. });
  228. }).catch(err => {
  229. return that.$util.Tips({
  230. title: err
  231. });
  232. });
  233. }
  234. }
  235. });
  236. }
  237. }
  238. }
  239. </script>
  240. <style lang="scss" scoped>
  241. .imageUrl {
  242. text-align: center !important;
  243. margin-top: 30px;
  244. width: 100%;
  245. height: 230px
  246. }
  247. .imageUrlin {
  248. width: 80%;
  249. height: 200px;
  250. margin-left: auto;
  251. margin-right: auto;
  252. }
  253. .grid-text {
  254. font-size: 22px;
  255. color: #909399;
  256. padding: 10rpx 20px 20rpx 0rpx;
  257. /* #ifndef APP-PLUS */
  258. box-sizing: border-box;
  259. /* #endif */
  260. }
  261. .grid-text-amount {
  262. font-size: 18px;
  263. color: #d82a64;
  264. padding: 10rpx 20px 20rpx 0rpx;
  265. /* #ifndef APP-PLUS */
  266. box-sizing: border-box;
  267. /* #endif */
  268. }
  269. .nav {
  270. position: fixed;
  271. top: 0;
  272. left: 0;
  273. z-index: 9;
  274. width: 100%;
  275. height: 90rpx;
  276. background-color: #FFFFFF;
  277. }
  278. .nav .acea-row {
  279. flex: 1;
  280. border-top: 3rpx solid transparent;
  281. border-bottom: 3rpx solid transparent;
  282. font-size: 30rpx;
  283. color: #282828;
  284. }
  285. .nav .on {
  286. border-bottom-color: var(--view-theme);
  287. color: var(--view-theme);
  288. }
  289. .list {
  290. padding: 14rpx 32rpx;
  291. margin-top: 90rpx;
  292. margin-bottom: 140rpx;
  293. }
  294. .list .item {
  295. padding: 28rpx 32rpx;
  296. background-color: #FFFFFF;
  297. }
  298. .list .item~.item {
  299. margin-top: 14rpx;
  300. }
  301. .list .item-hd .acea-row {
  302. flex: 1;
  303. min-width: 0;
  304. }
  305. .list .name {
  306. font-weight: 600;
  307. font-size: 30rpx;
  308. color: #282828;
  309. }
  310. .list .label {
  311. width: 56rpx;
  312. height: 28rpx;
  313. border: 1rpx solid var(--view-theme);
  314. margin-left: 18rpx;
  315. font-size: 20rpx;
  316. line-height: 26rpx;
  317. text-align: center;
  318. color: var(--view-theme);
  319. }
  320. .list .type {
  321. // width: 172rpx;
  322. height: 42rpx;
  323. margin-left: 30rpx;
  324. background-color: #FCF0E0;
  325. font-size: 24rpx;
  326. line-height: 42rpx;
  327. text-align: center;
  328. color: #D67300;
  329. }
  330. .list .type.special {
  331. background-color: #FDE9E7;
  332. color: #E93323;
  333. }
  334. .list .item-bd {
  335. margin-top: 18rpx;
  336. }
  337. .list .cell {
  338. font-size: 26rpx;
  339. color: #666666;
  340. }
  341. .list .cell~.cell {
  342. margin-top: 12rpx;
  343. }
  344. .list .item-ft {
  345. margin-top: 11rpx;
  346. }
  347. .list .btn {
  348. font-size: 26rpx;
  349. color: #282828;
  350. cursor: pointer;
  351. }
  352. .list .btn~.btn {
  353. margin-left: 35rpx;
  354. }
  355. .list .btn .iconfont {
  356. margin-right: 10rpx;
  357. font-size: 24rpx;
  358. color: #000000;
  359. }
  360. .add-link {
  361. position: fixed;
  362. right: 30rpx;
  363. bottom: 13rpx;
  364. left: 30rpx;
  365. height: 86rpx;
  366. border-radius: 43rpx;
  367. background-color: var(--view-theme);
  368. font-size: 30rpx;
  369. line-height: 86rpx;
  370. text-align: center;
  371. color: #FFFFFF;
  372. .iconfont {
  373. margin-right: 14rpx;
  374. font-size: 28rpx;
  375. }
  376. }
  377. .nothing {
  378. margin-top: 254rpx;
  379. font-size: 26rpx;
  380. text-align: center;
  381. color: #999999;
  382. .image {
  383. width: 400rpx;
  384. height: 260rpx;
  385. margin-bottom: 20rpx;
  386. }
  387. }
  388. .record-wrapper {
  389. margin-top: 110rpx;
  390. .item {
  391. padding-right: 30rpx;
  392. padding-left: 30rpx;
  393. border-radius: 6rpx;
  394. margin: 30rpx;
  395. background-color: #FFFFFF;
  396. .item-hd {
  397. padding-top: 36rpx;
  398. padding-bottom: 36rpx;
  399. .image {
  400. width: 78rpx;
  401. height: 78rpx;
  402. border-radius: 6rpx;
  403. }
  404. .text {
  405. flex: 1;
  406. display: -webkit-box;
  407. -webkit-box-orient: vertical;
  408. -webkit-line-clamp: 2;
  409. overflow: hidden;
  410. margin-left: 24rpx;
  411. font-size: 26rpx;
  412. line-height: 37rpx;
  413. color: #282828;
  414. }
  415. }
  416. .item-bd {
  417. padding: 26rpx 30rpx 25rpx 32rpx;
  418. border-radius: 20rpx;
  419. background-color: #F5F6F7;
  420. font-size: 26rpx;
  421. line-height: 37rpx;
  422. color: #818181;
  423. .name {
  424. margin-bottom: 8rpx;
  425. font-weight: bold;
  426. font-size: 26rpx;
  427. color: #282828;
  428. }
  429. .money {
  430. font-weight: bold;
  431. font-size: 24rpx;
  432. color: #282828;
  433. .num {
  434. font-size: 32rpx;
  435. }
  436. }
  437. }
  438. .item-ft {
  439. padding-top: 30rpx;
  440. padding-bottom: 30rpx;
  441. font-weight: bold;
  442. font-size: 28rpx;
  443. color: #282828;
  444. .link {
  445. width: 150rpx;
  446. height: 57rpx;
  447. border: 1rpx solid #707070;
  448. border-radius: 29rpx;
  449. font-weight: normal;
  450. font-size: 26rpx;
  451. line-height: 57rpx;
  452. text-align: center;
  453. color: #282828;
  454. }
  455. }
  456. }
  457. }
  458. </style>