修改开票时确认信息的错误,,调整电费账单查看
This commit is contained in:
@@ -33,13 +33,33 @@ Page({
|
||||
},
|
||||
jumpToDetail(e) {
|
||||
const { id: report } = e.currentTarget.dataset
|
||||
wx.navigateTo({
|
||||
url: '/pages/billDetail/index?id=' + report,
|
||||
})
|
||||
const { id: tenement } = wx.getStorageSync('tenement')
|
||||
// wx.navigateTo({
|
||||
// url: '/pages/billDetail/index?id=' + report,
|
||||
// })
|
||||
// const { id: tenement } = wx.getStorageSync('tenement')
|
||||
// wx.navigateTo({
|
||||
// url: `https://zgd.hbhcbn.com/h5/?report=${report}&tenement=${tenement}`,
|
||||
// })
|
||||
wx.showModal({
|
||||
title: '提示',
|
||||
content: '为了您更好的体验,请复制链接,通过浏览器打开下载',
|
||||
showCancel: true,
|
||||
cancelText: '关闭',
|
||||
confirmText: '复制链接',
|
||||
|
||||
complete: (res) => {
|
||||
if (res.cancel) {
|
||||
|
||||
}
|
||||
|
||||
if (res.confirm) {
|
||||
wx.setClipboardData({
|
||||
data: `https://zgd.hbhcbn.com/h5/?report=${report}&tenement=${tenement}`,
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
|
Reference in New Issue
Block a user