mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
24 lines
695 B
JavaScript
Executable File
24 lines
695 B
JavaScript
Executable File
(function(vc){
|
|
vc.extends({
|
|
data:{
|
|
orderDetailInfo:{
|
|
orderDetails:[]
|
|
}
|
|
},
|
|
_initMethod:function(){},
|
|
_initEvent:function(){
|
|
vc.on('orderDetailManage','listOrderDetails',function(_param){
|
|
vc.component.orderDetailInfo.orderDetails = _param;
|
|
vc.component.orderDetailInfo.orderDetails.map(item=>{
|
|
item.createTime=item.createTime.substr(0,item.createTime.length-2);
|
|
})
|
|
});
|
|
},
|
|
methods:{
|
|
_goBack:function(){
|
|
vc.emit('orderManage','goBack',{});
|
|
}
|
|
}
|
|
});
|
|
})(window.vc);
|