|
@@ -16,8 +16,8 @@
|
|
|
<div class="bot-tit">
|
|
|
<div class="over-view" @click="tabClick(1)" :class="{active:infor === 1}"><span>概览</span></div>
|
|
|
<div class="basic" @click="tabClick(2)" :class="{active:infor === 2}"><span>基本信息</span></div>
|
|
|
+ <div class="ding-ji" @click="tabClick(4)" :class="{active:infor === 4}"><span>留资信息</span></div>
|
|
|
<div class="basic" @click="tabClick(3)" :class="{active:infor === 3}"><span>大会员信息</span></div>
|
|
|
- <!-- <div class="shi-ren" :class="{active:infor === 4}"><span>实名认证<i :class="authStatus | authColor">{{authStatus | authStatus}}</i></span></div> -->
|
|
|
<div class="ding-ji" @click="tabClick(5)" :class="{active:infor === 5}"><span>订单记录</span></div>
|
|
|
<!-- <div class="ding-ji" :class="{active:infor === 6}"><span>反馈记录</span></div>
|
|
|
<div class="yong-msg" :class="{active:infor === 7}"><span>用户信息</span></div> -->
|
|
@@ -171,6 +171,34 @@
|
|
|
</div>
|
|
|
</Card>
|
|
|
|
|
|
+ <Card v-if="infor == 4">
|
|
|
+ <div slot="title" class="right-fund">基本信息</div>
|
|
|
+ <div class="in-cards">
|
|
|
+ <div class="l-cont">
|
|
|
+ <p>姓名:{{datas5.name}}</p>
|
|
|
+ <p class="par">邮箱:{{datas5.mail}}</p>
|
|
|
+ <p>行业:{{datas5.industry}}</p>
|
|
|
+ </div>
|
|
|
+ <div class="l-cont r-cont">
|
|
|
+ <p>手机号:{{datas5.phone}}</p>
|
|
|
+ <p class="par">地区:{{datas5.province}}{{datas5.city}}</p>
|
|
|
+ <p>受雇类型:{{datas5.hireType}}</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+ <Card v-if="infor == 4" style="marginTop: 20px">
|
|
|
+ <div slot="title" class="right-fund">公司信息</div>
|
|
|
+ <div class="in-cards b-cards">
|
|
|
+ <p>公司名称:{{datas5.company}}</p>
|
|
|
+ <p>公司类型:{{datas5.companyType}}</p>
|
|
|
+ <p>职位:{{datas5.position}}</p>
|
|
|
+ <p>公司规模:{{datas5.company_size}}</p>
|
|
|
+ <p>业务范围:{{datas5.workScope}}</p>
|
|
|
+ <p>合作需求:{{datas5.partnerNeeds}}</p>
|
|
|
+ <p>是否同意剑鱼标讯将业务范围及合作需求提供给潜在合作伙伴搜索、查看:{{datas5.agree?'是':'否'}}</p>
|
|
|
+ </div>
|
|
|
+ </Card>
|
|
|
+
|
|
|
<Card v-if="infor == 5">
|
|
|
<div slot="title" class="right-fund">订单记录</div>
|
|
|
<table-lists
|
|
@@ -280,6 +308,14 @@ export default {
|
|
|
}
|
|
|
}).get()
|
|
|
},
|
|
|
+ retained() {// 留资
|
|
|
+ let rout = this.$route.query
|
|
|
+ this.$request('/users/userRetentionInfo').data({
|
|
|
+ userId: rout.id
|
|
|
+ }).success((res) => {
|
|
|
+ this.datas5 = res.data.userRetentionInfo
|
|
|
+ }).get()
|
|
|
+ },
|
|
|
load(val) {
|
|
|
this.loading = val
|
|
|
},
|
|
@@ -290,6 +326,9 @@ export default {
|
|
|
},
|
|
|
tabClick(index) {
|
|
|
this.infor = index
|
|
|
+ if (index == 4) {
|
|
|
+ this.retained()
|
|
|
+ }
|
|
|
},
|
|
|
addSub() {
|
|
|
this.subCorde.show = true
|
|
@@ -379,6 +418,7 @@ export default {
|
|
|
datas2: [],
|
|
|
datas3: [],
|
|
|
datas4: [],
|
|
|
+ datas5: [],
|
|
|
orderRecord: [],
|
|
|
subCorde: {
|
|
|
show: false,
|
|
@@ -876,5 +916,25 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .in-cards {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: inherit;
|
|
|
+ font-size: 14px;
|
|
|
+ .l-cont {
|
|
|
+ width: 50%;
|
|
|
+ .par {
|
|
|
+ margin: 20px 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .r-cont {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .b-cards {
|
|
|
+ flex-direction: column;
|
|
|
+ p {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|