12345678910111213141516171819202122232425262728293031 |
- // pages/release/release.js
- // 获取应用实例
- const app = getApp()
-
- Page({
- data: {
- currentIndex: 2,
- pageLoading: true,
- customerId: "",
- // 前往关注公众号
- topShow: true,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad() {
- this.getMsgData();
- },
- closeTopShow() {
- this.setData({
- topShow: false
- })
- },
- getMsgData() {
- setTimeout(() => {
- this.setData({
- pageLoading: false
- })
- }, 500);
- },
- })
|