This commit is contained in:
lanzhihui 2024-10-10 17:10:19 +08:00
parent 012cf59f20
commit 4417971698
2 changed files with 3 additions and 2 deletions

View File

@ -35,7 +35,7 @@ wepy.app({
}
},
globalData: {
versions: 'v1.0.84', // 版本号
versions: 'v5.5.74', // 版本号
navBarHeight: 0, // 导航栏高度
navRight: 0, // 胶囊距右方间距(方保持左、右间距一致)
navTop: 0, // 胶囊距顶部间距

View File

@ -164,9 +164,10 @@ wepy.component({
}
},
fail: (err) => {
console.log('error:=========', err)
wx.showModal({ // 使用模态框提示用户进行操作
title: `温馨提示:`,
content: `很抱歉` + err,
content: `很抱歉` + JSON.stringify(err),
showCancel: false,
confirmText: `确定`,
success: function (res) {