武田小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
456 B

const _app = getApp<IAppOption>();
Page({
6 months ago
data: {
caseId: "",
codeUrl: "",
isFollow: "",
},
onLoad(options) {
this.setData({
caseId: options.cid,
codeUrl: options.wxi,
isFollow: options.isf,
});
},
6 months ago
handleBackCase() {
wx.reLaunch({
url: "/pages/cases/index",
6 months ago
});
},
handleDetail() {
wx.navigateTo({
url: `/module1/pages/casesDetail/index?id=${this.data.caseId}`,
});
},
});