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.
26 lines
371 B
26 lines
371 B
6 years ago
|
//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'
|
||
|
})
|
||
|
}
|
||
|
})
|