wkw il y a 5 jours
Parent
commit
157521d59d

+ 6 - 7
my/jilu/editInterview.vue

@@ -72,13 +72,12 @@
 				</view>
 			</view>
 		</view>
-		<u-button class="btn" @click="rules = true">发送面试邀请</u-button>
-
+		<u-button class="btn" hover-class="none" @click="rules = true">发送面试邀请</u-button>
 		<!-- 面试职位 -->
 		<u-popup v-model="position" mode="bottom" border-radius="40">
 			<view class="pop-content">
 				<view class="pop-title">选择面试职位</view>
-				<view class="pop-card">
+				<scroll-view class="pop-card" scroll-y>
 					<view class="pop-card-item" v-for="(item, index) in jobList" :key="index" @click="chooseJob(item)">
 						<u-radio-group v-model="popRadioValue">
 							<u-radio :name="item.id"></u-radio>
@@ -92,7 +91,7 @@
 							{{ item.salary }}
 						</view>
 					</view>
-				</view>
+				</scroll-view>
 			</view>
 		</u-popup>
 		<!-- 选择联系人 -->
@@ -102,7 +101,7 @@
 					<view>选择联系人</view>
 					<view class="note">您可填写其他面试联系人电话,请保证已获得其授权同意,求职者接受面试后可以查看该号码</view>
 				</view>
-				<view class="pop-card">
+				<scroll-view class="pop-card" scroll-y>
 					<view class="person-item" v-for="(item,index) in personList" :key="item.id"
 						@click="selectPerson(item)">
 						<view>{{item.name}}</view>
@@ -110,7 +109,7 @@
 						<image class="pop-icon" src="/static/images/msg/edit.svg" mode="aspectFit"
 							@click="goPage('editPerson',item)"></image>
 					</view>
-				</view>
+				</scroll-view>
 				<u-button class="pop-btn" @click="goPage('addPerson')">新增联系人</u-button>
 			</view>
 		</u-popup>
@@ -164,7 +163,7 @@
 					<view v-else>请及时关注面试时间,以免忘记面试</view>
 				</view>
 				<view class="rules-btn" v-if="isCancel">
-					<u-button class="cancel" @click="rules = false">思考片刻再决定</u-button>
+					<u-button class="cancel" hover-class="none" @click="rules = false">思考片刻再决定</u-button>
 					<u-button class="guarantee" @click="isCancel = false">保证不爽约</u-button>
 				</view>
 				<view v-else>

+ 7 - 6
pages/msg/css/interviewInvitation.scss

@@ -96,10 +96,6 @@
                     justify-content: flex-end;
                 }
 
-                .cell-hover {
-                    background-color: rgba(0, 0, 0, 0.02);
-                    transition: background-color 0.1s ease;
-                }
             }
 
             .explanation {
@@ -235,7 +231,7 @@
         .pop-card {
             flex: 1;
             overflow: auto;
-
+			margin-bottom: 24rpx;
             .pop-card-item {
                 margin: 33rpx 0;
                 box-sizing: border-box;
@@ -417,6 +413,7 @@
                 text-align: center;
                 text-transform: uppercase;
                 box-sizing: border-box;
+				border-radius: 0 !important;
             }
             .cancel{
                 border-right: 1rpx solid rgba(153, 153, 153, 0.2);
@@ -446,4 +443,8 @@
 }
 ::v-deep .u-hairline-border:after {
     border: none !important;
-}
+}
+.cell-hover {
+	background-color: rgba(0, 0, 0, 0.02);
+	transition: background-color 0.1s ease;
+}

+ 6 - 6
pages/msg/interviewInvitation.vue

@@ -73,13 +73,13 @@
 				</view>
 			</view>
 		</view>
-		<u-button class="btn" @click="rules = true">发送面试邀请</u-button>
+		<u-button class="btn" @click="rules = true" hover-class="none">发送面试邀请</u-button>
 
 		<!-- 面试职位 -->
 		<u-popup v-model="position" mode="bottom" border-radius="40">
 			<view class="pop-content">
 				<view class="pop-title">选择面试职位</view>
-				<view class="pop-card">
+				<scroll-view class="pop-card" scroll-y>
 					<view class="pop-card-item" v-for="(item, index) in jobList" :key="index" @click="chooseJob(item)">
 						<u-radio-group v-model="popRadioValue">
 							<u-radio :name="item.id"></u-radio>
@@ -93,7 +93,7 @@
 							{{ item.salary }}
 						</view>
 					</view>
-				</view>
+				</scroll-view>
 			</view>
 		</u-popup>
 		<!-- 选择联系人 -->
@@ -103,7 +103,7 @@
 					<view>选择联系人</view>
 					<view class="note">您可填写其他面试联系人电话,请保证已获得其授权同意,求职者接受面试后可以查看该号码</view>
 				</view>
-				<view class="pop-card">
+				<scroll-view class="pop-card" scroll-y>
 					<view class="person-item" v-for="(item,index) in personList" :key="item.id"
 						@click="selectPerson(item)">
 						<view>{{item.name}}</view>
@@ -111,7 +111,7 @@
 						<image class="pop-icon" src="/static/images/msg/edit.svg" mode="aspectFit"
 							@click="goPage('editPerson',item)"></image>
 					</view>
-				</view>
+				</scroll-view>
 				<u-button class="pop-btn" @click="goPage('addPerson')">新增联系人</u-button>
 			</view>
 		</u-popup>
@@ -165,7 +165,7 @@
 					<view v-else>请及时关注面试时间,以免忘记面试</view>
 				</view>
 				<view class="rules-btn" v-if="isCancel">
-					<u-button class="cancel" @click="rules = false">思考片刻再决定</u-button>
+					<u-button class="cancel" hover-class="none" @click="rules = false">思考片刻再决定</u-button>
 					<u-button class="guarantee" @click="isCancel = false">保证不爽约</u-button>
 				</view>
 				<view v-else>

+ 1 - 1
pages/msg/selectInterview.vue

@@ -16,7 +16,7 @@
 				</div>
 			</view>
 		</view>
-		<u-button class="btn" :disabled="!canSave" @click="goBack">保存</u-button>
+		<u-button class="btn" hover-class="none" :disabled="!canSave" @click="goBack">保存</u-button>
 	</view>
 </template>