2019-12-23 10:04:09 +08:00
|
|
|
// components/orderconfirm/orderagreement/orderagreement.js
|
|
|
|
Component({
|
|
|
|
/**
|
|
|
|
* 组件的属性列表
|
|
|
|
*/
|
|
|
|
properties: {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 组件的初始数据
|
|
|
|
*/
|
|
|
|
data: {
|
2019-12-24 16:48:20 +08:00
|
|
|
s:false
|
2019-12-23 10:04:09 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 组件的方法列表
|
|
|
|
*/
|
|
|
|
methods: {
|
2019-12-24 16:48:20 +08:00
|
|
|
a(){
|
|
|
|
this.setData({
|
|
|
|
s:!this.data.s
|
|
|
|
})
|
|
|
|
}
|
2019-12-23 10:04:09 +08:00
|
|
|
}
|
|
|
|
})
|