优化开发票功能

This commit is contained in:
weipengfei 2023-11-15 17:58:30 +08:00
parent cfbf1f93a7
commit 22962e3dcd
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<template>
<view :style="viewColor">
<view :style="viewColor" @touchmove.stop.prevent="()=>{}">
<view class="add_invoicing" :class="invoice.invoice==true?'on':''">
<view class='title'>选择发票<text class='iconfont icon-guanbi' @tap='close'></text></view>
<form @submit="formSubmit" report-submit="true">
@ -302,11 +302,15 @@
this.popupTitle = false;
},
changeHeader(e) {
console.log(e);
this.receipt_title_type = e.detail.value;
if(e.detail.value == 1){
this.receipt_type = 1;
this.typeName = '增值税电子普通发票'
}
}else {
this.receipt_type = 2;
this.typeName = '增值税专用发票'
}
this.receipt_type
},
changeDefault(e) {

View File

@ -60,7 +60,7 @@
<button class="add-btn" @click="addInvoice"><text class="iconfont icon-fapiao"></text>添加新发票抬头</button>
</block>
<home></home>
<!-- <home></home> -->
</view>
</template>