commission--yt-commit
This commit is contained in:
@ -41,6 +41,7 @@ Page({
|
||||
id
|
||||
},
|
||||
success: (res) => {
|
||||
console.log('项目详细---->',res.data.data);
|
||||
if (res.data.code === 1) {
|
||||
const detail = res.data.data || {};
|
||||
this.setData({
|
||||
@ -85,13 +86,19 @@ Page({
|
||||
});
|
||||
},
|
||||
|
||||
// “结算明细”跳转
|
||||
goToSettlementDetail() {
|
||||
// 跳转结算明细
|
||||
gotoSubSettlement(e) {
|
||||
|
||||
const projectId = e.currentTarget.dataset.id;
|
||||
const url = e.currentTarget.dataset.url;
|
||||
const name = e.currentTarget.dataset.name;
|
||||
|
||||
wx.navigateTo({
|
||||
url: '/pages/projectModule/subSettlement/subSettlement' // 替换为你的页面路径
|
||||
});
|
||||
url: `/pages/projectModule/settlement/settlement?id=${projectId}&picurl=${url}&name=${name}`,
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
// 推广码-查看资料
|
||||
goToPromoMaterial(e) {
|
||||
const id = e.currentTarget.dataset.id; // 项目id
|
||||
|
Reference in New Issue
Block a user