diff --git a/pages/my/my.vue b/pages/my/my.vue
index a62888c..d3260ea 100644
--- a/pages/my/my.vue
+++ b/pages/my/my.vue
@@ -1,324 +1,328 @@
-
-
-
-
-
-
-
-
- {{ auth.authInfo.realName ? auth.authInfo.realName :
- phoneFilter(userInfo.user_name) }}
-
-
-
- 实名认证:{{ auth.realNameState ? '已认证' : '未认证' }}
-
-
-
-
-
-
-
- 我的简历
-
-
-
- 我的申请
-
-
-
- 我的收藏
-
-
-
- 浏览记录
-
-
-
-
-
-
-
-
-
-
- 我要招工
-
-
-
-
- 认证信息
-
-
-
-
- 咨询信箱
-
-
-
-
- 问卷调查
-
-
-
-
- 投诉建议
-
-
-
-
-
-
-
-
- 德阳市人社局 电话:0838-2505580
- 地址:德阳市旌阳区天山南路1段-102号
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ {{ auth.authInfo.realName ? auth.authInfo.realName :
+ phoneFilter(userInfo.user_name) }}
+
+
+
+ 实名认证:{{ auth.realNameState ? '已认证' : '未认证' }}
+
+
+
+
+
+
+
+ 我的简历
+
+
+
+ 我的申请
+
+
+
+ 我的收藏
+
+
+
+ 浏览记录
+
+
+
+
+
+
+
+
+
+
+ 我要招工
+
+
+
+
+ 认证信息
+
+
+
+
+ 咨询信箱
+
+
+
+
+ 问卷调查
+
+
+
+
+ 投诉建议
+
+
+
+
+
+
+
+
+ 德阳市人社局 电话:0838-2505580
+ 地址:德阳市旌阳区天山南路1段-102号
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/recruit/recruit.vue b/pages/recruit/recruit.vue
index 48bc401..aea9a6c 100644
--- a/pages/recruit/recruit.vue
+++ b/pages/recruit/recruit.vue
@@ -63,10 +63,10 @@
if (resData.data.data) {
resolve()
} else {
- this.$api.msg('您未申请开通该功能,请联系工作人员')
- // this.navTo(
- // '/pages/recruit/subPage/enterpriceCertification/enterpriceCertification'
- // )
+ // this.$api.msg('您未申请开通该功能,请联系工作人员')
+ this.navTo(
+ '/pages/recruit/subPage/enterpriceCertification/enterpriceCertification'
+ )
}
} else {
reject()
diff --git a/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue b/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue
index 50bda2f..e287b7e 100644
--- a/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue
+++ b/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue
@@ -66,7 +66,7 @@
-
+
diff --git a/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue b/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue
index 05a0a46..eb74a24 100644
--- a/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue
+++ b/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue
@@ -1,8 +1,8 @@
-
+ :width="width" :height="height">
+
@@ -21,7 +21,15 @@
value: {
type: String,
default: null
- }
+ },
+ width: {
+ type: Number,
+ default: 250
+ },
+ height: {
+ type: Number,
+ default: 150
+ },
},
computed: {
ImgUrl(val) {
diff --git a/static/img/businessLicense.jpg b/static/img/businessLicense.jpg
new file mode 100644
index 0000000..33c36c9
Binary files /dev/null and b/static/img/businessLicense.jpg differ
diff --git a/store/models/auth.js b/store/models/auth.js
index 3f6bb0a..15b912b 100644
--- a/store/models/auth.js
+++ b/store/models/auth.js
@@ -1,170 +1,170 @@
-import {
- findAuth,
- cheakValue,
- insure
-} from '@/api/auth.js'
-import {
- getStore,
- setStore
-} from '@/untils/store.js'
-import {
- realName
-} from '@/api/auth.js'
-
-const convert = (v) => {
- return v === '1'
-}
-
-const auth = {
- state: {
- laborState: getStore({
- name: 'laborState'
- }) || false,
- realNameState: getStore({
- name: 'realNameState'
- }) || false,
- bankCardState: getStore({
- name: 'bankCardState'
- }) || false,
- insureState: getStore({
- name: 'insureState'
- }) || false,
- authInfo: getStore({
- name: 'authInfo'
- }) || [],
- loginType: 0, // 0
- },
- actions: {
- //刷新token
- refreshAuthState({
- commit,
- dispatch
- }) {
- // authValue 身份信息|实名认证|银行卡认证|社保信息
- return new Promise((resolve, reject) => {
- findAuth().then((res) => {
- const data = res.data.data;
- const authValue = data.authValue
- commit('SET_AUTH_LABOR', convert(authValue[0]))
- commit('SET_AUTH_REALNAME', convert(authValue[1]))
- commit('SET_AUTH_BANKCARD', convert(authValue[2]))
- commit('SET_AUTH_INSURE', convert(authValue[3]))
- commit('SET_AUTH_INFO', data)
- dispatch('getVipCode')
-
- resolve()
- }).catch(reject)
- })
- },
- authRealName({
- commit,
- dispatch
- }, {
- name,
- idNumber
- }) {
- return new Promise((resolve, reject) => {
- realName(name, idNumber).then(() => {
- commit('SET_AUTH_REALNAME', true)
- commit('UPDATE_AUTH_REALNAME', {
- realName: name,
- idNumber: idNumber
- })
- dispatch('getVipCode')
- resolve()
- }).catch(reject)
- })
- },
- authLabor({
- commit,
- dispatch
- }) {
- return new Promise((resolve, reject) => {
- cheakValue(1).then(resp => {
- commit('SET_AUTH_LABOR', true)
- resolve()
- }).catch(reject)
- })
- },
- authInsure({
- commit,
- dispatch
- }, data) {
- return new Promise((resolve, reject) => {
- insure(data).then(resp => {
- commit('SET_AUTH_INSURE', true)
- commit('UPDATE_AUTH_INSURE_TYPE', data)
- resolve()
- }).catch(reject)
- })
- },
- clearAuthState({
- commit
- }) {
- commit('SET_AUTH_LABOR', '')
- commit('SET_AUTH_REALNAME', '')
- commit('SET_AUTH_BANKCARD', '')
- commit('SET_AUTH_INSURE', '')
- commit('SET_AUTH_INFO', '')
- }
- },
- mutations: {
- changeLoginType(state, payload) {
- state.loginType = payload
- },
- SET_AUTH_LABOR: (state, status) => {
- state.laborState = status
- setStore({
- name: 'laborState',
- content: state.laborState
- })
- },
- SET_AUTH_REALNAME: (state, status) => {
- state.realNameState = status
- setStore({
- name: 'realNameState',
- content: state.realNameState
- })
- },
- SET_AUTH_BANKCARD: (state, status) => {
- state.bankCardState = status
- setStore({
- name: 'bankCardState',
- content: state.bankCardState
- })
- },
- SET_AUTH_INSURE: (state, status) => {
- state.insureState = status
- setStore({
- name: 'insureState',
- content: state.insureState
- })
- },
- SET_AUTH_INFO: (state, data) => {
- state.authInfo = data
- setStore({
- name: 'authInfo',
- content: state.authInfo
- })
- },
- UPDATE_AUTH_INSURE_TYPE: (state, type) => {
- state.authInfo.bakValue = type
- setStore({
- name: 'authInfo',
- content: state.authInfo
- })
- },
- UPDATE_AUTH_REALNAME: (state, {
- realName,
- idNumber
- }) => {
- state.authInfo.realName = realName
- state.authInfo.idNumber = idNumber
- setStore({
- name: 'authInfo',
- content: state.authInfo
- })
- }
- }
-}
-export default auth
+import {
+ findAuth,
+ cheakValue,
+ insure
+} from '@/api/auth.js'
+import {
+ getStore,
+ setStore
+} from '@/untils/store.js'
+import {
+ realName
+} from '@/api/auth.js'
+
+const convert = (v) => {
+ return v === '1'
+}
+
+const auth = {
+ state: {
+ laborState: getStore({
+ name: 'laborState'
+ }) || false,
+ realNameState: getStore({
+ name: 'realNameState'
+ }) || false,
+ bankCardState: getStore({
+ name: 'bankCardState'
+ }) || false,
+ insureState: getStore({
+ name: 'insureState'
+ }) || false,
+ authInfo: getStore({
+ name: 'authInfo'
+ }) || [],
+ loginType: 0, // 0
+ },
+ actions: {
+ //刷新token
+ refreshAuthState({
+ commit,
+ dispatch
+ }) {
+ // authValue 身份信息|实名认证|银行卡认证|社保信息
+ return new Promise((resolve, reject) => {
+ findAuth().then((res) => {
+ const data = res.data.data;
+ const authValue = data.authValue
+ commit('SET_AUTH_LABOR', convert(authValue[0]))
+ commit('SET_AUTH_REALNAME', convert(authValue[1]))
+ commit('SET_AUTH_BANKCARD', convert(authValue[2]))
+ commit('SET_AUTH_INSURE', convert(authValue[3]))
+ commit('SET_AUTH_INFO', data)
+ // dispatch('getVipCode')
+
+ resolve()
+ }).catch(reject)
+ })
+ },
+ authRealName({
+ commit,
+ dispatch
+ }, {
+ name,
+ idNumber
+ }) {
+ return new Promise((resolve, reject) => {
+ realName(name, idNumber).then(() => {
+ commit('SET_AUTH_REALNAME', true)
+ commit('UPDATE_AUTH_REALNAME', {
+ realName: name,
+ idNumber: idNumber
+ })
+ // dispatch('getVipCode')
+ resolve()
+ }).catch(reject)
+ })
+ },
+ authLabor({
+ commit,
+ dispatch
+ }) {
+ return new Promise((resolve, reject) => {
+ cheakValue(1).then(resp => {
+ commit('SET_AUTH_LABOR', true)
+ resolve()
+ }).catch(reject)
+ })
+ },
+ authInsure({
+ commit,
+ dispatch
+ }, data) {
+ return new Promise((resolve, reject) => {
+ insure(data).then(resp => {
+ commit('SET_AUTH_INSURE', true)
+ commit('UPDATE_AUTH_INSURE_TYPE', data)
+ resolve()
+ }).catch(reject)
+ })
+ },
+ clearAuthState({
+ commit
+ }) {
+ commit('SET_AUTH_LABOR', '')
+ commit('SET_AUTH_REALNAME', '')
+ commit('SET_AUTH_BANKCARD', '')
+ commit('SET_AUTH_INSURE', '')
+ commit('SET_AUTH_INFO', '')
+ }
+ },
+ mutations: {
+ changeLoginType(state, payload) {
+ state.loginType = payload
+ },
+ SET_AUTH_LABOR: (state, status) => {
+ state.laborState = status
+ setStore({
+ name: 'laborState',
+ content: state.laborState
+ })
+ },
+ SET_AUTH_REALNAME: (state, status) => {
+ state.realNameState = status
+ setStore({
+ name: 'realNameState',
+ content: state.realNameState
+ })
+ },
+ SET_AUTH_BANKCARD: (state, status) => {
+ state.bankCardState = status
+ setStore({
+ name: 'bankCardState',
+ content: state.bankCardState
+ })
+ },
+ SET_AUTH_INSURE: (state, status) => {
+ state.insureState = status
+ setStore({
+ name: 'insureState',
+ content: state.insureState
+ })
+ },
+ SET_AUTH_INFO: (state, data) => {
+ state.authInfo = data
+ setStore({
+ name: 'authInfo',
+ content: state.authInfo
+ })
+ },
+ UPDATE_AUTH_INSURE_TYPE: (state, type) => {
+ state.authInfo.bakValue = type
+ setStore({
+ name: 'authInfo',
+ content: state.authInfo
+ })
+ },
+ UPDATE_AUTH_REALNAME: (state, {
+ realName,
+ idNumber
+ }) => {
+ state.authInfo.realName = realName
+ state.authInfo.idNumber = idNumber
+ setStore({
+ name: 'authInfo',
+ content: state.authInfo
+ })
+ }
+ }
+}
+export default auth
\ No newline at end of file