12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // pages/dcpromotion/dcpresult/dcpresult.js
- const app = getApp()
- var util = require("../../../utils/util.js")
- Page({
- data: {
- imgpath: null
- },
- onLoad: function(options) {
- this.setData({
- imgpath: 'https://yuesuo.yueguanjia.com/MiniProgram/promotion/dc/congratulate.jpg'
- })
- let _this = this;
- _this.setData({
- navH: app.globalData.navHeight
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function() {
- },
- onShow: function() {
- },
- onHide: function() {
- },
- onUnload: function() {
- },
- onPullDownRefresh: function() {
- },
- onReachBottom: function() {
- },
- onShareAppMessage: function() {
- },
- confirm: function() {
- util.goHome();
- }
- })
|