123456789101112131415161718192021222324252627 |
- // pages/orderGoods/index.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- onUnload: function () {
- wx.reLaunch({
- url: '../vendingMachine/index',
- })
- },
- toRouter(e){
- wx.navigateTo({
- url: e.currentTarget.dataset.url,
- })
- }
- })
|