|
@@ -208,7 +208,10 @@ Page({
|
|
|
// 获取所有节点的返回信息
|
|
|
async getAllReportInfo (reportid) {
|
|
|
const that = this
|
|
|
- wx.showNavigationBarLoading()
|
|
|
+ wx.showLoading({
|
|
|
+ title: '加载中...',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
await this.getReportUserInfoFn(reportid)
|
|
|
await this.getReportFn(this.data.systemNameList[1].reqName).then(response => {
|
|
|
that.setData({
|
|
@@ -292,7 +295,7 @@ Page({
|
|
|
systemNameList14Res: response
|
|
|
})
|
|
|
})
|
|
|
- wx.hideNavigationBarLoading()
|
|
|
+ wx.hideLoading()
|
|
|
},
|
|
|
|
|
|
// 获取当前报告人的信息
|
|
@@ -302,7 +305,6 @@ Page({
|
|
|
getReportUserInfo({
|
|
|
reportId: reportid
|
|
|
}).then(res => {
|
|
|
- wx.hideLoading()
|
|
|
that.setData({
|
|
|
addTime: res.data.addTime,
|
|
|
realName: res.data.realName
|