no message

cyl/job_im
jscyl13849007907 2 days ago
parent aaed4632fd
commit 9c3d08244a

@ -222,6 +222,7 @@ export default {
onShareTimeline() { onShareTimeline() {
let that = this; let that = this;
let appInfo = uni.getStorageSync("miniApp-info"); let appInfo = uni.getStorageSync("miniApp-info");
console.log("appInfo", appInfo);
return { return {
title: appInfo.slogan || "你想找的厂都有,立即查看", title: appInfo.slogan || "你想找的厂都有,立即查看",
imageUrl: appInfo.logo, imageUrl: appInfo.logo,

@ -101,7 +101,7 @@
@clickItem="goPage('/root/merchantManagement/teamManage')" @clickItem="goPage('/root/merchantManagement/teamManage')"
/> />
</view> </view>
<view class="g_mt_10" v-if="!userInfo.agencyId"> <view class="g_mt_10" v-if="!userInfo.agencyId && isLogin">
<g-panel-form-item <g-panel-form-item
:list="[ :list="[
{ {

@ -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);
if(res.recordStatus == 1){
that.info = res; that.info = res;
// that.info.recordStatus = 2; }else{
uni.switchTab({
url: '/pages/home/index',
});
}
} }
); );
}, },

Loading…
Cancel
Save