no message

cyl/master-0804
jscyl13849007907 3 months ago
parent d5a752132a
commit ce67cadcb0

@ -17,13 +17,14 @@
@clickItem="teamSet" @clickItem="teamSet"
/> />
</view> </view>
<view class="g_mt_10"> <view class="g_mt_10 g_position_rela">
<div class="g_w_8 g_h_8 g_radius_50 g_bg_f0a g_position_abso" style="right: 18px; top: 10px" v-if="readed && readed > 0"></div>
<g-panel-form-item <g-panel-form-item
:list="[ :list="[
{ {
icon: '', icon: '',
label: '合并团队', label: '合并团队',
result: '', result: readed && readed > 0 ? readed : '',
path: '', path: '',
tip: 'margeGroup', tip: 'margeGroup',
}, },
@ -128,6 +129,7 @@ export default {
}, },
data() { data() {
return { return {
readed:false,
isAdmin: uni.getStorageSync("apply-userinfo").admin, isAdmin: uni.getStorageSync("apply-userinfo").admin,
userInfo: uni.getStorageSync("apply-userinfo"), userInfo: uni.getStorageSync("apply-userinfo"),
teamSetShow: false, teamSetShow: false,
@ -145,6 +147,7 @@ export default {
}, },
onShow() { onShow() {
console.log("企业资料 show"); console.log("企业资料 show");
this.getNum()
}, },
created() { created() {
var that = this; var that = this;
@ -174,6 +177,12 @@ export default {
// } // }
}, },
methods: { methods: {
getNum(){
let that = this;
that.G.Get(that.api.person_applyNum,{},(res)=>{
that.readed = res;
})
},
save() { save() {
let that = this; let that = this;
let subObj = { let subObj = {
@ -219,6 +228,7 @@ export default {
}); });
} }
that.resetInfo(); that.resetInfo();
that.getNum()
}); });
}, },
resetInfo() { resetInfo() {

Loading…
Cancel
Save