|
|
|
|
@ -385,7 +385,7 @@ export default {
|
|
|
|
|
this.G.setNavStyle();
|
|
|
|
|
},
|
|
|
|
|
onShareAppMessage() {
|
|
|
|
|
return this.G.shareFun();
|
|
|
|
|
return this.G.shareFun('/root/detail/apply');
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
@ -657,7 +657,7 @@ export default {
|
|
|
|
|
if (res.createTime) {
|
|
|
|
|
res.create_time = that.G.getPointTime(res.createTime, "YY--MM--DD HH:MM");
|
|
|
|
|
}
|
|
|
|
|
if (res.receptionTime) {
|
|
|
|
|
if (res.receptionTime) {
|
|
|
|
|
res.reception_time = that.G.getPointTime(res.receptionTime, "YY--MM--DD HH:MM");
|
|
|
|
|
}
|
|
|
|
|
if (res.interviewTime) {
|
|
|
|
|
@ -733,6 +733,22 @@ export default {
|
|
|
|
|
console.log("that.orderDetail", that.orderDetail);
|
|
|
|
|
that.$forceUpdate();
|
|
|
|
|
that.speed = 1;
|
|
|
|
|
},
|
|
|
|
|
(err)=>{
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title:' ',
|
|
|
|
|
content:err,
|
|
|
|
|
confirmText:'回首页',
|
|
|
|
|
success(era) {
|
|
|
|
|
if(era.confirm){
|
|
|
|
|
uni.switchTab({
|
|
|
|
|
url:'/pages/home/index'
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
|