|
|
// pages/pregnant-mother/pregnant-mother.js
Page({
/** * 页面的初始数据 */ data: { background: ['demo-text-1', 'demo-text-2', 'demo-text-3'], indicatorDots: true, vertical: false, autoplay: true, interval: 2000, duration: 500, nvabarData: { title: '', //导航栏 中间的标题
keyWord: '', search: true }, height: '' },
changeIndicatorDots() { this.setData({ indicatorDots: !this.data.indicatorDots }) },
changeAutoplay() { this.setData({ autoplay: !this.data.autoplay }) },
intervalChange(e) { this.setData({ interval: e.detail.value }) },
durationChange(e) { this.setData({ duration: e.detail.value }) },
/** * 生命周期函数--监听页面加载 */ onLoad(options) {
},
/** * 生命周期函数--监听页面初次渲染完成 */ onReady() {
},
/** * 生命周期函数--监听页面显示 */ onShow() { // 清除搜索框 调用子组件的清空函数
this.selectComponent('#bar').clearInput(); // 每个机型的尺寸不一致
// 在app.js中获取到的 statusBarHeight 用于控制头部的高度
this.setData({ // height: app.globalData.height,
}) this.setData({ 'nvabarData.inputValue': '' })
if (typeof this.getTabBar === 'function' && this.getTabBar()) { this.getTabBar().setData({ selected: 1 }) } },
search: function(e) { this.getTask(e.detail);},
/** * 生命周期函数--监听页面隐藏 */ onHide() {
},
/** * 生命周期函数--监听页面卸载 */ onUnload() {
},
/** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh() {
},
/** * 页面上拉触底事件的处理函数 */ onReachBottom() {
},
/** * 用户点击右上角分享 */ onShareAppMessage() {
}})
|