gov_propagandize/pages/policy/policy.js

25 lines
396 B
JavaScript
Raw Normal View History

2025-01-17 18:01:48 +08:00
// pages/policy/policy.js
Page({
/**
* 页面的初始数据
*/
data: {
curTab: 1,
isLoading: false,
hasMore: true,
triggered: false,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
},
changeTab(e) {
this.setData({
curTab: e.currentTarget.dataset.index
})
}
})