flat: 国庆节暂存
This commit is contained in:
@@ -123,7 +123,8 @@
|
||||
style="margin-right: 10rpx;background-color: #FBAD17;border-radius: 45rpx;">
|
||||
电话联系
|
||||
</view>
|
||||
<view @click="submit" class="bottombtn flexbtn" style="border-radius: 45rpx;">
|
||||
<view @click="submit" class="bottombtn flexbtn"
|
||||
:style="{backgroundColor: applyopen ? '#999999' : '#1B66FF'}">
|
||||
申请
|
||||
</view>
|
||||
</view>
|
||||
@@ -162,9 +163,10 @@
|
||||
<view style="height: 200rpx;padding: 20rpx 40rpx;">
|
||||
<view style="font-size: 28rpx;font-weight: bold;">重要提示:</view>
|
||||
<view style="font-size: 24rpx;color:#707070;margin-top:10rpx;">为保障个人基本劳动权益,建议通过平台用工的形式就业</view>
|
||||
<view style="text-align: center;font-size:28rpx;margin-top: 30rpx;"> {{ info.callName }} :
|
||||
<span style="color: blue"
|
||||
<view style="text-align: center;font-size:28rpx;margin-top: 30rpx;"> {{ info.callName || '联系人'}} :
|
||||
<span style="color: blue" v-if="info.callTel"
|
||||
@click="tools.onDialingPhoneNumber(info.callTel)">{{ info.callTel }}</span>
|
||||
<span style="color: #333333" v-else>无联系方式</span>
|
||||
</view>
|
||||
</view>
|
||||
</u-popup>
|
||||
@@ -251,7 +253,8 @@
|
||||
maxlength: 6,
|
||||
collectStatus: 0, // 收藏状态
|
||||
showPopUp: false,
|
||||
isInvite: false
|
||||
isInvite: false,
|
||||
applyopen: false
|
||||
}
|
||||
},
|
||||
components: {
|
||||
@@ -291,6 +294,14 @@
|
||||
methods: {
|
||||
dateFormat,
|
||||
collect() {
|
||||
if (!this.$api.haslogin()) {
|
||||
GoLogin()
|
||||
return
|
||||
}
|
||||
if (!this.$api.hasResume()) {
|
||||
this.navTo('/pageMy/my/resume/index', true)
|
||||
return
|
||||
}
|
||||
// console.log('收藏,取消收藏')
|
||||
const status = this.collectStatus == 0 ? 1 : 0;
|
||||
updateCollectStatus(this.info.id, status, 0).then(res => {
|
||||
@@ -300,6 +311,14 @@
|
||||
})
|
||||
},
|
||||
callPhone() {
|
||||
if (!this.$api.haslogin()) {
|
||||
GoLogin()
|
||||
return
|
||||
}
|
||||
if (!this.$api.hasResume()) {
|
||||
this.navTo('/pageMy/my/resume/index', true)
|
||||
return
|
||||
}
|
||||
this.showPopUp = true;
|
||||
},
|
||||
closePopUp() {
|
||||
@@ -343,7 +362,9 @@
|
||||
lon: self.info.lon,
|
||||
})
|
||||
}
|
||||
|
||||
if (res.data.data.missionNo.search('ZKRD') >= 0) {
|
||||
self.applyopen = true
|
||||
}
|
||||
self.showDetail = true;
|
||||
self.getCollectStatus();
|
||||
if (self.type === 1) {
|
||||
@@ -357,16 +378,23 @@
|
||||
});
|
||||
},
|
||||
submit: function() {
|
||||
if (!this.$api.haslogin()) {
|
||||
GoLogin()
|
||||
return
|
||||
}
|
||||
|
||||
if (!this.$api.hasResume()) {
|
||||
this.navTo('/pageMy/my/resume/index', true)
|
||||
return
|
||||
}
|
||||
|
||||
if (this.applyopen) return;
|
||||
const _that = this
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '请确认申请,申请后不能撤销',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
if (!_that.$store.state.user.token) {
|
||||
GoLogin()
|
||||
return
|
||||
}
|
||||
if (_that.loading) return
|
||||
const auth = _that.auth
|
||||
const contractOn = _that.info.contractOn
|
||||
@@ -572,11 +600,11 @@
|
||||
background-color: #1B66FF;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 10rpx;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-size: 32rpx;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
border-radius: 45rpx;
|
||||
}
|
||||
|
||||
.btn {
|
||||
|
||||
Reference in New Issue
Block a user