mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 06:09:11 +08:00
21 lines
518 B
JavaScript
21 lines
518 B
JavaScript
(function(vc){
|
|
vc.extends({
|
|
data:{
|
|
orderDetailInfo:{
|
|
orderDetails:[]
|
|
}
|
|
},
|
|
_initMethod:function(){},
|
|
_initEvent:function(){
|
|
vc.on('orderDetailManage','listOrderDetails',function(_param){
|
|
vc.component.orderDetailInfo.orderDetails = _param;
|
|
});
|
|
},
|
|
methods:{
|
|
_goBack:function(){
|
|
vc.emit('orderManage','goBack',{});
|
|
}
|
|
}
|
|
});
|
|
})(window.vc);
|