index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. <template>
  2. <view :style="viewColor">
  3. <view class="acea-row nav">
  4. <view class="acea-row row-center-wrapper" :class="{ on: tabCur == 1 }" @click="tab(1)">发票记录</view>
  5. <view class="acea-row row-center-wrapper" :class="{ on: tabCur == 2 }" @click="tab(2)">抬头管理</view>
  6. </view>
  7. <block v-if="tabCur == 1">
  8. <view class="store-list" v-if="orderList.length">
  9. <view class="item" v-for="(item,index) in orderList" :key="index">
  10. <view class="hd">
  11. <image :src="item.storeOrder.orderProduct[0].cart_info.productAttr.image" mode="" v-if="item.storeOrder.orderProduct[0].cart_info.productAttr.image"></image>
  12. <image :src="item.storeOrder.orderProduct[0].cart_info.product.image" mode="" v-else></image>
  13. <view class="line2 name">{{item.storeOrder.orderProduct[0].cart_info.product.store_name}}</view>
  14. </view>
  15. <view class="bd">
  16. <view class="title">{{ item.receipt_info.receipt_type == 1 ? '普通发票' : '专用发票' }}</view>
  17. <view class="time">申请时间 {{item.create_time}}</view>
  18. <view class="price"><text></text>{{item.order_price}}</view>
  19. </view>
  20. <view class="ft">
  21. <text>{{item.status | filterTxt}}</text>
  22. <view v-if="item.storeOrder.paid == 1" class="btn" @click="goOrderDetail(item)">查看详情</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view v-else class="nothing">
  27. <image :src="`${domain}/static/images/noInvoice.png`"></image>
  28. <view class="nothing_text">您还没有发票记录哟~</view>
  29. </view>
  30. </block>
  31. <block v-if="tabCur == 2">
  32. <view v-if="invoiceList && invoiceList.length" class="list">
  33. <view v-for="(item,index) in invoiceList" :key="index" class="item">
  34. <view class="acea-row item-hd">
  35. <view class="acea-row row-middle">
  36. <view class="name">{{ item.receipt_title }}</view>
  37. <view v-if="item.is_default" class="label">默认</view>
  38. </view>
  39. <view class="type" :class="item.receipt_type == 1 ? '' : 'special'">{{ item.receipt_type == 1 ? '普通发票' : '专用发票' }}</view>
  40. </view>
  41. <view class="item-bd">
  42. <view v-if="item.receipt_title_type == 1" class="cell">邮箱 {{ item.email }}</view>
  43. <view v-else>
  44. <view class="cell">企业税号 {{ item.duty_paragraph }}</view>
  45. </view>
  46. </view>
  47. <view class="acea-row row-right item-ft">
  48. <view class="btn" @tap="editInvoice(item.user_receipt_id)"><text class="iconfont icon-bianji"></text>编辑</view>
  49. <view class="btn" @tap="deleteInvoice(item.user_receipt_id,index)"><text class="iconfont icon-shanchu"></text>删除</view>
  50. </view>
  51. </view>
  52. </view>
  53. <view v-else class="nothing">
  54. <image :src="`${domain}/static/images/noInvoice.png`"></image>
  55. <view class="nothing_text">您还没有添加发票信息哟~</view>
  56. </view>
  57. <button class="add-btn" @click="addInvoice"><text class="iconfont icon-fapiao"></text>添加新发票抬头</button>
  58. </block>
  59. <home></home>
  60. </view>
  61. </template>
  62. <script>
  63. // +----------------------------------------------------------------------
  64. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  65. // +----------------------------------------------------------------------
  66. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  67. // +----------------------------------------------------------------------
  68. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  69. // +----------------------------------------------------------------------
  70. // | Author: CRMEB Team <admin@crmeb.com>
  71. // +----------------------------------------------------------------------
  72. import home from '@/components/home';
  73. import { mapGetters } from "vuex";
  74. import { invoice, invoiceDelete } from '@/api/user.js';
  75. import { receiptOrder } from '@/api/order.js';
  76. import { HTTP_REQUEST_URL } from '@/config/app';
  77. export default {
  78. components: {
  79. home
  80. },
  81. props: {},
  82. filters:{
  83. filterTxt(val){
  84. const obj = {
  85. 0:'未开票',
  86. 1:'已开票',
  87. 10:'未寄出'
  88. }
  89. return obj[val]
  90. }
  91. },
  92. data() {
  93. return {
  94. domain: HTTP_REQUEST_URL,
  95. tabCur:1,
  96. invoiceList: [],
  97. query: {
  98. page: 1,
  99. limit: 20,
  100. },
  101. loading: false,
  102. finished: false,
  103. isScroll:false,
  104. orderList:[],
  105. orderPage:1
  106. };
  107. },
  108. computed: mapGetters(['isLogin','viewColor']),
  109. watch: {
  110. loading(value) {
  111. if (value) {
  112. uni.showLoading({
  113. title: '加载中'
  114. });
  115. } else {
  116. uni.hideLoading();
  117. }
  118. }
  119. },
  120. onLoad(optios) {
  121. if(optios.type){
  122. this.tabCur = optios.type
  123. }else{
  124. try{
  125. this.tabCur = uni.getStorageSync('user_invoice_list')?uni.getStorageSync('user_invoice_list'): 1
  126. uni.removeStorageSync('user_invoice_list')
  127. }catch(error){}
  128. }
  129. },
  130. onShow() {
  131. this.orderPage =1
  132. this.orderList = []
  133. this.query.page = 1
  134. this.invoiceList = []
  135. this.finished = false;
  136. this.isScroll = false
  137. this.receiptOrder();
  138. this.getInvoiceList();
  139. },
  140. methods: {
  141. // 去订单详情
  142. goOrderDetail(item){
  143. uni.navigateTo({
  144. url:`/pages/users/user_invoice_order/index?order_id=${item.storeOrder.group_order_id}&invoice_id=${item.order_receipt_id}`
  145. })
  146. },
  147. // 切换发票
  148. tab(type) {
  149. if (this.tabCur !== type) {
  150. this.tabCur = type;
  151. uni.setStorageSync('user_invoice_list',type)
  152. }
  153. },
  154. // 获取发票订单
  155. receiptOrder(){
  156. if(this.isScroll) return
  157. receiptOrder({
  158. page:this.orderPage,
  159. limit:this.query.limit
  160. }).then(res=>{
  161. this.orderList =this.orderList.concat(res.data.list)
  162. this.isScroll = this.orderList.length>=res.data.count
  163. this.orderPage++
  164. })
  165. },
  166. // 获取发票列表
  167. getInvoiceList(param) {
  168. if (param) {
  169. this.invoiceList = [];
  170. this.query.page = 1;
  171. this.finished = false;
  172. }
  173. if (this.loading) {
  174. return;
  175. }
  176. if (this.finished) {
  177. return;
  178. }
  179. this.loading = true;
  180. invoice().then(res => {
  181. let data = res.data;
  182. this.loading = false;
  183. this.invoiceList = res.data;
  184. this.finished = data.length < this.query.limit;
  185. this.query.page++;
  186. }).catch(err => {
  187. this.loading = false;
  188. this.$util.Tips({
  189. title: err
  190. });
  191. });
  192. },
  193. // 添加新发票
  194. addInvoice() {
  195. uni.navigateTo({
  196. url: '/pages/users/user_invoice_form/index'
  197. });
  198. },
  199. // 编辑发票
  200. editInvoice(id) {
  201. uni.navigateTo({
  202. url: `/pages/users/user_invoice_form/index?id=${id}`
  203. })
  204. },
  205. // 删除发票
  206. deleteInvoice(id,index) {
  207. let that = this;
  208. uni.showModal({
  209. content: '删除该发票?',
  210. confirmColor: '#E93323',
  211. success(res) {
  212. if (res.confirm) {
  213. invoiceDelete(id).then(() => {
  214. that.$util.Tips({
  215. title: '删除成功',
  216. icon: 'success'
  217. }, () => {
  218. that.invoiceList.splice(index, 1);
  219. });
  220. }).catch(err => {
  221. return that.$util.Tips({
  222. title: err
  223. });
  224. });
  225. }
  226. }
  227. });
  228. }
  229. },
  230. onReachBottom() {
  231. this.receiptOrder()
  232. }
  233. }
  234. </script>
  235. <style lang="scss" scoped>
  236. .nav {
  237. position: fixed;
  238. top: 0;
  239. left: 0;
  240. z-index: 9;
  241. width: 100%;
  242. height: 90rpx;
  243. background-color: #FFFFFF;
  244. }
  245. .nav .acea-row {
  246. flex: 1;
  247. border-top: 3rpx solid transparent;
  248. border-bottom: 3rpx solid transparent;
  249. font-size: 30rpx;
  250. color: #282828;
  251. }
  252. .nav .on {
  253. border-bottom-color: var(--view-theme);
  254. color: var(--view-theme);
  255. }
  256. .list {
  257. padding: 14rpx 32rpx;
  258. margin-top: 90rpx;
  259. padding-bottom: 220rpx;
  260. }
  261. .list .item {
  262. padding: 28rpx 32rpx;
  263. background-color: #FFFFFF;
  264. }
  265. .list .item~.item {
  266. margin-top: 14rpx;
  267. }
  268. .list .item-hd .acea-row {
  269. flex: 1;
  270. min-width: 0;
  271. }
  272. .list .name {
  273. font-weight: 600;
  274. font-size: 30rpx;
  275. color: #282828;
  276. overflow: hidden;
  277. text-overflow: ellipsis;
  278. white-space: nowrap;
  279. max-width: 400rpx;
  280. }
  281. .list .label {
  282. width: 70rpx;
  283. height: 28rpx;
  284. border: 1rpx solid var(--view-theme);
  285. margin-left: 18rpx;
  286. font-size: 20rpx;
  287. line-height: 26rpx;
  288. text-align: center;
  289. color: var(--view-theme);
  290. }
  291. .list .type {
  292. width: 124rpx;
  293. height: 42rpx;
  294. background-color: #FCF0E0;
  295. font-size: 24rpx;
  296. line-height: 42rpx;
  297. text-align: center;
  298. color: #D67300;
  299. }
  300. .list .type.special {
  301. background-color: var(--view-minorColor);
  302. color: var(--view-theme);
  303. }
  304. .list .item-bd {
  305. margin-top: 18rpx;
  306. }
  307. .list .cell {
  308. font-size: 26rpx;
  309. color: #666666;
  310. }
  311. .list .cell~.cell {
  312. margin-top: 12rpx;
  313. }
  314. .list .item-ft {
  315. margin-top: 11rpx;
  316. }
  317. .list .btn {
  318. font-size: 26rpx;
  319. color: #282828;
  320. cursor: pointer;
  321. }
  322. .list .btn~.btn {
  323. margin-left: 35rpx;
  324. }
  325. .list .btn .iconfont {
  326. margin-right: 10rpx;
  327. font-size: 24rpx;
  328. color: #000000;
  329. }
  330. .add-btn {
  331. position: fixed;
  332. right: 30rpx;
  333. bottom: 20rpx;
  334. left: 30rpx;
  335. z-index: 9;
  336. height: 86rpx;
  337. border-radius: 43rpx;
  338. background-color: var(--view-theme);
  339. font-size: 30rpx;
  340. line-height: 86rpx;
  341. color: #FFFFFF;
  342. }
  343. .nothing {
  344. margin-top: 200rpx;
  345. text-align: center;
  346. }
  347. .nothing_text{
  348. margin-top: 20rpx;
  349. color: #999999;
  350. }
  351. .store-list{
  352. margin-top: 110rpx;
  353. padding: 0 30rpx 30rpx;
  354. .item{
  355. padding: 30rpx;
  356. margin-bottom: 20rpx;
  357. background: #fff;
  358. border-radius: 6rpx;
  359. .hd{
  360. display: flex;
  361. image{
  362. width: 78rpx;
  363. height: 78rpx;
  364. }
  365. .name{
  366. flex:1;
  367. margin-left: 24rpx;
  368. line-height: 1.8;
  369. font-size: 26rpx;
  370. color: #282828;
  371. }
  372. }
  373. .bd{
  374. position: relative;
  375. padding: 25rpx 36rpx;
  376. margin-top: 36rpx;
  377. background: #F5F6F7;
  378. border-radius: 20rpx;
  379. .title{
  380. font-size: 26rpx;
  381. color: #282828;
  382. font-weight: bold;
  383. }
  384. .time{
  385. margin-top: 8rpx;
  386. font-size: 26rpx;
  387. color: #818181;
  388. }
  389. .price{
  390. position: absolute;
  391. right: 30rpx;
  392. top: 50%;
  393. transform: translateY(-50%);
  394. color: #282828;
  395. font-size: 32rpx;
  396. font-weight: bold;
  397. text{
  398. font-weight: normal;
  399. font-size: 24rpx;
  400. }
  401. }
  402. }
  403. .ft{
  404. display: flex;
  405. align-items: center;
  406. justify-content: space-between;
  407. margin-top: 39rpx;
  408. text{
  409. color: #282828;
  410. font-size: 28rpx;
  411. font-weight: bold;
  412. }
  413. .btn{
  414. display: flex;
  415. align-items: center;
  416. justify-content: center;
  417. width: 150rpx;
  418. height: 57rpx;
  419. background: #FFFFFF;
  420. border: 1px solid #707070;
  421. border-radius: 29rpx;
  422. font-size: 26rpx;
  423. }
  424. }
  425. }
  426. }
  427. </style>