You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.7 KiB
91 lines
2.7 KiB
import * as api from '@/api/permission/dept.js';
|
|
import { ElMessage, ElMessageBox } from '@/plugins/element-plus';
|
|
const state = () => ({
|
|
employeeCode: 'DeptEmployeeManagement',
|
|
roleCode: 'DeptRoleManagement',
|
|
condition1: {},
|
|
condition2: {},
|
|
list: [],
|
|
total: 0,
|
|
employeeList: [],
|
|
employeeTotal: 0,
|
|
opts: {
|
|
init: false,
|
|
},
|
|
});
|
|
const getters = {};
|
|
const mutations = {
|
|
setCondition1: (state, data) => (state.condition1 = data),
|
|
setCondition2: (state, data) => (state.condition2 = data),
|
|
setList: (state, data) => (state.list = data),
|
|
setTotal: (state, data) => (state.total = data),
|
|
setEmployeeList: (state, data) => (state.employeeList = data),
|
|
setEmployeeTotal: (state, data) => (state.employeeTotal = data),
|
|
setOpts: (state, data) => (state.opts = data),
|
|
};
|
|
const actions = {
|
|
search: async ({ state, commit }) => {
|
|
let res = await api.search(state.condition1);
|
|
commit('setList', res || []);
|
|
if (!res) {
|
|
ElMessage.error('查询失败');
|
|
}
|
|
return res;
|
|
},
|
|
searchEmployee: async ({ state, commit }) => {
|
|
let res = await api.searchEmployee(state.condition2);
|
|
commit('setEmployeeList', res || []);
|
|
if (!res) {
|
|
ElMessage.error('查询部门员工失败');
|
|
}
|
|
return res;
|
|
},
|
|
load: async ({ commit }) => {
|
|
commit('setOpts', {
|
|
init: true,
|
|
});
|
|
},
|
|
detail: async (context, id) => {
|
|
let res = await api.detail(id);
|
|
if (!res) {
|
|
ElMessage.error('加载详情失败');
|
|
}
|
|
return res;
|
|
},
|
|
save: async ({ dispatch }, data) => {
|
|
let save = data.id ? api.update : api.create;
|
|
let res = await save(data);
|
|
if (res) {
|
|
ElMessage.success('保存成功');
|
|
dispatch('search');
|
|
} else {
|
|
ElMessage.error('保存失败');
|
|
}
|
|
return res;
|
|
},
|
|
remove: async ({ dispatch }, idList) => {
|
|
if (!idList.length) {
|
|
ElMessage.warning('请选择要删除的数据');
|
|
} else {
|
|
try {
|
|
await ElMessageBox.confirm('数据删除后无法恢复,确定要删除吗?', '危险操作');
|
|
let res = await api.remove(idList.join(','));
|
|
if (res) {
|
|
ElMessage.success('删除成功');
|
|
dispatch('search');
|
|
} else {
|
|
ElMessage.error('删除失败');
|
|
}
|
|
} catch (e) {
|
|
console.info('取消删除', e);
|
|
}
|
|
}
|
|
},
|
|
};
|
|
export default {
|
|
state,
|
|
getters,
|
|
mutations,
|
|
actions,
|
|
};
|