|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<view>
|
|
<view>
|
|
<view
|
|
<view
|
|
- class="list"
|
|
|
|
|
|
+ class="list ss-m-x-15"
|
|
v-for="item in items"
|
|
v-for="item in items"
|
|
:key="item.id"
|
|
:key="item.id"
|
|
>
|
|
>
|
|
@@ -11,11 +11,10 @@
|
|
</view>
|
|
</view>
|
|
<view class="list-remuneration">
|
|
<view class="list-remuneration">
|
|
薪酬:
|
|
薪酬:
|
|
- {{ item.job?.payFrom }}
|
|
|
|
- {{ item.job?.payFrom && item.job?.payTo ? ' - ' : '' }}
|
|
|
|
- {{ item.job?.payTo }}
|
|
|
|
|
|
+ <span v-if="item.job?.payFrom && item.job?.payTo">{{ item.job?.payFrom + '-' + item.job?.payTo }}</span>
|
|
|
|
+ <span v-else>面议</span>
|
|
</view>
|
|
</view>
|
|
- <view class="list-company">
|
|
|
|
|
|
+ <view class="list-company" style="border-radius: 0 0 12px 12px;">
|
|
<text>{{ item.enterprise?.anotherName }}</text>
|
|
<text>{{ item.enterprise?.anotherName }}</text>
|
|
<text>{{ item.enterprise?.anotherName && item.job?.name ? ' · ' : '' }}</text>
|
|
<text>{{ item.enterprise?.anotherName && item.job?.name ? ' · ' : '' }}</text>
|
|
<text>{{ item.job?.name }}</text>
|
|
<text>{{ item.job?.name }}</text>
|
|
@@ -36,8 +35,9 @@ const props = defineProps({
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.list {
|
|
.list {
|
|
- background: #FFF;
|
|
|
|
|
|
+ background: #fff;
|
|
margin-top: 20rpx;
|
|
margin-top: 20rpx;
|
|
|
|
+ border-radius: 12px;
|
|
&-top {
|
|
&-top {
|
|
padding: 20rpx;
|
|
padding: 20rpx;
|
|
display: flex;
|
|
display: flex;
|