deguodaigou/components/orderconfirm/orderbottom/orderbottom.js

28 lines
476 B
JavaScript
Raw Normal View History

2019-12-23 10:04:09 +08:00
// components/orderconfirm/orderbottom/orderbottom.js
Component({
/**
* 组件的属性列表
*/
properties: {
price:String
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
sub() {
// wx.navigateTo({
// url: "/pages/order/order"
// })
this.triggerEvent("sub")
}
}
2019-12-16 18:26:28 +08:00
})