[FIX]自助入司优化-新增入司人员提醒下载app引导提示语修改(手机号、证件号)

This commit is contained in:
yuweiqi
2020-02-15 14:02:24 +08:00
parent d7a5bd8261
commit 9a80526988
3 changed files with 40 additions and 8 deletions

View File

@@ -9,5 +9,26 @@ export default new Vuex.Store({
modules: {
app
},
getters
state: {
pageFlag: '',
agentEnterApplyMobil: '', //自助入司-新的被增员人填好的基础信息里的电话号码-作为初始登录app账号
agentEnterApplyPwd: '' //自助入司-新的被增员人填好的基础信息里的电话号码后四位-作为初始登录app密码
},
mutations: {
updatePageFlag(state, val) {
state.pageFlag = val
},
updateAgentEnterApplyMsg(state, mobile, idNo) {
state.agentEnterApplyMobil = mobile
state.agentEnterApplyIdNo = idNo
}
},
getters: {
getPageFlag(state) {
return state.pageFlag
},
getAgentEnterApplyMsg(state) {
return state
}
}
})