|
|
@ -31,8 +31,8 @@ |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="userHead"> |
|
|
|
<userHead :headImage="detail.headImage" |
|
|
|
:name="detail.name" :phoneCall="detail.phone"/> |
|
|
|
<userHead :image="hanHaiMember.headImage" :tips="personInfo.phone" |
|
|
|
:name="personInfo.name" :phoneCall="personInfo.phone"/> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="address"> |
|
|
@ -52,11 +52,11 @@ |
|
|
|
></uv-icon> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="tag-list"> |
|
|
|
<!-- <view class="tag-list"> |
|
|
|
<view> |
|
|
|
距您14.6千米 |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> --> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="info"> |
|
|
@ -94,17 +94,17 @@ |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="boss-box" |
|
|
|
@click="$utils.navigateTo('/pages_order/work/bossDetail?id=1')"> |
|
|
|
@click="$utils.navigateTo('/pages_order/work/bossDetail?id='+detail.id)"> |
|
|
|
<view class="image"> |
|
|
|
<image src="../static/work/g.png" mode=""></image> |
|
|
|
<image :src="companyInfo.logo" mode=""></image> |
|
|
|
</view> |
|
|
|
<view class="shop-box" |
|
|
|
> |
|
|
|
<view class="title"> |
|
|
|
广州有限公司 |
|
|
|
{{companyInfo.companyName}} |
|
|
|
</view> |
|
|
|
<view class="desc"> |
|
|
|
天使论A |
|
|
|
{{companyInfo.financing}}*{{companyInfo.industry}}*{{companyInfo.number}} |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="arrow-right"> |
|
|
@ -155,6 +155,9 @@ |
|
|
|
text : '', |
|
|
|
id : 0, |
|
|
|
detail : {}, |
|
|
|
personInfo:{}, |
|
|
|
companyInfo:{}, |
|
|
|
hanHaiMember:{}, |
|
|
|
collectionFlag : false, |
|
|
|
mixinsListApi : 'employeeQueryJobList', |
|
|
|
} |
|
|
@ -176,8 +179,11 @@ |
|
|
|
} |
|
|
|
this.$api('employeeQueryJobById', data, res => { |
|
|
|
if(res.code == 200){ |
|
|
|
this.detail = res.result.employJob |
|
|
|
this.detail = res.result.jobInfo |
|
|
|
this.collectionFlag = res.result.collectionFlag |
|
|
|
this.personInfo = res.result.personInfo |
|
|
|
this.companyInfo = res.result.companyInfo |
|
|
|
this.hanHaiMember = res.result.hanHaiMember |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|