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.
hunjianghu/LL/company1-master/pages/order/order.js

26 lines
371 B

//index.js
//获取应用实例
const app = getApp()
Page({
data: {
currentTap:0,
},
onLoad: function () {
},
order_status:function(e){
var current = e.currentTarget.dataset.current
this.setData({
currentTap:current
})
},
commentOrder:function(){
wx.navigateTo({
url:'/pages/commentOrder/commentOrder'
})
}
})