You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
532 B
33 lines
532 B
//index.js
|
|
//获取应用实例
|
|
const app = getApp()
|
|
|
|
Page({
|
|
data: {
|
|
currentTap:0,
|
|
|
|
},
|
|
|
|
onLoad: function () {
|
|
this.setData({
|
|
fonts:app.globalData.font
|
|
})
|
|
},
|
|
order_status:function(e){
|
|
var current = e.currentTarget.dataset.current
|
|
this.setData({
|
|
currentTap:current
|
|
})
|
|
},
|
|
commentOrder:function(){
|
|
wx.navigateTo({
|
|
url:'/pages/commentOrder/commentOrder'
|
|
})
|
|
},
|
|
manageAddress:function(){
|
|
wx.navigateTo({
|
|
url:'/pages/manageAddress/manageAddress'
|
|
})
|
|
}
|
|
})
|