flat: 工资单位

This commit is contained in:
Apcallover
2024-04-09 10:44:52 +08:00
parent bcbf259dfb
commit caf55a7ff2
5 changed files with 91 additions and 18 deletions

View File

@@ -61,7 +61,9 @@ const user = {
sendTimes:getStore({//用户发送短信次数
name:'setUserSendTimes'
}) || 0,
seeEnterprise: 0, // 0 个体招工 企业招工
seeEnterprise: getStore({//用户发送短信次数
name:'enterprise'
}) || 0, // 0 个体招工 企业招工
},
actions: {
//用户点击radio按钮
@@ -183,6 +185,10 @@ const user = {
mutations: {
setEnterprise(state, val) { // 0 个体招工 企业招工
state.seeEnterprise = val;
setStore({
name: 'enterprise',
content: val,
})
},
SET_TOKEN: (state, token) => {
state.token = token;