Xiao_123 6 달 전
부모
커밋
477eb14b54
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      pagesA/recommendation/list.vue

+ 6 - 6
pagesA/recommendation/list.vue

@@ -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;