diff --git a/App.vue b/App.vue
index d3007fc..64937a4 100644
--- a/App.vue
+++ b/App.vue
@@ -1,143 +1,139 @@
-
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/api/auth.js b/api/auth.js
index c933660..32355e9 100644
--- a/api/auth.js
+++ b/api/auth.js
@@ -1,118 +1,124 @@
-import {
- request
-} from '@/untils/AxiosUtils.js';
-import website from "@/config/website";
-
-const authUrl = '/api/jobslink-api/user/user/auth/auth'
-
-export const findAuth = () => request({
- url: '/api/jobslink-api/user/user/find',
- method: 'get'
-});
-
-export const cheakValue = () => request({
- url: authUrl,
- method: 'post',
- data: {
- cheakvalue: 1,
- bakvalue: 0
- }
-});
-
-export const realName = (realName, idNumber) => request({
- url: authUrl,
- method: 'post',
- data: {
- cheakvalue: 2,
- realName,
- idNumber
- }
-});
-
-export const bank = (bankName, realName, cardNumber, def, id) => request({
- url: authUrl,
- method: 'post',
- data: {
- cheakvalue: 3,
- bankName,
- cardNumber,
- realName,
- def,
- id
- }
-});
-
-export const insure = (bakvalue) => request({
- url: authUrl,
- method: 'post',
- data: {
- cheakvalue: 4,
- bakvalue
- }
-});
-// 判断当前用户是否采集签名
-export const isGather = () => request({
- url: "/api/jobslink-api/doc/docUserSeal/isGather",
- method: 'get',
-});
-// 个人端签名采集
-export const signGather = (signSrcUrl, password, confirmPassword) => request({
- url: "/api/jobslink-api/doc/docUserSeal/signGather",
- method: 'post',
- data: {
- signSrcUrl,
- password,
- confirmPassword
- }
-});
-// 获取短信接口
-export const sendValidate = (mobile) => request({
- url: "/api/jobslink-api/doc/docUserCert/resetPass/sendValidate",
- method: 'get',
- data: {
- mobile
- }
-});
-// 密码重置接口
-export const resetPass = (mobile, code, password) => request({
- url: "/api/jobslink-api/doc/docUserCert/resetPass",
- method: 'post',
- headers: {
- 'SCaptcha-Key': mobile,
- 'SCaptcha-Code': code,
- 'password': password
- }
-});
-// 我的合同
-export const contractList = (params) => request({
- url: "/api/jobslink-api/doc/contract/personal/contractList",
- method: 'get',
- data: params
-});
-// 签名密码 /jobslink-api/doc/docUserCert/checkPass
-export const checkPass = (params) => request({
- url: "/api/jobslink-api/doc/docUserCert/checkPass",
- method: 'get',
- data: params
-});
-// 返回的是base64格式的pdf
-export const viewContract = (params) => request({
- url: "/api/jobslink-api/doc/contract/viewContract",
- method: 'get',
- data: params
-});
-
-//新实名认证api
-export const newCertification = (bakvalue, realName, idNumber, cardNumber, bankCode,def,bankName) => request({
- url: '/api/jobslink-api/user/user/auth/authNew',
- method: 'post',
- data: {
- bakvalue,
- realName,
- idNumber,
- cardNumber,
- bankCode,
- def,
- bankName
- }
-});
+import {
+ request
+} from '@/untils/AxiosUtils.js';
+import website from "@/config/website";
+
+const authUrl = '/api/jobslink-api/user/user/auth/auth'
+
+export const findAuth = () => request({
+ url: '/api/jobslink-api/user/user/find',
+ method: 'get'
+});
+
+export const cheakValue = () => request({
+ url: authUrl,
+ method: 'post',
+ data: {
+ cheakvalue: 1,
+ bakvalue: 0
+ }
+});
+
+export const realName = (realName, idNumber) => request({
+ url: authUrl,
+ method: 'post',
+ data: {
+ cheakvalue: 2,
+ realName,
+ idNumber
+ }
+});
+
+export const bank = (bankName, realName, cardNumber, def, id) => request({
+ url: authUrl,
+ method: 'post',
+ data: {
+ cheakvalue: 3,
+ bankName,
+ cardNumber,
+ realName,
+ def,
+ id
+ }
+});
+
+export const insure = (bakvalue) => request({
+ url: authUrl,
+ method: 'post',
+ data: {
+ cheakvalue: 4,
+ bakvalue
+ }
+});
+// 判断当前用户是否采集签名
+export const isGather = () => request({
+ url: "/api/jobslink-api/doc/docUserSeal/isGather",
+ method: 'get',
+});
+// 个人端签名采集
+export const signGather = (signSrcUrl, password, confirmPassword) => request({
+ url: "/api/jobslink-api/doc/docUserSeal/signGather",
+ method: 'post',
+ data: {
+ signSrcUrl,
+ password,
+ confirmPassword
+ }
+});
+// 获取短信接口
+export const sendValidate = (mobile) => request({
+ url: "/api/jobslink-api/doc/docUserCert/resetPass/sendValidate",
+ method: 'get',
+ data: {
+ mobile
+ }
+});
+// 密码重置接口
+export const resetPass = (mobile, code, password) => request({
+ url: "/api/jobslink-api/doc/docUserCert/resetPass",
+ method: 'post',
+ headers: {
+ 'SCaptcha-Key': mobile,
+ 'SCaptcha-Code': code,
+ 'password': password
+ }
+});
+// 我的合同
+export const contractList = (params) => request({
+ url: "/api/jobslink-api/doc/contract/personal/contractList",
+ method: 'get',
+ data: params
+});
+// 签名密码 /jobslink-api/doc/docUserCert/checkPass
+export const checkPass = (params) => request({
+ url: "/api/jobslink-api/doc/docUserCert/checkPass",
+ method: 'get',
+ data: params
+});
+// 返回的是base64格式的pdf
+export const viewContract = (params) => request({
+ url: "/api/jobslink-api/doc/contract/viewContract",
+ method: 'get',
+ data: params
+});
+
+//新实名认证api
+export const newCertification = (bakvalue, realName, idNumber, cardNumber, bankCode, def, bankName) => request({
+ url: '/api/jobslink-api/user/user/auth/authNew',
+ method: 'post',
+ data: {
+ bakvalue,
+ realName,
+ idNumber,
+ cardNumber,
+ bankCode,
+ def,
+ bankName
+ }
+});
+// 电话联系
+export const getPhoneCountNumber = (params) => request({
+ url: "/api/jobslink-api/serve/phone",
+ method: 'get',
+ data: params
+});
\ No newline at end of file
diff --git a/api/federation.js b/api/federation.js
index 92d2752..902e82f 100644
--- a/api/federation.js
+++ b/api/federation.js
@@ -1,47 +1,55 @@
-import {
- request
-} from '@/untils/AxiosUtils.js';
-import website from "../config/website.js"
-import store from '@/store/';
-// 设置民族政治面貌 jobslink-api/user/user/setInfo
-export const setInfo = (params) => request({
- url: "/api/jobslink-api/user/user/setInfo",
- method: 'post',
- data: params
-});
-
-// 获取用户工会状态 /jobslink-api/doc/user/labourUnion/info
-export const labourUnionInfo = () => request({
- url: "/api/jobslink-api/doc/user/labourUnion/info",
- method: 'get'
-});
-
-// 申请入会
-export const contract = (params) => request({
- url: "/api/jobslink-api/doc/user/labourUnion/apply",
- method: 'post',
- data: params
-});
-
-//会员信息--判断用户是否加入工会
-export const labourUnionDetail = (no) => request({
- url: "/api/jobslink-api/doc/jkLabourUnionAppl/list",
- method: 'get',
- params:{no}
-});
-//提交会员申请
-export const saveApplication = (labourunionId,applType,applComment) =>{
- applComment=applComment.substring(0,200)
- return request({
- url: "/api/jobslink-api/doc/jkLabourUnionDetail/save",
- method: 'post',
- data:{labourunionId,applType,applComment}
- });
-}
-
-//查询提交的申请内容
-export const applicationInfo = (no) => request({
- url: "/api/jobslink-api/doc/jkLabourUnionDetail/list",
- method: 'get',
- params:{no}
-});
+import {
+ request
+} from '@/untils/AxiosUtils.js';
+import website from "../config/website.js"
+import store from '@/store/';
+// 设置民族政治面貌 jobslink-api/user/user/setInfo
+export const setInfo = (params) => request({
+ url: "/api/jobslink-api/user/user/setInfo",
+ method: 'post',
+ data: params
+});
+
+// 获取用户工会状态 /jobslink-api/doc/user/labourUnion/info
+export const labourUnionInfo = () => request({
+ url: "/api/jobslink-api/doc/user/labourUnion/info",
+ method: 'get'
+});
+
+// 申请入会
+export const contract = (params) => request({
+ url: "/api/jobslink-api/doc/user/labourUnion/apply",
+ method: 'post',
+ data: params
+});
+
+//会员信息--判断用户是否加入工会
+export const labourUnionDetail = (no) => request({
+ url: "/api/jobslink-api/doc/jkLabourUnionAppl/list",
+ method: 'get',
+ params: {
+ no
+ }
+});
+//提交会员申请
+export const saveApplication = (labourunionId, applType, applComment) => {
+ applComment = applComment.substring(0, 200)
+ return request({
+ url: "/api/jobslink-api/doc/jkLabourUnionDetail/save",
+ method: 'post',
+ data: {
+ labourunionId,
+ applType,
+ applComment
+ }
+ });
+}
+
+//查询提交的申请内容
+export const applicationInfo = (no) => request({
+ url: "/api/jobslink-api/doc/jkLabourUnionDetail/list",
+ method: 'get',
+ params: {
+ no
+ }
+});
\ No newline at end of file
diff --git a/api/user.js b/api/user.js
index 31e7d74..8af973b 100644
--- a/api/user.js
+++ b/api/user.js
@@ -72,4 +72,14 @@ export const clearCache = () => request({
export const mobileIsCms = () => request({
url: '/api/jobslink-api/mobile/isCms',
method: 'get'
-})
\ No newline at end of file
+})
+
+export const noticeIsEnable = () => request({
+ url: "/api/jobslink-api/desk/notice/isEnable",
+ method: 'get',
+});
+
+export const setNoticeIsEnable = (state) => request({
+ url: "/api/jobslink-api/desk/notice/isEnable/" + state,
+ method: 'PUT',
+});
\ No newline at end of file
diff --git a/pages/my/my.vue b/pages/my/my.vue
index 5b8c094..2d32b5c 100644
--- a/pages/my/my.vue
+++ b/pages/my/my.vue
@@ -78,6 +78,11 @@
投诉建议
+
+
+ 消息提醒
+
+
@@ -160,6 +165,13 @@ export default {
// this.labourUnionInfoInit()
},
methods: {
+ switch1Change(e) {
+ if (e.detail.value) {
+ this.$store.dispatch('setNoticeOpen');
+ } else {
+ this.$store.dispatch('setNoticeClose');
+ }
+ },
labourUnionInfoInit() {
labourUnionInfo().then((e) => {
this.federationStatus = e.data.data.joined;
@@ -247,6 +259,11 @@ page {
margin-right: 0;
}
+.imgswitch {
+ margin-left: auto;
+ margin-right: 0;
+}
+
.btnList image {
width: 52rpx;
height: 52rpx;
@@ -353,4 +370,4 @@ page {
font-size: 32rpx;
color: #F46161;
} */
-
\ No newline at end of file
+
diff --git a/pages/projectInfo/projectInfo.vue b/pages/projectInfo/projectInfo.vue
index 091ac76..3b26ab1 100644
--- a/pages/projectInfo/projectInfo.vue
+++ b/pages/projectInfo/projectInfo.vue
@@ -1,704 +1,718 @@
-
-
-
-
- {{info.missionTitle || '暂无'}}
-
-
-
-
- 开始时间:{{dateFormat((info.stime)) || '暂无'}}
-
-
-
- 招聘人数:{{info.peopleNum || '暂无'}}
-
-
- 行业类型:{{info.tradeNames || '暂无'}}
-
-
- 零工工种:{{info.worktypeNames || '暂无'}}
-
-
-
-
-
- 岗位要求
-
-
-
- 年龄要求:{{age[info.ageDesc] || '暂无'}}
-
-
-
-
- 学历要求:{{education[info.education] || '暂无'}}
-
-
-
-
- 经验要求:{{experience[info.experienceDesc] || '暂无'}}
-
-
-
- 岗位描述
-
-
- {{info.missionDesc || '暂无'}}
-
-
-
-
- {{item}}
-
-
-
-
- 来源:{{info.jobSources || '暂无'}}
-
-
-
-
-
-
- {{info.missionCompanyName || '暂无'}}
-
-
-
-
-
- 地址
-
-
-
-
- 注册地址:{{info.cityId || '暂无'}}
-
-
- 工作地址:{{info.address || '暂无'}}
-
-
-
-
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
-
- 申请
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
- 已申请
-
-
-
-
- +
-
-
- +
-
-
-
- 下一步
-
-
-
-
- 重要提示:
- 为保障个人基本劳动权益,建议通过平台用工的形式就业
- {{ info.callName || '联系人'}} :
- {{ info.callTel }}
- 无联系方式
-
-
-
-
-
-
-
- +
-
-
- +
-
-
-
- 签名密码
- 6位数字签名密码
-
-
-
-
- 忘记密码?
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ {{ info.missionTitle || '暂无' }}
+
+
+
+
+ 开始时间:{{ dateFormat(info.stime) || '暂无' }}
+
+
+ 招聘人数:{{ info.peopleNum || '暂无' }}
+ 行业类型:{{ info.tradeNames || '暂无' }}
+ 零工工种:{{ info.worktypeNames || '暂无' }}
+
+
+
+ 岗位要求
+
+ 年龄要求:{{ age[info.ageDesc] || '暂无' }}
+
+
+ 学历要求:{{ education[info.education] || '暂无' }}
+
+
+ 经验要求:{{ experience[info.experienceDesc] || '暂无' }}
+
+ 岗位描述
+
+ {{ info.missionDesc || '暂无' }}
+
+
+
+
+ {{ item }}
+
+
+
+ 来源:{{ info.jobSources || '暂无' }}
+
+
+
+
+ {{ info.missionCompanyName || '暂无' }}
+
+
+
+
+ 地址
+
+
+ 注册地址:{{ info.cityId || '暂无' }}
+ 工作地址:{{ info.address || '暂无' }}
+
+
+
+
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+
+ 申请
+
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+ 已申请
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 下一步
+
+
+
+
+ 重要提示:
+
+ 为保障个人基本劳动权益,建议通过平台用工的形式就业
+
+
+ {{ info.callName || '联系人' }} :
+
+ {{ info.callTel }}
+
+ 无联系方式
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 签名密码
+ 6位数字签名密码
+
+
+
+
+ 忘记密码?
+
+
+
+
+
+
diff --git a/pages/projectInfo/userrecruitInfo.vue b/pages/projectInfo/userrecruitInfo.vue
index a73c369..5802691 100644
--- a/pages/projectInfo/userrecruitInfo.vue
+++ b/pages/projectInfo/userrecruitInfo.vue
@@ -1,719 +1,733 @@
-
-
-
-
- {{info.jobName || '暂无'}}
-
-
-
-
- 开始时间:{{dateFormat((info.stime)) || '暂无'}}
-
-
-
- 招聘人数:{{info.peopleNum || '暂无'}}
-
-
- 行业类型:{{info.tradeNames || '暂无'}}
-
-
- 零工工种:{{info.worktypeNames || '暂无'}}
-
-
-
- 邀请用户
-
-
-
- 岗位要求
-
-
-
- 年龄要求:{{age[info.ageDesc] || '暂无'}}
-
-
-
-
- 学历要求:{{education[info.education] || '暂无'}}
-
-
-
-
- 经验要求:{{experience[info.experienceDesc] || '暂无'}}
-
-
-
- 岗位描述
-
-
- {{info.jobDescription || '暂无'}}
-
-
-
-
- {{item}}
-
-
-
-
- 来源:{{info.jobSources || '暂无'}}
-
-
-
-
-
-
- {{info.jobCompanyName || '暂无'}}
-
-
-
-
-
- 地址
-
-
-
-
- 注册地址:{{info.cityId || '暂无'}}
-
-
- 工作地址:{{info.address || '暂无'}}
-
-
-
-
-
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
-
- 申请
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
- 已申请
-
-
-
-
- +
-
-
- +
-
-
-
- 下一步
-
-
-
-
- 重要提示:
- 为保障个人基本劳动权益,建议通过平台用工的形式就业
- {{ info.callName || '联系人'}} :
- {{ info.callTel }}
- 无联系方式
-
-
-
-
-
-
-
- +
-
-
- +
-
-
-
- 签名密码
- 6位数字签名密码
-
-
-
-
- 忘记密码?
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ {{ info.jobName || '暂无' }}
+
+
+
+
+ 开始时间:{{ dateFormat(info.stime) || '暂无' }}
+
+
+ 招聘人数:{{ info.peopleNum || '暂无' }}
+ 行业类型:{{ info.tradeNames || '暂无' }}
+ 零工工种:{{ info.worktypeNames || '暂无' }}
+
+
+ 邀请用户
+
+
+
+ 岗位要求
+
+ 年龄要求:{{ age[info.ageDesc] || '暂无' }}
+
+
+ 学历要求:{{ education[info.education] || '暂无' }}
+
+
+ 经验要求:{{ experience[info.experienceDesc] || '暂无' }}
+
+ 岗位描述
+
+ {{ info.jobDescription || '暂无' }}
+
+
+
+
+ {{ item }}
+
+
+
+ 来源:{{ info.jobSources || '暂无' }}
+
+
+
+
+ {{ info.jobCompanyName || '暂无' }}
+
+
+
+
+ 地址
+
+
+ 注册地址:{{ info.cityId || '暂无' }}
+ 工作地址:{{ info.address || '暂无' }}
+
+
+
+
+
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+ 申请
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+ 已申请
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 下一步
+
+
+
+
+ 重要提示:
+
+ 为保障个人基本劳动权益,建议通过平台用工的形式就业
+
+
+ {{ info.callName || '联系人' }} :
+
+ {{ info.callTel }}
+
+ 无联系方式
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 签名密码
+ 6位数字签名密码
+
+
+
+
+ 忘记密码?
+
+
+
+
+
+
diff --git a/pages/projectInfo/userrecruitWorkInfo.vue b/pages/projectInfo/userrecruitWorkInfo.vue
index b22b0cb..d36ced4 100644
--- a/pages/projectInfo/userrecruitWorkInfo.vue
+++ b/pages/projectInfo/userrecruitWorkInfo.vue
@@ -1,719 +1,734 @@
-
-
-
-
- {{info.jobName || '暂无'}}
-
-
-
- 发布日期:{{dateFormat((info.stime)) || '暂无'}}
-
-
- 招聘人数:{{info.peopleNum || '暂无'}}
-
-
- 行业类型:{{info.tradeNames?info.tradeNames:info.jobCompanyIndustry || '暂无'}}
-
-
- 岗位工种:{{info.skillNames || '暂无'}}
-
-
-
- 邀请用户
-
-
-
- 岗位要求
-
-
-
-
- 年龄要求:{{age[info.ageDesc] || '暂无'}}
-
-
-
-
- 学历要求:{{education[info.education] || '暂无'}}
-
-
-
-
- 经验要求:{{info.experienceDesc || '暂无'}}
-
-
-
-
-
- 岗位描述
-
-
- {{info.jobDescription}}
-
-
-
-
- {{item}}
-
-
-
-
- 来源:{{info.jobSources || '暂无'}}
-
-
-
-
-
-
-
-
-
- {{info.jobCompanyName}}
-
-
-
-
- 地址
-
-
-
-
- 注册地址:{{ info.cityId || '暂无'}}
-
-
- 工作地址:{{info.address || '暂无'}}
-
-
-
-
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
-
- 申请
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
- 已申请
-
-
-
-
- +
-
-
- +
-
-
-
- 下一步
-
-
-
-
- 重要提示:
- 为保障个人基本劳动权益,建议通过平台用工的形式就业
- {{ info.callName || '联系人'}} :
- {{ info.callTel }}
- 无联系方式
-
-
-
-
-
-
-
- +
-
-
- +
-
-
-
- 签名密码
- 6位数字签名密码
-
-
-
-
- 忘记密码?
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ {{ info.jobName || '暂无' }}
+
+
+ 发布日期:{{ dateFormat(info.stime) || '暂无' }}
+ 招聘人数:{{ info.peopleNum || '暂无' }}
+
+ 行业类型:{{ info.tradeNames ? info.tradeNames : info.jobCompanyIndustry || '暂无' }}
+
+ 岗位工种:{{ info.skillNames || '暂无' }}
+
+
+ 邀请用户
+
+
+
+ 岗位要求
+
+
+ 年龄要求:{{ age[info.ageDesc] || '暂无' }}
+
+
+ 学历要求:{{ education[info.education] || '暂无' }}
+
+
+ 经验要求:{{ info.experienceDesc || '暂无' }}
+
+
+
+ 岗位描述
+
+ {{ info.jobDescription }}
+
+
+
+
+ {{ item }}
+
+
+
+ 来源:{{ info.jobSources || '暂无' }}
+
+
+
+
+
+
+
+ {{ info.jobCompanyName }}
+
+
+
+ 地址
+
+
+ 注册地址:{{ info.cityId || '暂无' }}
+ 工作地址:{{ info.address || '暂无' }}
+
+
+
+
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+ 申请
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+ 已申请
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 下一步
+
+
+
+
+ 重要提示:
+
+ 为保障个人基本劳动权益,建议通过平台用工的形式就业
+
+
+ {{ info.callName || '联系人' }} :
+
+ {{ info.callTel }}
+
+ 无联系方式
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 签名密码
+ 6位数字签名密码
+
+
+
+
+ 忘记密码?
+
+
+
+
+
+
diff --git a/pages/projectInfo/workInfo.vue b/pages/projectInfo/workInfo.vue
index d123e67..d35d8a0 100644
--- a/pages/projectInfo/workInfo.vue
+++ b/pages/projectInfo/workInfo.vue
@@ -1,688 +1,706 @@
-
-
-
-
- {{info.jobName || '暂无'}}
-
-
-
- 发布日期:{{dateFormat((info.stime)) || '暂无'}}
-
-
- 招聘人数:{{info.peopleNum || '暂无'}}
-
-
- 行业类型:{{info.tradeNames?info.tradeNames:info.jobCompanyIndustry || '暂无'}}
-
-
- 岗位工种:{{info.skillNames || '暂无'}}
-
-
-
-
-
- 岗位要求
-
-
-
-
- 年龄要求:{{age[info.ageDesc] || '暂无'}}
-
-
-
-
- 学历要求:{{education[info.education] || '暂无'}}
-
-
-
-
- 经验要求:{{info.experienceDesc || '暂无'}}
-
-
-
-
-
- 岗位描述
-
-
- {{info.jobDescription}}
-
-
-
-
- {{item}}
-
-
-
-
- 来源:{{info.jobSources || '暂无'}}
-
-
-
-
-
-
-
-
-
- {{info.jobCompanyName}}
-
-
-
-
- 地址
-
-
-
-
- 注册地址:{{ info.cityId || '暂无'}}
-
-
- 工作地址:{{info.address || '暂无'}}
-
-
-
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
-
- 申请
-
-
-
-
-
-
-
- 收藏
- 已收藏
-
-
-
- 电话联系
-
- 已申请
-
-
-
-
- +
-
-
- +
-
-
-
- 下一步
-
-
-
-
- 重要提示:
- 为保障个人基本劳动权益,建议通过平台用工的形式就业
- {{ info.callName || '联系人 '}} :
- {{ info.callTel }}
- 无联系方式
-
-
-
-
-
-
-
- +
-
-
- +
-
-
-
- 签名密码
- 6位数字签名密码
-
-
-
-
- 忘记密码?
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ {{ info.jobName || '暂无' }}
+
+
+ 发布日期:{{ dateFormat(info.stime) || '暂无' }}
+ 招聘人数:{{ info.peopleNum || '暂无' }}
+
+ 行业类型:{{ info.tradeNames ? info.tradeNames : info.jobCompanyIndustry || '暂无' }}
+
+ 岗位工种:{{ info.skillNames || '暂无' }}
+
+
+
+ 岗位要求
+
+
+ 年龄要求:{{ age[info.ageDesc] || '暂无' }}
+
+
+ 学历要求:{{ education[info.education] || '暂无' }}
+
+
+ 经验要求:{{ info.experienceDesc || '暂无' }}
+
+
+
+ 岗位描述
+
+ {{ info.jobDescription }}
+
+
+
+
+ {{ item }}
+
+
+
+ 来源:{{ info.jobSources || '暂无' }}
+
+
+
+
+
+
+
+ {{ info.jobCompanyName }}
+
+
+
+ 地址
+
+
+ 注册地址:{{ info.cityId || '暂无' }}
+ 工作地址:{{ info.address || '暂无' }}
+
+
+
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+
+ 申请
+
+
+
+
+
+
+
+ 收藏
+
+ 已收藏
+
+
+
+
+ 电话联系
+
+ 已申请
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 下一步
+
+
+
+
+ 重要提示:
+
+ 为保障个人基本劳动权益,建议通过平台用工的形式就业
+
+
+ {{ info.callName || '联系人 ' }} :
+
+ {{ info.callTel }}
+
+ 无联系方式
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 签名密码
+ 6位数字签名密码
+
+
+
+
+ 忘记密码?
+
+
+
+
+
+
diff --git a/pages/recruit/subPage/newsDetail/userrecruitInfo.vue b/pages/recruit/subPage/newsDetail/userrecruitInfo.vue
index 15c8b75..537179f 100644
--- a/pages/recruit/subPage/newsDetail/userrecruitInfo.vue
+++ b/pages/recruit/subPage/newsDetail/userrecruitInfo.vue
@@ -1,542 +1,525 @@
-
-
-
-
- {{ info.jobName }}
-
-
-
- 发布日期:{{ info.stime ? dateFormat((info.stime)) : null }}
-
-
- 招聘人数:{{ info.peopleNum }}
-
-
- 行业类型:{{ info.tradeNames ? info.tradeNames : info.jobCompanyIndustry }}
-
-
- 工种类型:{{ info.skillNames }}
-
-
-
-
-
- 招工要求
-
-
-
-
- 学历要求:{{ info.education }}
-
-
- 经验要求:{{ info.experienceDesc }}
-
-
-
- 招工地址:{{ info.jobAddress }}
-
-
- 招工描述
-
-
- {{ info.jobDescription }}
-
-
-
-
- {{ item }}
-
-
-
-
-
-
-
-
-
-
-
- {{ info.jobCompanyName }}
-
-
-
-
- 地址
-
-
-
-
- 岗位地址:{{ info.address }}
-
-
-
-
-
-
-
-
-
- 电话联系
-
-
-
-
-
- +
-
-
- +
-
-
-
- 下一步
-
-
-
-
-
- {{ item.realName }} : {{ item.telphone }}
- 申请时间:{{ item.applyTime }}
-
-
-
-
-
-
-
- +
-
-
- +
-
-
-
- 签名密码
- 6位数字签名密码
-
-
-
-
- 忘记密码?
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ {{ info.jobName }}
+
+
+ 发布日期:{{ info.stime ? dateFormat(info.stime) : null }}
+ 招聘人数:{{ info.peopleNum }}
+ 行业类型:{{ info.tradeNames ? info.tradeNames : info.jobCompanyIndustry }}
+ 工种类型:{{ info.skillNames }}
+
+
+
+ 招工要求
+
+
+ 学历要求:{{ info.education }}
+ 经验要求:{{ info.experienceDesc }}
+
+ 招工地址:{{ info.jobAddress }}
+ 招工描述
+
+ {{ info.jobDescription }}
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ info.jobCompanyName }}
+
+
+
+ 地址
+
+
+ 岗位地址:{{ info.address }}
+
+
+
+
+
+
+
+
+ 电话联系
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 下一步
+
+
+
+
+
+ {{ item.realName }} : {{ item.telphone }}
+ 申请时间:{{ item.applyTime }}
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 签名密码
+ 6位数字签名密码
+
+
+
+
+ 忘记密码?
+
+
+
+
+
+
diff --git a/pages/recruit/subPage/newsDetail/workInfo.vue b/pages/recruit/subPage/newsDetail/workInfo.vue
index 182fb93..27c60fd 100644
--- a/pages/recruit/subPage/newsDetail/workInfo.vue
+++ b/pages/recruit/subPage/newsDetail/workInfo.vue
@@ -1,531 +1,513 @@
-
-
-
-
- {{ info.jobName }}
-
-
-
- 发布日期:{{ dateFormat((info.stime)) }}
-
-
- 招聘人数:{{ info.peopleNum }}
-
-
- 行业类型:{{ info.tradeNames ? info.tradeNames : info.jobCompanyIndustry }}
-
-
- 工种类型:{{ info.skillNames }}
-
-
-
-
-
- 岗位要求
-
-
-
-
- 学历要求:{{ info.education }}
-
-
- 经验要求:{{ info.experienceDesc }}
-
-
-
- 岗位地址:{{ info.jobAddress }}
-
-
- 任务描述
-
-
- {{ info.jobDescription }}
-
-
-
-
- {{ item }}
-
-
-
-
- 来源:{{ info.jobSources }}
-
-
-
-
-
-
-
-
- {{ info.jobCompanyName }}
-
-
-
-
- 地址
-
-
-
-
- 岗位地址:{{ info.address }}
-
-
-
-
-
-
-
-
-
- 电话联系
-
-
-
-
-
- +
-
-
- +
-
-
-
- 下一步
-
-
-
-
-
- {{ item.realName }} : {{ item.telphone }}
- 申请时间:{{ item.applyTime }}
-
-
-
-
-
-
-
- +
-
-
- +
-
-
-
- 签名密码
- 6位数字签名密码
-
-
-
-
- 忘记密码?
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ {{ info.jobName }}
+
+
+ 发布日期:{{ dateFormat(info.stime) }}
+ 招聘人数:{{ info.peopleNum }}
+ 行业类型:{{ info.tradeNames ? info.tradeNames : info.jobCompanyIndustry }}
+ 工种类型:{{ info.skillNames }}
+
+
+
+ 岗位要求
+
+
+ 学历要求:{{ info.education }}
+ 经验要求:{{ info.experienceDesc }}
+
+ 岗位地址:{{ info.jobAddress }}
+ 任务描述
+
+ {{ info.jobDescription }}
+
+
+
+
+ {{ item }}
+
+
+
+ 来源:{{ info.jobSources }}
+
+
+
+
+
+
+
+ {{ info.jobCompanyName }}
+
+
+
+ 地址
+
+
+ 岗位地址:{{ info.address }}
+
+
+
+
+
+
+
+
+ 电话联系
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 下一步
+
+
+
+
+
+ {{ item.realName }} : {{ item.telphone }}
+ 申请时间:{{ item.applyTime }}
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+ 签名密码
+ 6位数字签名密码
+
+
+
+
+ 忘记密码?
+
+
+
+
+
+
diff --git a/static/img/Takingpictures.png b/static/img/Takingpictures.png
index c9e88ed..4a296ec 100644
Binary files a/static/img/Takingpictures.png and b/static/img/Takingpictures.png differ
diff --git a/static/img/anli.png b/static/img/anli.png
index f647110..77b1c35 100644
Binary files a/static/img/anli.png and b/static/img/anli.png differ
diff --git a/static/img/apply.png b/static/img/apply.png
index feb9deb..44774cb 100644
Binary files a/static/img/apply.png and b/static/img/apply.png differ
diff --git a/static/img/backidcard1.png b/static/img/backidcard1.png
index 60d4857..5661174 100644
Binary files a/static/img/backidcard1.png and b/static/img/backidcard1.png differ
diff --git a/static/img/businessLicense.jpg b/static/img/businessLicense.jpg
index cfa4aad..08503b7 100644
Binary files a/static/img/businessLicense.jpg and b/static/img/businessLicense.jpg differ
diff --git a/static/img/checkOk.png b/static/img/checkOk.png
index 2c73d97..b8323dc 100644
Binary files a/static/img/checkOk.png and b/static/img/checkOk.png differ
diff --git a/static/img/city.png b/static/img/city.png
index 9562a13..c4db601 100644
Binary files a/static/img/city.png and b/static/img/city.png differ
diff --git a/static/img/collect.png b/static/img/collect.png
index 4b20631..ff728b3 100644
Binary files a/static/img/collect.png and b/static/img/collect.png differ
diff --git a/static/img/collect_yes.png b/static/img/collect_yes.png
index 2b3b1f1..a595fcf 100644
Binary files a/static/img/collect_yes.png and b/static/img/collect_yes.png differ
diff --git a/static/img/contract.png b/static/img/contract.png
index 981fbf2..c418c69 100644
Binary files a/static/img/contract.png and b/static/img/contract.png differ
diff --git a/static/img/delete.png b/static/img/delete.png
index bcf4269..ae26b64 100644
Binary files a/static/img/delete.png and b/static/img/delete.png differ
diff --git a/static/img/deyang.png b/static/img/deyang.png
index c63062e..5d69274 100644
Binary files a/static/img/deyang.png and b/static/img/deyang.png differ
diff --git a/static/img/direction.png b/static/img/direction.png
index 952b10d..4f00804 100644
Binary files a/static/img/direction.png and b/static/img/direction.png differ
diff --git a/static/img/direction2.png b/static/img/direction2.png
index e340e1c..a96de13 100644
Binary files a/static/img/direction2.png and b/static/img/direction2.png differ
diff --git a/static/img/dji.png b/static/img/dji.png
index bb02829..e6e3d72 100644
Binary files a/static/img/dji.png and b/static/img/dji.png differ
diff --git a/static/img/evaluate.png b/static/img/evaluate.png
index d1c8d5c..06ef49f 100644
Binary files a/static/img/evaluate.png and b/static/img/evaluate.png differ
diff --git a/static/img/idcard.png b/static/img/idcard.png
index 2490351..6d3aa70 100644
Binary files a/static/img/idcard.png and b/static/img/idcard.png differ
diff --git a/static/img/index/bangzhu.png b/static/img/index/bangzhu.png
index 09f707a..31446cb 100644
Binary files a/static/img/index/bangzhu.png and b/static/img/index/bangzhu.png differ
diff --git a/static/img/index/consult.png b/static/img/index/consult.png
index e813403..01ce014 100644
Binary files a/static/img/index/consult.png and b/static/img/index/consult.png differ
diff --git a/static/img/index/hotBg.png b/static/img/index/hotBg.png
index 5c946ac..e26d5d9 100644
Binary files a/static/img/index/hotBg.png and b/static/img/index/hotBg.png differ
diff --git a/static/img/index/icon-liulan.png b/static/img/index/icon-liulan.png
index 5b3fbbb..8d69f1d 100644
Binary files a/static/img/index/icon-liulan.png and b/static/img/index/icon-liulan.png differ
diff --git a/static/img/index/inLogo.png b/static/img/index/inLogo.png
index 3893bd8..714b3a2 100644
Binary files a/static/img/index/inLogo.png and b/static/img/index/inLogo.png differ
diff --git a/static/img/index/inLogo11.png b/static/img/index/inLogo11.png
index ad11b25..3bd74f3 100644
Binary files a/static/img/index/inLogo11.png and b/static/img/index/inLogo11.png differ
diff --git a/static/img/index/jobRegister.png b/static/img/index/jobRegister.png
index ae20cb0..e8d569e 100644
Binary files a/static/img/index/jobRegister.png and b/static/img/index/jobRegister.png differ
diff --git a/static/img/index/legal.png b/static/img/index/legal.png
index 4847b7e..4a6db55 100644
Binary files a/static/img/index/legal.png and b/static/img/index/legal.png differ
diff --git a/static/img/index/near.png b/static/img/index/near.png
index 2d05151..0711210 100644
Binary files a/static/img/index/near.png and b/static/img/index/near.png differ
diff --git a/static/img/index/newPolicy.png b/static/img/index/newPolicy.png
index 478fe44..2fa3995 100644
Binary files a/static/img/index/newPolicy.png and b/static/img/index/newPolicy.png differ
diff --git a/static/img/index/question.png b/static/img/index/question.png
index 4ce051f..4a904bc 100644
Binary files a/static/img/index/question.png and b/static/img/index/question.png differ
diff --git a/static/img/index/seeMore.png b/static/img/index/seeMore.png
index e482860..268d1bf 100644
Binary files a/static/img/index/seeMore.png and b/static/img/index/seeMore.png differ
diff --git a/static/img/index/shenqing.png b/static/img/index/shenqing.png
index 64e866e..d3c0990 100644
Binary files a/static/img/index/shenqing.png and b/static/img/index/shenqing.png differ
diff --git a/static/img/index/shoucang.png b/static/img/index/shoucang.png
index 8f530bf..6e8e873 100644
Binary files a/static/img/index/shoucang.png and b/static/img/index/shoucang.png differ
diff --git a/static/img/index/skill.png b/static/img/index/skill.png
index 2eae7c8..bdc77dd 100644
Binary files a/static/img/index/skill.png and b/static/img/index/skill.png differ
diff --git a/static/img/index/union.png b/static/img/index/union.png
index 59a8bf5..4e6c1a5 100644
Binary files a/static/img/index/union.png and b/static/img/index/union.png differ
diff --git a/static/img/left_right.png b/static/img/left_right.png
index 7a2978c..18cd2a3 100644
Binary files a/static/img/left_right.png and b/static/img/left_right.png differ
diff --git a/static/img/location.png b/static/img/location.png
index efd076f..673c8ed 100644
Binary files a/static/img/location.png and b/static/img/location.png differ
diff --git a/static/img/location_new.png b/static/img/location_new.png
index 7e539ee..af35ecd 100644
Binary files a/static/img/location_new.png and b/static/img/location_new.png differ
diff --git a/static/img/my/mybanner.png b/static/img/my/mybanner.png
index 89510bb..dd03cef 100644
Binary files a/static/img/my/mybanner.png and b/static/img/my/mybanner.png differ
diff --git a/static/img/point.png b/static/img/point.png
index 9b308c5..583b45d 100644
Binary files a/static/img/point.png and b/static/img/point.png differ
diff --git a/static/img/policy_icon.png b/static/img/policy_icon.png
index 4c4242f..bf1b423 100644
Binary files a/static/img/policy_icon.png and b/static/img/policy_icon.png differ
diff --git a/static/img/renwu.png b/static/img/renwu.png
index 102ff45..dcdce64 100644
Binary files a/static/img/renwu.png and b/static/img/renwu.png differ
diff --git a/static/img/safe_icon.png b/static/img/safe_icon.png
index f607f59..f4a073f 100644
Binary files a/static/img/safe_icon.png and b/static/img/safe_icon.png differ
diff --git a/static/img/tabbar/add.png b/static/img/tabbar/add.png
index 08730e2..a292d17 100644
Binary files a/static/img/tabbar/add.png and b/static/img/tabbar/add.png differ
diff --git a/static/img/tabbar/addactive.png b/static/img/tabbar/addactive.png
index 16500de..0bd87cb 100644
Binary files a/static/img/tabbar/addactive.png and b/static/img/tabbar/addactive.png differ
diff --git a/static/img/tabbar/guanzhu.png b/static/img/tabbar/guanzhu.png
index 2b7fddd..01fbb3a 100644
Binary files a/static/img/tabbar/guanzhu.png and b/static/img/tabbar/guanzhu.png differ
diff --git a/static/img/tabbar/guanzhuactive.png b/static/img/tabbar/guanzhuactive.png
index a4c7572..f1d8fed 100644
Binary files a/static/img/tabbar/guanzhuactive.png and b/static/img/tabbar/guanzhuactive.png differ
diff --git a/static/img/tabbar/home.png b/static/img/tabbar/home.png
index 0f52b06..c5d6ff8 100644
Binary files a/static/img/tabbar/home.png and b/static/img/tabbar/home.png differ
diff --git a/static/img/tabbar/homeactive.png b/static/img/tabbar/homeactive.png
index b4d778c..20903ba 100644
Binary files a/static/img/tabbar/homeactive.png and b/static/img/tabbar/homeactive.png differ
diff --git a/static/img/tabbar/me.png b/static/img/tabbar/me.png
index 2249ea1..f73a6d1 100644
Binary files a/static/img/tabbar/me.png and b/static/img/tabbar/me.png differ
diff --git a/static/img/tabbar/meactive.png b/static/img/tabbar/meactive.png
index cbe3b39..f195314 100644
Binary files a/static/img/tabbar/meactive.png and b/static/img/tabbar/meactive.png differ
diff --git a/static/img/zhao_gong.png b/static/img/zhao_gong.png
index cab1faa..e2895f6 100644
Binary files a/static/img/zhao_gong.png and b/static/img/zhao_gong.png differ
diff --git a/static/img/zhao_icon1.png b/static/img/zhao_icon1.png
index e855896..d3205f2 100644
Binary files a/static/img/zhao_icon1.png and b/static/img/zhao_icon1.png differ
diff --git a/static/img/zhao_icon2.png b/static/img/zhao_icon2.png
index bfab8ab..07239db 100644
Binary files a/static/img/zhao_icon2.png and b/static/img/zhao_icon2.png differ
diff --git a/static/img/zhiyin_icon.png b/static/img/zhiyin_icon.png
index bf7a818..33043ca 100644
Binary files a/static/img/zhiyin_icon.png and b/static/img/zhiyin_icon.png differ
diff --git a/store/models/user.js b/store/models/user.js
index df9a312..b8cca02 100644
--- a/store/models/user.js
+++ b/store/models/user.js
@@ -8,7 +8,9 @@ import {
getUserInfo,
logout,
refreshToken,
- mobileIsCms
+ mobileIsCms,
+ noticeIsEnable,
+ setNoticeIsEnable
} from '@/api/user'
import md5 from 'js-md5'
import {
@@ -71,8 +73,42 @@ const user = {
userLocation: null,
userIsCms: false,
resumeInfo: {},
+ isEnbleNotice: false,
},
actions: {
+ getNoticeState({
+ commit,
+ dispatch
+ }) {
+ noticeIsEnable().then(res => {
+ if (res.data.code === 200) {
+ const data = res.data.data ? true : false
+ commit('upDateNoticeState', data)
+ }
+ })
+ },
+ setNoticeOpen({
+ commit,
+ dispatch
+ }) {
+ setNoticeIsEnable(1).then(res => {
+ if (res.code === 200) {
+ const data = res.data
+ commit('upDateNoticeState', true)
+ }
+ })
+ },
+ setNoticeClose({
+ commit,
+ dispatch
+ }) {
+ setNoticeIsEnable(0).then(res => {
+ if (res.code === 200) {
+ const data = res.data
+ commit('upDateNoticeState', false)
+ }
+ })
+ },
getResumeInfo({
commit,
dispatch
@@ -242,6 +278,9 @@ const user = {
}
},
mutations: {
+ upDateNoticeState(state, payload) {
+ state.isEnbleNotice = payload
+ },
upDataResumeInfo(state, payload) {
state.resumeInfo = payload
},