|
@@ -10,34 +10,34 @@
|
|
|
</view>
|
|
|
<view class="detail">
|
|
|
<view class="name hflex acenter jbetween">
|
|
|
- <text class="text_hide">{{detail.name}}</text>
|
|
|
- <text>{{detail.salary}}</text>
|
|
|
+ <text class="text_hide">{{detail.title}}</text>
|
|
|
+ <text>{{detail.salary_min}}-{{detail.salary_max}}K·{{detail.salary_month}}薪</text>
|
|
|
</view>
|
|
|
<view class="city hflex acenter">
|
|
|
<text v-if="detail.city">{{detail.city}} | </text>
|
|
|
- <text v-if="detail.exper">{{detail.exper}} | </text>
|
|
|
- <text v-if="detail.edu">{{detail.edu}}</text>
|
|
|
+ <text v-if="detail.experience_min">{{detail.experience_min}}-{{detail.experience_max}}年 | </text>
|
|
|
+ <text v-if="detail.education">{{detail.education}}</text>
|
|
|
</view>
|
|
|
<view class="user hflex acenter">
|
|
|
- <image :src="detail.hr.avatar" mode="aspectFill"></image>
|
|
|
+ <image :src="detail.avatar" mode="aspectFill"></image>
|
|
|
<view class="vflex user-right jbetween">
|
|
|
- <text>{{detail.hr.name}}</text>
|
|
|
- <text>{{detail.hr.mobile}}</text>
|
|
|
+ <text>{{detail.name}}</text>
|
|
|
+ <text>{{detail.mobile}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="box">
|
|
|
<view class="title">职位详情</view>
|
|
|
- <u-parse :content="detail.content"></u-parse>
|
|
|
+ <u-parse :content="detail.detail"></u-parse>
|
|
|
</view>
|
|
|
<view class="box">
|
|
|
<view class="title">职位福利</view>
|
|
|
<view class="hflex acenter fwrap box-list">
|
|
|
- <text v-for="(item,index) in detail.fuli" :key="index">{{item}}</text>
|
|
|
+ <text v-for="(item,index) in detail.tags" :key="index">{{item.name}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="box">
|
|
|
<view class="title">公司信息</view>
|
|
|
- <view class="text">{{detail.address}}</view>
|
|
|
+ <u-parse :content="detail.company_info"></u-parse>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="bottom">
|
|
@@ -47,6 +47,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import $api from '@/static/js/api.js'
|
|
|
export default {
|
|
|
data() {
|
|
|
return{
|
|
@@ -65,25 +66,16 @@
|
|
|
})
|
|
|
},
|
|
|
getdata() {
|
|
|
- this.detail = {
|
|
|
- name: 'C语言开发工程师',
|
|
|
- salary: '30-50K·15薪',
|
|
|
- city: '北京市·海淀区',
|
|
|
- edu: '本科',
|
|
|
- exper: '3-5年',
|
|
|
- hr: {
|
|
|
- avatar: 'https://cdn.uviewui.com/uview/album/1.jpg',
|
|
|
- name: '刘女士',
|
|
|
- mobile: '15962976583'
|
|
|
- },
|
|
|
- content: `1. 负责公司产品在PC端、移动端页面/应用的整体设计
|
|
|
- 2. 基于用户体验、人机交互、图形化设计、界面设计等前沿理论实现产品风格设计;
|
|
|
- 3. 充分理解产品策划思路及理念,配合产品经理和研发人员实现产品各种界面的视觉设计;
|
|
|
- 4. 建立和完善产品界面视觉设计规范;
|
|
|
- 5.根据交互设计及产品规划,完成产(iPhoneAndroid、Web、App应用及网站)相关的用户界面视觉设计`,
|
|
|
- fuli: ['五险一金','周末双休','年终奖金','交通补助','住房补贴','公司提供专车'],
|
|
|
- address: '临沂兰山区山东临古电商科技创新孵化园10号楼超级丹'
|
|
|
- }
|
|
|
+ var _this = this
|
|
|
+ $api.req({
|
|
|
+ url: 'job/'+ this.id,
|
|
|
+ method: 'GET',
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 10000) {
|
|
|
+ _this.detail = res.data
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|