42 lines
700 B
JavaScript
42 lines
700 B
JavaScript
// packageD/member/myOrder/refund/components/receivingStatusPop/receivingStatusPop.js
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
popShow:false,
|
|
radio:0
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
setPopShow(){
|
|
this.setData({
|
|
popShow:!this.data.popShow
|
|
});
|
|
},
|
|
onChange(event) {
|
|
this.setData({
|
|
radio: event.detail,
|
|
});
|
|
},
|
|
send(){
|
|
let status = this.data.radio==0 ? 'not_received' : 'received';
|
|
this.triggerEvent("confirm",{status});
|
|
this.setPopShow();
|
|
},
|
|
setRadio(radio){
|
|
this.setData({radio});
|
|
}
|
|
}
|
|
});
|