修改下载发票失败的问题
This commit is contained in:
parent
86ca43d214
commit
5c971ef2e8
|
@ -36,9 +36,9 @@ Page({
|
||||||
const that = this;
|
const that = this;
|
||||||
wx.showActionSheet({
|
wx.showActionSheet({
|
||||||
itemList: ['发票XML文件下载', '发票PDF文件下载'],
|
itemList: ['发票XML文件下载', '发票PDF文件下载'],
|
||||||
async success(res) {
|
async success(sheetRes) {
|
||||||
loadingFunc(async () => {
|
loadingFunc(async () => {
|
||||||
const { code, message, data } = await downloadInvoice(that.data.id, res.tapIndex);
|
const { code, message, data } = await downloadInvoice(that.data.id, sheetRes.tapIndex);
|
||||||
if (code !== OK) {
|
if (code !== OK) {
|
||||||
alertInfo(message)
|
alertInfo(message)
|
||||||
return;
|
return;
|
||||||
|
@ -55,9 +55,10 @@ Page({
|
||||||
alertError("没有开票信息")
|
alertError("没有开票信息")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
console.log('res.tempFilePath', res.tempFilePath, sheetRes.tapIndex)
|
||||||
wx.openDocument({
|
wx.openDocument({
|
||||||
filePath: res.tempFilePath,
|
filePath: res.tempFilePath,
|
||||||
fileType: [res.tapIndex === 0 ? 'xml' : "pdf"], // 3. 这个必须写合法类型,不然下载不了 !!!
|
fileType: [sheetRes.tapIndex === 0 ? 'xml' : "pdf"], // 3. 这个必须写合法类型,不然下载不了 !!!
|
||||||
success: function (res) {
|
success: function (res) {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user