123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- <template>
- <view :style="viewColor">
- <view class="acea-row nav">
- <view class="acea-row row-center-wrapper" :class="{ on: tabCur == 1 }" @click="tab(1)">发票记录</view>
- <view class="acea-row row-center-wrapper" :class="{ on: tabCur == 2 }" @click="tab(2)">抬头管理</view>
- </view>
- <block v-if="tabCur == 1">
- <view class="store-list" v-if="orderList.length">
- <view class="item" v-for="(item,index) in orderList" :key="index">
- <view class="hd">
- <image :src="item.storeOrder.orderProduct[0].cart_info.productAttr.image" mode="" v-if="item.storeOrder.orderProduct[0].cart_info.productAttr.image"></image>
- <image :src="item.storeOrder.orderProduct[0].cart_info.product.image" mode="" v-else></image>
- <view class="line2 name">{{item.storeOrder.orderProduct[0].cart_info.product.store_name}}</view>
- </view>
- <view class="bd">
- <view class="title">{{ item.receipt_info.receipt_type == 1 ? '普通发票' : '专用发票' }}</view>
- <view class="time">申请时间 {{item.create_time}}</view>
- <view class="price"><text>¥</text>{{item.order_price}}</view>
- </view>
- <view class="ft">
- <text>{{item.status | filterTxt}}</text>
- <view v-if="item.storeOrder.paid == 1" class="btn" @click="goOrderDetail(item)">查看详情</view>
- </view>
- </view>
- </view>
- <view v-else class="nothing">
- <image :src="`${domain}/static/images/noInvoice.png`"></image>
- <view class="nothing_text">您还没有发票记录哟~</view>
- </view>
- </block>
- <block v-if="tabCur == 2">
- <view v-if="invoiceList && invoiceList.length" class="list">
- <view v-for="(item,index) in invoiceList" :key="index" class="item">
- <view class="acea-row item-hd">
- <view class="acea-row row-middle">
- <view class="name">{{ item.receipt_title }}</view>
- <view v-if="item.is_default" class="label">默认</view>
- </view>
- <view class="type" :class="item.receipt_type == 1 ? '' : 'special'">{{ item.receipt_type == 1 ? '普通发票' : '专用发票' }}</view>
- </view>
- <view class="item-bd">
- <view v-if="item.receipt_title_type == 1" class="cell">邮箱 {{ item.email }}</view>
- <view v-else>
- <view class="cell">企业税号 {{ item.duty_paragraph }}</view>
- </view>
- </view>
- <view class="acea-row row-right item-ft">
- <view class="btn" @tap="editInvoice(item.user_receipt_id)"><text class="iconfont icon-bianji"></text>编辑</view>
- <view class="btn" @tap="deleteInvoice(item.user_receipt_id,index)"><text class="iconfont icon-shanchu"></text>删除</view>
- </view>
- </view>
- </view>
- <view v-else class="nothing">
- <image :src="`${domain}/static/images/noInvoice.png`"></image>
- <view class="nothing_text">您还没有添加发票信息哟~</view>
- </view>
- <button class="add-btn" @click="addInvoice"><text class="iconfont icon-fapiao"></text>添加新发票抬头</button>
- </block>
- <home></home>
- </view>
- </template>
- <script>
-
-
-
-
-
-
-
-
-
- import home from '@/components/home';
- import { mapGetters } from "vuex";
- import { invoice, invoiceDelete } from '@/api/user.js';
- import { receiptOrder } from '@/api/order.js';
- import { HTTP_REQUEST_URL } from '@/config/app';
- export default {
- components: {
- home
- },
- props: {},
- filters:{
- filterTxt(val){
- const obj = {
- 0:'未开票',
- 1:'已开票',
- 10:'未寄出'
- }
- return obj[val]
- }
- },
- data() {
- return {
- domain: HTTP_REQUEST_URL,
- tabCur:1,
- invoiceList: [],
- query: {
- page: 1,
- limit: 20,
- },
- loading: false,
- finished: false,
- isScroll:false,
- orderList:[],
- orderPage:1
- };
- },
- computed: mapGetters(['isLogin','viewColor']),
- watch: {
- loading(value) {
- if (value) {
- uni.showLoading({
- title: '加载中'
- });
- } else {
- uni.hideLoading();
- }
- }
- },
- onLoad(optios) {
- if(optios.type){
- this.tabCur = optios.type
- }else{
- try{
- this.tabCur = uni.getStorageSync('user_invoice_list')?uni.getStorageSync('user_invoice_list'): 1
- uni.removeStorageSync('user_invoice_list')
- }catch(error){}
- }
- },
- onShow() {
- this.orderPage =1
- this.orderList = []
- this.query.page = 1
- this.invoiceList = []
- this.finished = false;
- this.isScroll = false
- this.receiptOrder();
- this.getInvoiceList();
- },
- methods: {
-
- goOrderDetail(item){
- uni.navigateTo({
- url:`/pages/users/user_invoice_order/index?order_id=${item.storeOrder.group_order_id}&invoice_id=${item.order_receipt_id}`
- })
- },
-
- tab(type) {
- if (this.tabCur !== type) {
- this.tabCur = type;
- uni.setStorageSync('user_invoice_list',type)
- }
- },
-
- receiptOrder(){
- if(this.isScroll) return
- receiptOrder({
- page:this.orderPage,
- limit:this.query.limit
- }).then(res=>{
- this.orderList =this.orderList.concat(res.data.list)
- this.isScroll = this.orderList.length>=res.data.count
- this.orderPage++
- })
- },
-
- getInvoiceList(param) {
- if (param) {
- this.invoiceList = [];
- this.query.page = 1;
- this.finished = false;
- }
- if (this.loading) {
- return;
- }
- if (this.finished) {
- return;
- }
- this.loading = true;
- invoice().then(res => {
- let data = res.data;
- this.loading = false;
- this.invoiceList = res.data;
- this.finished = data.length < this.query.limit;
- this.query.page++;
- }).catch(err => {
- this.loading = false;
- this.$util.Tips({
- title: err
- });
- });
- },
-
- addInvoice() {
- uni.navigateTo({
- url: '/pages/users/user_invoice_form/index'
- });
- },
-
- editInvoice(id) {
- uni.navigateTo({
- url: `/pages/users/user_invoice_form/index?id=${id}`
- })
- },
-
- deleteInvoice(id,index) {
- let that = this;
- uni.showModal({
- content: '删除该发票?',
- confirmColor: '#E93323',
- success(res) {
- if (res.confirm) {
- invoiceDelete(id).then(() => {
- that.$util.Tips({
- title: '删除成功',
- icon: 'success'
- }, () => {
- that.invoiceList.splice(index, 1);
- });
- }).catch(err => {
- return that.$util.Tips({
- title: err
- });
- });
- }
- }
- });
- }
- },
- onReachBottom() {
- this.receiptOrder()
- }
- }
- </script>
- <style lang="scss" scoped>
- .nav {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9;
- width: 100%;
- height: 90rpx;
- background-color: #FFFFFF;
- }
- .nav .acea-row {
- flex: 1;
- border-top: 3rpx solid transparent;
- border-bottom: 3rpx solid transparent;
- font-size: 30rpx;
- color: #282828;
- }
- .nav .on {
- border-bottom-color: var(--view-theme);
- color: var(--view-theme);
- }
- .list {
- padding: 14rpx 32rpx;
- margin-top: 90rpx;
- padding-bottom: 220rpx;
- }
- .list .item {
- padding: 28rpx 32rpx;
- background-color: #FFFFFF;
- }
- .list .item~.item {
- margin-top: 14rpx;
- }
- .list .item-hd .acea-row {
- flex: 1;
- min-width: 0;
- }
- .list .name {
- font-weight: 600;
- font-size: 30rpx;
- color: #282828;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- max-width: 400rpx;
- }
- .list .label {
- width: 70rpx;
- height: 28rpx;
- border: 1rpx solid var(--view-theme);
- margin-left: 18rpx;
- font-size: 20rpx;
- line-height: 26rpx;
- text-align: center;
- color: var(--view-theme);
- }
- .list .type {
- width: 124rpx;
- height: 42rpx;
- background-color: #FCF0E0;
- font-size: 24rpx;
- line-height: 42rpx;
- text-align: center;
- color: #D67300;
- }
- .list .type.special {
- background-color: var(--view-minorColor);
- color: var(--view-theme);
- }
- .list .item-bd {
- margin-top: 18rpx;
- }
- .list .cell {
- font-size: 26rpx;
- color: #666666;
- }
- .list .cell~.cell {
- margin-top: 12rpx;
- }
- .list .item-ft {
- margin-top: 11rpx;
- }
- .list .btn {
- font-size: 26rpx;
- color: #282828;
- cursor: pointer;
- }
- .list .btn~.btn {
- margin-left: 35rpx;
- }
- .list .btn .iconfont {
- margin-right: 10rpx;
- font-size: 24rpx;
- color: #000000;
- }
- .add-btn {
- position: fixed;
- right: 30rpx;
- bottom: 20rpx;
- left: 30rpx;
- z-index: 9;
- height: 86rpx;
- border-radius: 43rpx;
- background-color: var(--view-theme);
- font-size: 30rpx;
- line-height: 86rpx;
- color: #FFFFFF;
- }
- .nothing {
- margin-top: 200rpx;
- text-align: center;
- }
- .nothing_text{
- margin-top: 20rpx;
- color: #999999;
- }
- .store-list{
- margin-top: 110rpx;
- padding: 0 30rpx 30rpx;
- .item{
- padding: 30rpx;
- margin-bottom: 20rpx;
- background: #fff;
- border-radius: 6rpx;
- .hd{
- display: flex;
- image{
- width: 78rpx;
- height: 78rpx;
- }
- .name{
- flex:1;
- margin-left: 24rpx;
- line-height: 1.8;
- font-size: 26rpx;
- color: #282828;
- }
- }
- .bd{
- position: relative;
- padding: 25rpx 36rpx;
- margin-top: 36rpx;
- background: #F5F6F7;
- border-radius: 20rpx;
- .title{
- font-size: 26rpx;
- color: #282828;
- font-weight: bold;
- }
- .time{
- margin-top: 8rpx;
- font-size: 26rpx;
- color: #818181;
- }
- .price{
- position: absolute;
- right: 30rpx;
- top: 50%;
- transform: translateY(-50%);
- color: #282828;
- font-size: 32rpx;
- font-weight: bold;
- text{
- font-weight: normal;
- font-size: 24rpx;
- }
- }
- }
- .ft{
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 39rpx;
- text{
- color: #282828;
- font-size: 28rpx;
- font-weight: bold;
- }
- .btn{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 150rpx;
- height: 57rpx;
- background: #FFFFFF;
- border: 1px solid #707070;
- border-radius: 29rpx;
- font-size: 26rpx;
- }
- }
- }
- }
- </style>
|