This commit is contained in:
Ling53666
2025-05-15 21:01:14 +08:00
parent 9b8553930b
commit 7c371623eb
35 changed files with 620 additions and 401 deletions

View File

@ -1,4 +1,5 @@
import {url} from '../../request'
const { checkLogin } = require('../../utils/logcheck');
Page({
/**
@ -8,12 +9,9 @@ Page({
projectImage:"",
selected: 'detail',
show:false,
promoCodeApplyVOList:[]
promoCodeApplyVOList:[],
mashow:false
},
/**
* 生命周期函数--监听页面加载
*/
onSelect(e) {
const key = e.currentTarget.dataset.key;
console.log(key,'dianjile');
@ -33,7 +31,13 @@ Page({
url: '/pages/mingxi/mingxi',
})
},
xianshi(){
this.setData({
mashow:true
})
},
onLoad(options) {
checkLogin();
const that = this
const id = options.id
wx.getStorage({
@ -81,6 +85,11 @@ Page({
wx.navigateBack({
delta: 1
})
},
clossma(){
this.setData({
mashow:false
})
}
})