修改未开发票列表商户未传的问题
This commit is contained in:
parent
9c717eeb80
commit
369faf6b92
|
@ -7,7 +7,6 @@
|
||||||
"postcss": true,
|
"postcss": true,
|
||||||
"preloadBackgroundData": false,
|
"preloadBackgroundData": false,
|
||||||
"ignoreDevUnusedFiles": false,
|
"ignoreDevUnusedFiles": false,
|
||||||
"ignoreUploadUnusedFiles": false,
|
|
||||||
"minified": true,
|
"minified": true,
|
||||||
"newFeature": false,
|
"newFeature": false,
|
||||||
"coverView": true,
|
"coverView": true,
|
||||||
|
@ -28,7 +27,6 @@
|
||||||
"outputPath": ""
|
"outputPath": ""
|
||||||
},
|
},
|
||||||
"enableEngineNative": false,
|
"enableEngineNative": false,
|
||||||
"useIsolateContext": true,
|
|
||||||
"userConfirmedBundleSwitch": false,
|
"userConfirmedBundleSwitch": false,
|
||||||
"packNpmManually": true,
|
"packNpmManually": true,
|
||||||
"packNpmRelationList": [
|
"packNpmRelationList": [
|
||||||
|
@ -39,7 +37,10 @@
|
||||||
],
|
],
|
||||||
"minifyWXSS": true,
|
"minifyWXSS": true,
|
||||||
"showES6CompileOption": false,
|
"showES6CompileOption": false,
|
||||||
"condition": false
|
"condition": false,
|
||||||
|
"compileWorklet": false,
|
||||||
|
"ignoreUploadUnusedFiles": false,
|
||||||
|
"useIsolateContext": true
|
||||||
},
|
},
|
||||||
"condition": {},
|
"condition": {},
|
||||||
"editorSetting": {
|
"editorSetting": {
|
||||||
|
|
|
@ -23,7 +23,8 @@ export const deleteInvoiceInfo = async function(id) {
|
||||||
|
|
||||||
// 获取可开发票列表
|
// 获取可开发票列表
|
||||||
export const getInvoiceList = async function() {
|
export const getInvoiceList = async function() {
|
||||||
return await GET(`/wx/getInvoiceList`);
|
const tenement = wx.getStorageSync('tenement');
|
||||||
|
return await GET(`/wx/getInvoiceList?tenement=${tenement?.id}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取创建的发开票信息详情
|
// 获取创建的发开票信息详情
|
||||||
|
|
Loading…
Reference in New Issue
Block a user