发票支持增值税专票

This commit is contained in:
田香琪
2026-04-14 18:24:21 +08:00
parent 137232290b
commit 134a8b19e4
3 changed files with 446 additions and 39 deletions

View File

@@ -3,7 +3,7 @@
<view class="block-item flex-center">
<view>
<view>
{{'增值税普通发票'}}
{{order.receiptType || "-"}}
<view class="circle">
<view></view>
</view>
@@ -13,20 +13,52 @@
</view>
<view class="common-msg flex-center">
<view>
<view>抬头类型</view>
<view>{{order.receiptTitle}}</view>
<view>发票抬头</view>
<view>{{order.receiptTitle || "-"}}</view>
</view>
<view>
<view>发票状态</view>
<view class="invoice_status">{{order.receiptStatus === 1?'已开具':'暂未开具'}}</view>
<view class="invoice_status">
{{order.receiptStatus === 1 ? "已开具" : "暂未开具"}}
<text
v-if="order.receiptStatus === 1"
class="invoice-link"
@click="viewInvoice"
>查看发票</text>
</view>
</view>
</view>
<u-cell-group :border="false">
<u-cell-item title="发票类型" :border-top="false" :value="'增值税普通发票'" :arrow="false"></u-cell-item>
<u-cell-item title="发票类型" :border-top="false" :value="order.receiptType || '-'" :arrow="false"></u-cell-item>
<u-cell-item title="发票内容" :value="order.receiptContent" :arrow="false"></u-cell-item>
<u-cell-item title="发票抬头" :value="order.receiptTitle" :arrow="false"></u-cell-item>
<u-cell-item :title="title_type + '名称'" :value="getTitleNameValue()" :arrow="false"></u-cell-item>
<u-cell-item title="纳税人识别号" v-if="order.taxpayerId" :value="order.taxpayerId" :arrow="false"></u-cell-item>
<u-cell-item title="单位地址" v-if="order.companyAddress" :value="order.companyAddress" :arrow="false"></u-cell-item>
<u-cell-item title="单位电话" v-if="order.companyPhone" :value="order.companyPhone" :arrow="false"></u-cell-item>
<u-cell-item title="开户银行" v-if="order.bankName" :value="order.bankName" :arrow="false"></u-cell-item>
<u-cell-item title="银行账号" v-if="order.bankAccount" :value="order.bankAccount" :arrow="false"></u-cell-item>
<u-cell-item title="收票人手机" :value="order.receiptPhone" :arrow="false"></u-cell-item>
<u-cell-item title="收票人邮箱" v-if="order.receiptEmail" :value="order.receiptEmail" :arrow="false"></u-cell-item>
</u-cell-group>
<u-popup
v-model="showInvoicePopup"
mode="center"
width="90%"
border-radius="20"
>
<view class="invoice-popup">
<u-image
width="100%"
height="800rpx"
mode="aspectFit"
:src="order.invoiceAddress"
@click="previewImageInvoice"
></u-image>
<view class="invoice-popup-actions">
<view class="invoice-popup-btn" @click="downloadImageInvoice">下载发票</view>
</view>
</view>
</u-popup>
<!-- <u-cell-group :border="false" style="margin-top: 20rpx;">
<u-cell-item title="订单状态" :border-top="false" :value="order.order_status_text" :arrow="false"></u-cell-item>
<u-cell-item title="订单编号" :value="order.sn" :arrow="false"></u-cell-item>
@@ -48,9 +80,9 @@ import { getReceiptDetail } from "@/api/order.js";
export default {
data() {
return {
order: {},
order: {},
title_type: "",
showInvoicePopup: false,
};
},
onLoad(options) {
@@ -61,6 +93,107 @@ export default {
getReceiptDetail(id).then((res) => {
let order = res.data.result;
this.order = order;
this.title_type = order.companyName || order.taxpayerId ? "单位" : "个人";
});
},
getTitleNameValue() {
return this.title_type === "单位"
? this.order.companyName || "-"
: this.order.personalName || "-";
},
viewInvoice() {
if (!this.order.invoiceAddress) {
uni.showToast({
title: "暂无发票地址",
duration: 2000,
icon: "none",
});
return;
}
if (this.isImageInvoice()) {
this.showInvoicePopup = true;
return;
}
// #ifdef APP-PLUS
plus.runtime.openURL(this.order.invoiceAddress);
// #endif
// #ifndef APP-PLUS
uni.navigateTo({
url:
"/pages/tabbar/home/web-view?src=" +
encodeURIComponent(this.order.invoiceAddress),
});
// #endif
},
isImageInvoice() {
const url = (this.order.invoiceAddress || "").split("?")[0].toLowerCase();
return /\.(png|jpe?g|gif|bmp|webp)$/.test(url);
},
previewImageInvoice() {
if (!this.order.invoiceAddress) {
return;
}
uni.previewImage({
current: 0,
urls: [this.order.invoiceAddress],
});
},
downloadImageInvoice() {
if (!this.order.invoiceAddress) {
uni.showToast({
title: "暂无发票可下载",
duration: 2000,
icon: "none",
});
return;
}
uni.downloadFile({
url: this.order.invoiceAddress,
success: (res) => {
if (res.statusCode !== 200) {
uni.showToast({
title: "下载失败",
duration: 2000,
icon: "none",
});
return;
}
const tempFilePath = res.tempFilePath;
// #ifdef H5
const link = document.createElement("a");
link.href = tempFilePath || this.order.invoiceAddress;
link.download = "invoice";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
// #endif
// #ifndef H5
uni.saveImageToPhotosAlbum({
filePath: tempFilePath,
success: () => {
uni.showToast({
title: "发票已保存到相册",
duration: 2000,
icon: "none",
});
},
fail: () => {
uni.showToast({
title: "保存失败",
duration: 2000,
icon: "none",
});
},
});
// #endif
},
fail: () => {
uni.showToast({
title: "下载失败",
duration: 2000,
icon: "none",
});
},
});
},
/**
@@ -183,6 +316,10 @@ export default {
}
.invoice_status {
color: #ff6262;
.invoice-link {
margin-left: 12rpx;
color: $main-color;
}
}
}
@@ -205,9 +342,39 @@ export default {
}
}
.invoice-popup {
padding: 30rpx;
background: #f2f3f5;
}
.invoice-popup-actions {
margin-top: 30rpx;
background: #f2f3f5;
}
.invoice-popup-btn {
height: 80rpx;
line-height: 80rpx;
text-align: center;
border-radius: 40rpx;
background: $main-color;
color:rgb(255, 255, 255);
}
.u-cell {
padding: 35rpx 20rpx;
height: 110rpx;
min-height: 110rpx;
height: auto;
color: #333333;
}
/deep/ .u-cell__value {
flex: 1.6;
overflow: visible;
}
/deep/ .u-cell__value-text {
white-space: normal;
word-break: break-all;
}
</style>