调试申请开票的时候开票信息不存在的情况

This commit is contained in:
2024-05-06 17:27:21 +08:00
parent 2a6447e292
commit 45cb065d6f
4 changed files with 18 additions and 6 deletions

View File

@@ -24,7 +24,13 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad(options) {
const { tab } = options;
if (isNaN(Number(tab))) {
return
}
this.setData({
active: Number(tab)
})
},
/**