
var id=this.order_id;
mui.ajax('' + devHost + '/moic/oe',{
data:{
orderId:id,
},
dataType: 'json', //服务器返回json格式数据
type: 'get', //HTTP请求类型
//aysnc:ture,
timeout: 10000, //超时时间设置为10秒;
headers: {
'Content-Type': 'application/json'
},
success: function(data) {
//服务器返回响应,根据响应结果,分析是否登录成功;
console.log(data);
vm.room_detial=data.result;
},
error: function(xhr, type, errorThrown) {
//异常处理;
console.log(type);
}
})