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