flat: 国庆节暂存
This commit is contained in:
@@ -166,9 +166,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>
|
||||
@@ -295,6 +296,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, 2).then(res => {
|
||||
@@ -304,6 +313,15 @@
|
||||
})
|
||||
},
|
||||
callPhone() {
|
||||
if (!this.$api.haslogin()) {
|
||||
GoLogin()
|
||||
return
|
||||
}
|
||||
|
||||
if (!this.$api.hasResume()) {
|
||||
this.navTo('/pageMy/my/resume/index', true)
|
||||
return
|
||||
}
|
||||
this.showPopUp = true;
|
||||
},
|
||||
closePopUp() {
|
||||
@@ -356,16 +374,21 @@
|
||||
}
|
||||
},
|
||||
submit: function() {
|
||||
if (!this.$api.haslogin()) {
|
||||
GoLogin()
|
||||
return
|
||||
}
|
||||
|
||||
if (!this.$api.hasResume()) {
|
||||
this.navTo('/pageMy/my/resume/index', true)
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user