|
|
|
@ -77,7 +77,8 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
onShow() {
|
|
|
|
this.init();
|
|
|
|
let that = this;
|
|
|
|
|
|
|
|
that.init();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
init() {
|
|
|
|
init() {
|
|
|
|
@ -89,8 +90,13 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
(res) => {
|
|
|
|
(res) => {
|
|
|
|
console.log("企业基本信息:", res);
|
|
|
|
console.log("企业基本信息:", res);
|
|
|
|
that.info = res;
|
|
|
|
if(res.recordStatus == 1){
|
|
|
|
// that.info.recordStatus = 2;
|
|
|
|
that.info = res;
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
uni.switchTab({
|
|
|
|
|
|
|
|
url: '/pages/home/index',
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|