mirror of
https://gitee.com/bagee/jd-coupon-miniapp.git
synced 2025-06-16 23:39:59 +08:00
30 lines
382 B
JavaScript
30 lines
382 B
JavaScript
// components/study/study.js
|
|
const app = getApp()
|
|
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
windowWidth: app.globalData.windowWidth,
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
onClick(event){
|
|
wx.navigateTo({
|
|
url: '/page_package/study/study'
|
|
})
|
|
}
|
|
}
|
|
})
|