|
|
|
|
@ -17,13 +17,14 @@
|
|
|
|
|
@clickItem="teamSet"
|
|
|
|
|
/>
|
|
|
|
|
</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
|
|
|
|
|
:list="[
|
|
|
|
|
{
|
|
|
|
|
icon: '',
|
|
|
|
|
label: '合并团队',
|
|
|
|
|
result: '',
|
|
|
|
|
result: readed && readed > 0 ? readed : '',
|
|
|
|
|
path: '',
|
|
|
|
|
tip: 'margeGroup',
|
|
|
|
|
},
|
|
|
|
|
@ -128,6 +129,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
readed:false,
|
|
|
|
|
isAdmin: uni.getStorageSync("apply-userinfo").admin,
|
|
|
|
|
userInfo: uni.getStorageSync("apply-userinfo"),
|
|
|
|
|
teamSetShow: false,
|
|
|
|
|
@ -145,6 +147,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
console.log("企业资料 show");
|
|
|
|
|
this.getNum()
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
var that = this;
|
|
|
|
|
@ -174,6 +177,12 @@ export default {
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getNum(){
|
|
|
|
|
let that = this;
|
|
|
|
|
that.G.Get(that.api.person_applyNum,{},(res)=>{
|
|
|
|
|
that.readed = res;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
save() {
|
|
|
|
|
let that = this;
|
|
|
|
|
let subObj = {
|
|
|
|
|
@ -219,6 +228,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
that.resetInfo();
|
|
|
|
|
that.getNum()
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
resetInfo() {
|
|
|
|
|
|