v3.18.0 【新增】新增消息管理;【新增】完善企业demo;【新增】完善相关数据权限;【新增】菜单管理下级功能

This commit is contained in:
1024创新实验室
2025-04-10 13:22:28 +00:00
committed by Gitee
47 changed files with 375 additions and 209 deletions

View File

@@ -1,5 +1,6 @@
package net.lab1024.sa.admin.module.business.oa.bank; package net.lab1024.sa.admin.module.business.oa.bank;
import cn.dev33.satoken.annotation.SaCheckPermission;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
@@ -35,24 +36,28 @@ public class BankController {
@Operation(summary = "分页查询银行信息 @author 善逸") @Operation(summary = "分页查询银行信息 @author 善逸")
@PostMapping("/oa/bank/page/query") @PostMapping("/oa/bank/page/query")
@SaCheckPermission("oa:bank:query")
public ResponseDTO<PageResult<BankVO>> queryByPage(@RequestBody @Valid BankQueryForm queryForm) { public ResponseDTO<PageResult<BankVO>> queryByPage(@RequestBody @Valid BankQueryForm queryForm) {
return bankService.queryByPage(queryForm); return bankService.queryByPage(queryForm);
} }
@Operation(summary = "根据企业ID查询银行信息列表 @author 善逸") @Operation(summary = "根据企业ID查询银行信息列表 @author 善逸")
@GetMapping("/oa/bank/query/list/{enterpriseId}") @GetMapping("/oa/bank/query/list/{enterpriseId}")
@SaCheckPermission("oa:bank:query")
public ResponseDTO<List<BankVO>> queryList(@PathVariable Long enterpriseId) { public ResponseDTO<List<BankVO>> queryList(@PathVariable Long enterpriseId) {
return bankService.queryList(enterpriseId); return bankService.queryList(enterpriseId);
} }
@Operation(summary = "查询银行信息详情 @author 善逸") @Operation(summary = "查询银行信息详情 @author 善逸")
@GetMapping("/oa/bank/get/{bankId}") @GetMapping("/oa/bank/get/{bankId}")
@SaCheckPermission("oa:bank:query")
public ResponseDTO<BankVO> getDetail(@PathVariable Long bankId) { public ResponseDTO<BankVO> getDetail(@PathVariable Long bankId) {
return bankService.getDetail(bankId); return bankService.getDetail(bankId);
} }
@Operation(summary = "新建银行信息 @author 善逸") @Operation(summary = "新建银行信息 @author 善逸")
@PostMapping("/oa/bank/create") @PostMapping("/oa/bank/create")
@SaCheckPermission("oa:bank:add")
public ResponseDTO<String> createBank(@RequestBody @Valid BankCreateForm createVO) { public ResponseDTO<String> createBank(@RequestBody @Valid BankCreateForm createVO) {
RequestUser requestUser = SmartRequestUtil.getRequestUser(); RequestUser requestUser = SmartRequestUtil.getRequestUser();
createVO.setCreateUserId(requestUser.getUserId()); createVO.setCreateUserId(requestUser.getUserId());
@@ -62,12 +67,14 @@ public class BankController {
@Operation(summary = "编辑银行信息 @author 善逸") @Operation(summary = "编辑银行信息 @author 善逸")
@PostMapping("/oa/bank/update") @PostMapping("/oa/bank/update")
@SaCheckPermission("oa:bank:update")
public ResponseDTO<String> updateBank(@RequestBody @Valid BankUpdateForm updateVO) { public ResponseDTO<String> updateBank(@RequestBody @Valid BankUpdateForm updateVO) {
return bankService.updateBank(updateVO); return bankService.updateBank(updateVO);
} }
@Operation(summary = "删除银行信息 @author 善逸") @Operation(summary = "删除银行信息 @author 善逸")
@GetMapping("/oa/bank/delete/{bankId}") @GetMapping("/oa/bank/delete/{bankId}")
@SaCheckPermission("oa:bank:delete")
public ResponseDTO<String> deleteBank(@PathVariable Long bankId) { public ResponseDTO<String> deleteBank(@PathVariable Long bankId) {
return bankService.deleteBank(bankId); return bankService.deleteBank(bankId);
} }

View File

@@ -100,6 +100,7 @@ public class EnterpriseController {
@Operation(summary = "按照类型查询企业 @author 开云") @Operation(summary = "按照类型查询企业 @author 开云")
@GetMapping("/oa/enterprise/query/list") @GetMapping("/oa/enterprise/query/list")
@SaCheckPermission("oa:enterprise:query")
public ResponseDTO<List<EnterpriseListVO>> queryList(@RequestParam(value = "type", required = false) Integer type) { public ResponseDTO<List<EnterpriseListVO>> queryList(@RequestParam(value = "type", required = false) Integer type) {
return enterpriseService.queryList(type); return enterpriseService.queryList(type);
} }
@@ -114,12 +115,14 @@ public class EnterpriseController {
@Operation(summary = "查询企业全部员工 @author 罗伊") @Operation(summary = "查询企业全部员工 @author 罗伊")
@PostMapping("/oa/enterprise/employee/list") @PostMapping("/oa/enterprise/employee/list")
@SaCheckPermission("oa:enterprise:queryEmployee")
public ResponseDTO<List<EnterpriseEmployeeVO>> employeeList(@RequestBody @Valid List<Long> enterpriseIdList) { public ResponseDTO<List<EnterpriseEmployeeVO>> employeeList(@RequestBody @Valid List<Long> enterpriseIdList) {
return ResponseDTO.ok(enterpriseService.employeeList(enterpriseIdList)); return ResponseDTO.ok(enterpriseService.employeeList(enterpriseIdList));
} }
@Operation(summary = "分页查询企业员工 @author 卓大") @Operation(summary = "分页查询企业员工 @author 卓大")
@PostMapping("/oa/enterprise/employee/queryPage") @PostMapping("/oa/enterprise/employee/queryPage")
@SaCheckPermission("oa:enterprise:queryEmployee")
public ResponseDTO<PageResult<EnterpriseEmployeeVO>> queryPageEmployeeList(@RequestBody @Valid EnterpriseEmployeeQueryForm queryForm) { public ResponseDTO<PageResult<EnterpriseEmployeeVO>> queryPageEmployeeList(@RequestBody @Valid EnterpriseEmployeeQueryForm queryForm) {
return ResponseDTO.ok(enterpriseService.queryPageEmployeeList(queryForm)); return ResponseDTO.ok(enterpriseService.queryPageEmployeeList(queryForm));
} }

View File

@@ -1,5 +1,6 @@
package net.lab1024.sa.admin.module.business.oa.invoice; package net.lab1024.sa.admin.module.business.oa.invoice;
import cn.dev33.satoken.annotation.SaCheckPermission;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
@@ -38,18 +39,21 @@ public class InvoiceController {
@Operation(summary = "分页查询发票信息 @author 善逸") @Operation(summary = "分页查询发票信息 @author 善逸")
@PostMapping("/oa/invoice/page/query") @PostMapping("/oa/invoice/page/query")
@SaCheckPermission("oa:invoice:query")
public ResponseDTO<PageResult<InvoiceVO>> queryByPage(@RequestBody @Valid InvoiceQueryForm queryForm) { public ResponseDTO<PageResult<InvoiceVO>> queryByPage(@RequestBody @Valid InvoiceQueryForm queryForm) {
return invoiceService.queryByPage(queryForm); return invoiceService.queryByPage(queryForm);
} }
@Operation(summary = "查询发票信息详情 @author 善逸") @Operation(summary = "查询发票信息详情 @author 善逸")
@GetMapping("/oa/invoice/get/{invoiceId}") @GetMapping("/oa/invoice/get/{invoiceId}")
@SaCheckPermission("oa:invoice:query")
public ResponseDTO<InvoiceVO> getDetail(@PathVariable Long invoiceId) { public ResponseDTO<InvoiceVO> getDetail(@PathVariable Long invoiceId) {
return invoiceService.getDetail(invoiceId); return invoiceService.getDetail(invoiceId);
} }
@Operation(summary = "新建发票信息 @author 善逸") @Operation(summary = "新建发票信息 @author 善逸")
@PostMapping("/oa/invoice/create") @PostMapping("/oa/invoice/create")
@SaCheckPermission("oa:invoice:add")
public ResponseDTO<String> createInvoice(@RequestBody @Valid InvoiceAddForm createVO) { public ResponseDTO<String> createInvoice(@RequestBody @Valid InvoiceAddForm createVO) {
RequestUser requestUser = SmartRequestUtil.getRequestUser(); RequestUser requestUser = SmartRequestUtil.getRequestUser();
createVO.setCreateUserId(requestUser.getUserId()); createVO.setCreateUserId(requestUser.getUserId());
@@ -57,21 +61,24 @@ public class InvoiceController {
return invoiceService.createInvoice(createVO); return invoiceService.createInvoice(createVO);
} }
@OperateLog
@Operation(summary = "编辑发票信息 @author 善逸") @Operation(summary = "编辑发票信息 @author 善逸")
@PostMapping("/oa/invoice/update") @PostMapping("/oa/invoice/update")
@OperateLog @SaCheckPermission("oa:invoice:update")
public ResponseDTO<String> updateInvoice(@RequestBody @Valid InvoiceUpdateForm updateVO) { public ResponseDTO<String> updateInvoice(@RequestBody @Valid InvoiceUpdateForm updateVO) {
return invoiceService.updateInvoice(updateVO); return invoiceService.updateInvoice(updateVO);
} }
@Operation(summary = "删除发票信息 @author 善逸") @Operation(summary = "删除发票信息 @author 善逸")
@GetMapping("/invoice/delete/{invoiceId}") @GetMapping("/invoice/delete/{invoiceId}")
@SaCheckPermission("oa:invoice:delete")
public ResponseDTO<String> deleteInvoice(@PathVariable Long invoiceId) { public ResponseDTO<String> deleteInvoice(@PathVariable Long invoiceId) {
return invoiceService.deleteInvoice(invoiceId); return invoiceService.deleteInvoice(invoiceId);
} }
@Operation(summary = "查询列表 @author lidoudou") @Operation(summary = "查询列表 @author lidoudou")
@GetMapping("/oa/invoice/query/list/{enterpriseId}") @GetMapping("/oa/invoice/query/list/{enterpriseId}")
@SaCheckPermission("oa:invoice:query")
public ResponseDTO<List<InvoiceVO>> queryList(@PathVariable Long enterpriseId) { public ResponseDTO<List<InvoiceVO>> queryList(@PathVariable Long enterpriseId) {
return invoiceService.queryList(enterpriseId); return invoiceService.queryList(enterpriseId);
} }

View File

@@ -52,43 +52,43 @@ public class AdminDictController extends SupportBaseController {
@Operation(summary = "分页查询 @author 1024创新实验室-主任-卓大") @Operation(summary = "分页查询 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/queryPage") @PostMapping("/dict/queryPage")
@SaCheckPermission("dict:query") @SaCheckPermission("support:dict:query")
public ResponseDTO<PageResult<DictVO>> queryPage(@RequestBody @Valid DictQueryForm queryForm) { public ResponseDTO<PageResult<DictVO>> queryPage(@RequestBody @Valid DictQueryForm queryForm) {
return ResponseDTO.ok(dictService.queryPage(queryForm)); return ResponseDTO.ok(dictService.queryPage(queryForm));
} }
@Operation(summary = "添加 @author 1024创新实验室-主任-卓大") @Operation(summary = "添加 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/add") @PostMapping("/dict/add")
@SaCheckPermission("dict:add") @SaCheckPermission("support:dict:add")
public ResponseDTO<String> add(@RequestBody @Valid DictAddForm addForm) { public ResponseDTO<String> add(@RequestBody @Valid DictAddForm addForm) {
return dictService.add(addForm); return dictService.add(addForm);
} }
@Operation(summary = "更新 @author 1024创新实验室-主任-卓大") @Operation(summary = "更新 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/update") @PostMapping("/dict/update")
@SaCheckPermission("dict:update") @SaCheckPermission("support:dict:update")
public ResponseDTO<String> update(@RequestBody @Valid DictUpdateForm updateForm) { public ResponseDTO<String> update(@RequestBody @Valid DictUpdateForm updateForm) {
return dictService.update(updateForm); return dictService.update(updateForm);
} }
@Operation(summary = "字典数据 启用/禁用 @author 1024创新实验室-主任-卓大") @Operation(summary = "启用/禁用 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/updateDisabled/{dictId}") @GetMapping("/dict/updateDisabled/{dictId}")
@SaCheckPermission("dictData:updateDisabled") @SaCheckPermission("support:dict:updateDisabled")
public ResponseDTO<String> updateDisabled(@PathVariable Long dictId) { public ResponseDTO<String> updateDisabled(@PathVariable Long dictId) {
return dictService.updateDisabled(dictId); return dictService.updateDisabled(dictId);
} }
@Operation(summary = "批量删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "批量删除 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/batchDelete") @PostMapping("/dict/batchDelete")
@SaCheckPermission("dict:delete") @SaCheckPermission("support:dict:delete")
public ResponseDTO<String> batchDelete(@RequestBody ValidateList<Long> idList) { public ResponseDTO<String> batchDelete(@RequestBody ValidateList<Long> idList) {
return dictService.batchDelete(idList); return dictService.batchDelete(idList);
} }
@Operation(summary = "单个删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "单个删除 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/delete/{dictId}") @GetMapping("/dict/delete/{dictId}")
@SaCheckPermission("dict:delete") @SaCheckPermission("support:dict:delete")
public ResponseDTO<String> batchDelete(@PathVariable Long dictId) { public ResponseDTO<String> delete(@PathVariable Long dictId) {
return dictService.delete(dictId); return dictService.delete(dictId);
} }
@@ -96,42 +96,42 @@ public class AdminDictController extends SupportBaseController {
@Operation(summary = "字典数据 分页查询 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 分页查询 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/dictData/queryDictData/{dictId}") @GetMapping("/dict/dictData/queryDictData/{dictId}")
@SaCheckPermission("dictData:query") @SaCheckPermission("support:dictData:query")
public ResponseDTO<List<DictDataVO>> queryDictData(@PathVariable Long dictId) { public ResponseDTO<List<DictDataVO>> queryDictData(@PathVariable Long dictId) {
return ResponseDTO.ok(dictService.queryDictData(dictId)); return ResponseDTO.ok(dictService.queryDictData(dictId));
} }
@Operation(summary = "字典数据 启用/禁用 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 启用/禁用 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/dictData/updateDisabled/{dictDataId}") @GetMapping("/dict/dictData/updateDisabled/{dictDataId}")
@SaCheckPermission("dictData:updateDisabled") @SaCheckPermission("support:dictData:updateDisabled")
public ResponseDTO<String> updateDictDataDisabled(@PathVariable Long dictDataId) { public ResponseDTO<String> updateDictDataDisabled(@PathVariable Long dictDataId) {
return dictService.updateDictDataDisabled(dictDataId); return dictService.updateDictDataDisabled(dictDataId);
} }
@Operation(summary = "字典数据 添加 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 添加 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/dictData/add") @PostMapping("/dict/dictData/add")
@SaCheckPermission("dictData:add") @SaCheckPermission("support:dictData:add")
public ResponseDTO<String> addDictData(@RequestBody @Valid DictDataAddForm addForm) { public ResponseDTO<String> addDictData(@RequestBody @Valid DictDataAddForm addForm) {
return dictService.addDictData(addForm); return dictService.addDictData(addForm);
} }
@Operation(summary = "字典数据 更新 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 更新 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/dictData/update") @PostMapping("/dict/dictData/update")
@SaCheckPermission("dictData:update") @SaCheckPermission("support:dictData:update")
public ResponseDTO<String> updateDictData(@RequestBody @Valid DictDataUpdateForm updateForm) { public ResponseDTO<String> updateDictData(@RequestBody @Valid DictDataUpdateForm updateForm) {
return dictService.updateDictData(updateForm); return dictService.updateDictData(updateForm);
} }
@Operation(summary = "字典数据 批量删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 批量删除 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/dictData/batchDelete") @PostMapping("/dict/dictData/batchDelete")
@SaCheckPermission("dictData:delete") @SaCheckPermission("support:dictData:delete")
public ResponseDTO<String> batchDeleteDictData(@RequestBody ValidateList<Long> idList) { public ResponseDTO<String> batchDeleteDictData(@RequestBody ValidateList<Long> idList) {
return dictService.batchDeleteDictData(idList); return dictService.batchDeleteDictData(idList);
} }
@Operation(summary = "字典数据 单个删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 单个删除 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/dictData/delete/{dictDataId}") @GetMapping("/dict/dictData/delete/{dictDataId}")
@SaCheckPermission("dictData:delete") @SaCheckPermission("support:dictData:delete")
public ResponseDTO<String> deleteDictData(@PathVariable Long dictDataId) { public ResponseDTO<String> deleteDictData(@PathVariable Long dictDataId) {
return dictService.deleteDictData(dictDataId); return dictService.deleteDictData(dictDataId);
} }

View File

@@ -1,5 +1,6 @@
package net.lab1024.sa.admin.module.business.oa.bank; package net.lab1024.sa.admin.module.business.oa.bank;
import cn.dev33.satoken.annotation.SaCheckPermission;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import net.lab1024.sa.admin.constant.AdminSwaggerTagConst; import net.lab1024.sa.admin.constant.AdminSwaggerTagConst;
@@ -35,24 +36,28 @@ public class BankController {
@Operation(summary = "分页查询银行信息 @author 善逸") @Operation(summary = "分页查询银行信息 @author 善逸")
@PostMapping("/oa/bank/page/query") @PostMapping("/oa/bank/page/query")
@SaCheckPermission("oa:bank:query")
public ResponseDTO<PageResult<BankVO>> queryByPage(@RequestBody @Valid BankQueryForm queryForm) { public ResponseDTO<PageResult<BankVO>> queryByPage(@RequestBody @Valid BankQueryForm queryForm) {
return bankService.queryByPage(queryForm); return bankService.queryByPage(queryForm);
} }
@Operation(summary = "根据企业ID查询银行信息列表 @author 善逸") @Operation(summary = "根据企业ID查询银行信息列表 @author 善逸")
@GetMapping("/oa/bank/query/list/{enterpriseId}") @GetMapping("/oa/bank/query/list/{enterpriseId}")
@SaCheckPermission("oa:bank:query")
public ResponseDTO<List<BankVO>> queryList(@PathVariable Long enterpriseId) { public ResponseDTO<List<BankVO>> queryList(@PathVariable Long enterpriseId) {
return bankService.queryList(enterpriseId); return bankService.queryList(enterpriseId);
} }
@Operation(summary = "查询银行信息详情 @author 善逸") @Operation(summary = "查询银行信息详情 @author 善逸")
@GetMapping("/oa/bank/get/{bankId}") @GetMapping("/oa/bank/get/{bankId}")
@SaCheckPermission("oa:bank:query")
public ResponseDTO<BankVO> getDetail(@PathVariable Long bankId) { public ResponseDTO<BankVO> getDetail(@PathVariable Long bankId) {
return bankService.getDetail(bankId); return bankService.getDetail(bankId);
} }
@Operation(summary = "新建银行信息 @author 善逸") @Operation(summary = "新建银行信息 @author 善逸")
@PostMapping("/oa/bank/create") @PostMapping("/oa/bank/create")
@SaCheckPermission("oa:bank:add")
public ResponseDTO<String> createBank(@RequestBody @Valid BankCreateForm createVO) { public ResponseDTO<String> createBank(@RequestBody @Valid BankCreateForm createVO) {
RequestUser requestUser = SmartRequestUtil.getRequestUser(); RequestUser requestUser = SmartRequestUtil.getRequestUser();
createVO.setCreateUserId(requestUser.getUserId()); createVO.setCreateUserId(requestUser.getUserId());
@@ -62,12 +67,14 @@ public class BankController {
@Operation(summary = "编辑银行信息 @author 善逸") @Operation(summary = "编辑银行信息 @author 善逸")
@PostMapping("/oa/bank/update") @PostMapping("/oa/bank/update")
@SaCheckPermission("oa:bank:update")
public ResponseDTO<String> updateBank(@RequestBody @Valid BankUpdateForm updateVO) { public ResponseDTO<String> updateBank(@RequestBody @Valid BankUpdateForm updateVO) {
return bankService.updateBank(updateVO); return bankService.updateBank(updateVO);
} }
@Operation(summary = "删除银行信息 @author 善逸") @Operation(summary = "删除银行信息 @author 善逸")
@GetMapping("/oa/bank/delete/{bankId}") @GetMapping("/oa/bank/delete/{bankId}")
@SaCheckPermission("oa:bank:delete")
public ResponseDTO<String> deleteBank(@PathVariable Long bankId) { public ResponseDTO<String> deleteBank(@PathVariable Long bankId) {
return bankService.deleteBank(bankId); return bankService.deleteBank(bankId);
} }

View File

@@ -100,6 +100,7 @@ public class EnterpriseController {
@Operation(summary = "按照类型查询企业 @author 开云") @Operation(summary = "按照类型查询企业 @author 开云")
@GetMapping("/oa/enterprise/query/list") @GetMapping("/oa/enterprise/query/list")
@SaCheckPermission("oa:enterprise:query")
public ResponseDTO<List<EnterpriseListVO>> queryList(@RequestParam(value = "type", required = false) Integer type) { public ResponseDTO<List<EnterpriseListVO>> queryList(@RequestParam(value = "type", required = false) Integer type) {
return enterpriseService.queryList(type); return enterpriseService.queryList(type);
} }
@@ -114,12 +115,14 @@ public class EnterpriseController {
@Operation(summary = "查询企业全部员工 @author 罗伊") @Operation(summary = "查询企业全部员工 @author 罗伊")
@PostMapping("/oa/enterprise/employee/list") @PostMapping("/oa/enterprise/employee/list")
@SaCheckPermission("oa:enterprise:queryEmployee")
public ResponseDTO<List<EnterpriseEmployeeVO>> employeeList(@RequestBody @Valid List<Long> enterpriseIdList) { public ResponseDTO<List<EnterpriseEmployeeVO>> employeeList(@RequestBody @Valid List<Long> enterpriseIdList) {
return ResponseDTO.ok(enterpriseService.employeeList(enterpriseIdList)); return ResponseDTO.ok(enterpriseService.employeeList(enterpriseIdList));
} }
@Operation(summary = "分页查询企业员工 @author 卓大") @Operation(summary = "分页查询企业员工 @author 卓大")
@PostMapping("/oa/enterprise/employee/queryPage") @PostMapping("/oa/enterprise/employee/queryPage")
@SaCheckPermission("oa:enterprise:queryEmployee")
public ResponseDTO<PageResult<EnterpriseEmployeeVO>> queryPageEmployeeList(@RequestBody @Valid EnterpriseEmployeeQueryForm queryForm) { public ResponseDTO<PageResult<EnterpriseEmployeeVO>> queryPageEmployeeList(@RequestBody @Valid EnterpriseEmployeeQueryForm queryForm) {
return ResponseDTO.ok(enterpriseService.queryPageEmployeeList(queryForm)); return ResponseDTO.ok(enterpriseService.queryPageEmployeeList(queryForm));
} }

View File

@@ -1,5 +1,6 @@
package net.lab1024.sa.admin.module.business.oa.invoice; package net.lab1024.sa.admin.module.business.oa.invoice;
import cn.dev33.satoken.annotation.SaCheckPermission;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
@@ -38,18 +39,21 @@ public class InvoiceController {
@Operation(summary = "分页查询发票信息 @author 善逸") @Operation(summary = "分页查询发票信息 @author 善逸")
@PostMapping("/oa/invoice/page/query") @PostMapping("/oa/invoice/page/query")
@SaCheckPermission("oa:invoice:query")
public ResponseDTO<PageResult<InvoiceVO>> queryByPage(@RequestBody @Valid InvoiceQueryForm queryForm) { public ResponseDTO<PageResult<InvoiceVO>> queryByPage(@RequestBody @Valid InvoiceQueryForm queryForm) {
return invoiceService.queryByPage(queryForm); return invoiceService.queryByPage(queryForm);
} }
@Operation(summary = "查询发票信息详情 @author 善逸") @Operation(summary = "查询发票信息详情 @author 善逸")
@GetMapping("/oa/invoice/get/{invoiceId}") @GetMapping("/oa/invoice/get/{invoiceId}")
@SaCheckPermission("oa:invoice:query")
public ResponseDTO<InvoiceVO> getDetail(@PathVariable Long invoiceId) { public ResponseDTO<InvoiceVO> getDetail(@PathVariable Long invoiceId) {
return invoiceService.getDetail(invoiceId); return invoiceService.getDetail(invoiceId);
} }
@Operation(summary = "新建发票信息 @author 善逸") @Operation(summary = "新建发票信息 @author 善逸")
@PostMapping("/oa/invoice/create") @PostMapping("/oa/invoice/create")
@SaCheckPermission("oa:invoice:add")
public ResponseDTO<String> createInvoice(@RequestBody @Valid InvoiceAddForm createVO) { public ResponseDTO<String> createInvoice(@RequestBody @Valid InvoiceAddForm createVO) {
RequestUser requestUser = SmartRequestUtil.getRequestUser(); RequestUser requestUser = SmartRequestUtil.getRequestUser();
createVO.setCreateUserId(requestUser.getUserId()); createVO.setCreateUserId(requestUser.getUserId());
@@ -57,21 +61,24 @@ public class InvoiceController {
return invoiceService.createInvoice(createVO); return invoiceService.createInvoice(createVO);
} }
@OperateLog
@Operation(summary = "编辑发票信息 @author 善逸") @Operation(summary = "编辑发票信息 @author 善逸")
@PostMapping("/oa/invoice/update") @PostMapping("/oa/invoice/update")
@OperateLog @SaCheckPermission("oa:invoice:update")
public ResponseDTO<String> updateInvoice(@RequestBody @Valid InvoiceUpdateForm updateVO) { public ResponseDTO<String> updateInvoice(@RequestBody @Valid InvoiceUpdateForm updateVO) {
return invoiceService.updateInvoice(updateVO); return invoiceService.updateInvoice(updateVO);
} }
@Operation(summary = "删除发票信息 @author 善逸") @Operation(summary = "删除发票信息 @author 善逸")
@GetMapping("/invoice/delete/{invoiceId}") @GetMapping("/invoice/delete/{invoiceId}")
@SaCheckPermission("oa:invoice:delete")
public ResponseDTO<String> deleteInvoice(@PathVariable Long invoiceId) { public ResponseDTO<String> deleteInvoice(@PathVariable Long invoiceId) {
return invoiceService.deleteInvoice(invoiceId); return invoiceService.deleteInvoice(invoiceId);
} }
@Operation(summary = "查询列表 @author lidoudou") @Operation(summary = "查询列表 @author lidoudou")
@GetMapping("/oa/invoice/query/list/{enterpriseId}") @GetMapping("/oa/invoice/query/list/{enterpriseId}")
@SaCheckPermission("oa:invoice:query")
public ResponseDTO<List<InvoiceVO>> queryList(@PathVariable Long enterpriseId) { public ResponseDTO<List<InvoiceVO>> queryList(@PathVariable Long enterpriseId) {
return invoiceService.queryList(enterpriseId); return invoiceService.queryList(enterpriseId);
} }

View File

@@ -52,43 +52,43 @@ public class AdminDictController extends SupportBaseController {
@Operation(summary = "分页查询 @author 1024创新实验室-主任-卓大") @Operation(summary = "分页查询 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/queryPage") @PostMapping("/dict/queryPage")
@SaCheckPermission("dict:query") @SaCheckPermission("support:dict:query")
public ResponseDTO<PageResult<DictVO>> queryPage(@RequestBody @Valid DictQueryForm queryForm) { public ResponseDTO<PageResult<DictVO>> queryPage(@RequestBody @Valid DictQueryForm queryForm) {
return ResponseDTO.ok(dictService.queryPage(queryForm)); return ResponseDTO.ok(dictService.queryPage(queryForm));
} }
@Operation(summary = "添加 @author 1024创新实验室-主任-卓大") @Operation(summary = "添加 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/add") @PostMapping("/dict/add")
@SaCheckPermission("dict:add") @SaCheckPermission("support:dict:add")
public ResponseDTO<String> add(@RequestBody @Valid DictAddForm addForm) { public ResponseDTO<String> add(@RequestBody @Valid DictAddForm addForm) {
return dictService.add(addForm); return dictService.add(addForm);
} }
@Operation(summary = "更新 @author 1024创新实验室-主任-卓大") @Operation(summary = "更新 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/update") @PostMapping("/dict/update")
@SaCheckPermission("dict:update") @SaCheckPermission("support:dict:update")
public ResponseDTO<String> update(@RequestBody @Valid DictUpdateForm updateForm) { public ResponseDTO<String> update(@RequestBody @Valid DictUpdateForm updateForm) {
return dictService.update(updateForm); return dictService.update(updateForm);
} }
@Operation(summary = "字典数据 启用/禁用 @author 1024创新实验室-主任-卓大") @Operation(summary = "启用/禁用 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/updateDisabled/{dictId}") @GetMapping("/dict/updateDisabled/{dictId}")
@SaCheckPermission("dictData:updateDisabled") @SaCheckPermission("support:dict:updateDisabled")
public ResponseDTO<String> updateDisabled(@PathVariable Long dictId) { public ResponseDTO<String> updateDisabled(@PathVariable Long dictId) {
return dictService.updateDisabled(dictId); return dictService.updateDisabled(dictId);
} }
@Operation(summary = "批量删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "批量删除 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/batchDelete") @PostMapping("/dict/batchDelete")
@SaCheckPermission("dict:delete") @SaCheckPermission("support:dict:delete")
public ResponseDTO<String> batchDelete(@RequestBody ValidateList<Long> idList) { public ResponseDTO<String> batchDelete(@RequestBody ValidateList<Long> idList) {
return dictService.batchDelete(idList); return dictService.batchDelete(idList);
} }
@Operation(summary = "单个删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "单个删除 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/delete/{dictId}") @GetMapping("/dict/delete/{dictId}")
@SaCheckPermission("dict:delete") @SaCheckPermission("support:dict:delete")
public ResponseDTO<String> batchDelete(@PathVariable Long dictId) { public ResponseDTO<String> delete(@PathVariable Long dictId) {
return dictService.delete(dictId); return dictService.delete(dictId);
} }
@@ -96,42 +96,42 @@ public class AdminDictController extends SupportBaseController {
@Operation(summary = "字典数据 分页查询 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 分页查询 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/dictData/queryDictData/{dictId}") @GetMapping("/dict/dictData/queryDictData/{dictId}")
@SaCheckPermission("dictData:query") @SaCheckPermission("support:dictData:query")
public ResponseDTO<List<DictDataVO>> queryDictData(@PathVariable Long dictId) { public ResponseDTO<List<DictDataVO>> queryDictData(@PathVariable Long dictId) {
return ResponseDTO.ok(dictService.queryDictData(dictId)); return ResponseDTO.ok(dictService.queryDictData(dictId));
} }
@Operation(summary = "字典数据 启用/禁用 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 启用/禁用 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/dictData/updateDisabled/{dictDataId}") @GetMapping("/dict/dictData/updateDisabled/{dictDataId}")
@SaCheckPermission("dictData:updateDisabled") @SaCheckPermission("support:dictData:updateDisabled")
public ResponseDTO<String> updateDictDataDisabled(@PathVariable Long dictDataId) { public ResponseDTO<String> updateDictDataDisabled(@PathVariable Long dictDataId) {
return dictService.updateDictDataDisabled(dictDataId); return dictService.updateDictDataDisabled(dictDataId);
} }
@Operation(summary = "字典数据 添加 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 添加 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/dictData/add") @PostMapping("/dict/dictData/add")
@SaCheckPermission("dictData:add") @SaCheckPermission("support:dictData:add")
public ResponseDTO<String> addDictData(@RequestBody @Valid DictDataAddForm addForm) { public ResponseDTO<String> addDictData(@RequestBody @Valid DictDataAddForm addForm) {
return dictService.addDictData(addForm); return dictService.addDictData(addForm);
} }
@Operation(summary = "字典数据 更新 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 更新 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/dictData/update") @PostMapping("/dict/dictData/update")
@SaCheckPermission("dictData:update") @SaCheckPermission("support:dictData:update")
public ResponseDTO<String> updateDictData(@RequestBody @Valid DictDataUpdateForm updateForm) { public ResponseDTO<String> updateDictData(@RequestBody @Valid DictDataUpdateForm updateForm) {
return dictService.updateDictData(updateForm); return dictService.updateDictData(updateForm);
} }
@Operation(summary = "字典数据 批量删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 批量删除 @author 1024创新实验室-主任-卓大")
@PostMapping("/dict/dictData/batchDelete") @PostMapping("/dict/dictData/batchDelete")
@SaCheckPermission("dictData:delete") @SaCheckPermission("support:dictData:delete")
public ResponseDTO<String> batchDeleteDictData(@RequestBody ValidateList<Long> idList) { public ResponseDTO<String> batchDeleteDictData(@RequestBody ValidateList<Long> idList) {
return dictService.batchDeleteDictData(idList); return dictService.batchDeleteDictData(idList);
} }
@Operation(summary = "字典数据 单个删除 @author 1024创新实验室-主任-卓大") @Operation(summary = "字典数据 单个删除 @author 1024创新实验室-主任-卓大")
@GetMapping("/dict/dictData/delete/{dictDataId}") @GetMapping("/dict/dictData/delete/{dictDataId}")
@SaCheckPermission("dictData:delete") @SaCheckPermission("support:dictData:delete")
public ResponseDTO<String> deleteDictData(@PathVariable Long dictDataId) { public ResponseDTO<String> deleteDictData(@PathVariable Long dictDataId) {
return dictService.deleteDictData(dictDataId); return dictService.deleteDictData(dictDataId);
} }

View File

@@ -18,7 +18,7 @@ export const MENU_TYPE_ENUM = {
}, },
POINTS: { POINTS: {
value: 3, value: 3,
desc: '按钮', desc: '功能点',
}, },
}; };

View File

@@ -20,7 +20,7 @@ const privilege = (value) => {
if (!userPointsList) { if (!userPointsList) {
return false; return false;
} }
return _.some(userPointsList, ['apiPerms', value]); return _.some(userPointsList, ['webPerms', value]);
}; };
export default { export default {

View File

@@ -36,7 +36,7 @@
</a-button> </a-button>
</a-button-group> </a-button-group>
<a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20"> <a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20" v-if="$privilege('oa:bank:add')">
<template #icon> <template #icon>
<PlusOutlined /> <PlusOutlined />
</template> </template>
@@ -60,8 +60,8 @@
</template> </template>
<template v-else-if="column.dataIndex === 'action'"> <template v-else-if="column.dataIndex === 'action'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="addOrUpdate(record)" type="link">编辑</a-button> <a-button @click="addOrUpdate(record)" type="link" v-if="$privilege('oa:bank:update')">编辑</a-button>
<a-button @click="confirmDelete(record.bankId)" danger type="link">删除</a-button> <a-button @click="confirmDelete(record.bankId)" danger type="link" v-if="$privilege('oa:bank:delete')">删除</a-button>
</div> </div>
</template> </template>
</template> </template>

View File

@@ -8,8 +8,8 @@
* @Copyright 1024创新实验室 https://1024lab.net Since 2012 * @Copyright 1024创新实验室 https://1024lab.net Since 2012
--> -->
<template> <template>
<a-modal :open="visible" :title="form.bankId ? '编辑' : '添加'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.bankId ? '编辑' : '添加'" :width="700" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 18 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 4 }" :wrapper-col="{ span: 19 }">
<a-form-item label="开户银行" name="bankName"> <a-form-item label="开户银行" name="bankName">
<a-input v-model:value="form.bankName" placeholder="请输入开户银行" /> <a-input v-model:value="form.bankName" placeholder="请输入开户银行" />
</a-form-item> </a-form-item>

View File

@@ -16,50 +16,59 @@
<a-button class="button-style" type="primary" @click="onSearch">搜索</a-button> <a-button class="button-style" type="primary" @click="onSearch">搜索</a-button>
<a-button class="button-style" type="default" @click="resetQueryEmployee">重置</a-button> <a-button class="button-style" type="default" @click="resetQueryEmployee">重置</a-button>
</div> </div>
<div> <div>
<a-button class="button-style" type="primary" @click="addEmployee" v-privilege="'oa:enterprise:addEmployee'"> 添加员工 </a-button> <a-button class="button-style" type="primary" @click="addEmployee" v-privilege="'oa:enterprise:addEmployee'"> 添加员工 </a-button>
<a-button class="button-style" type="primary" danger @click="batchDelete" v-privilege="'oa:enterprise:deleteEmployee'"> 批量移除 </a-button> <a-button class="button-style" type="primary" danger @click="batchDelete" v-privilege="'oa:enterprise:deleteEmployee'"> 批量移除 </a-button>
</div> </div>
</div> </div>
<a-table <a-card size="small" :bordered="false" :hoverable="false">
:loading="tableLoading" <a-row justify="end">
:dataSource="tableData" <TableOperator
:columns="columns" class="smart-margin-bottom5"
:pagination="false" v-model="columns"
rowKey="employeeId" :tableId="TABLE_ID_CONST.BUSINESS.OA.ENTERPRISE_EMPLOYEE"
:row-selection="{ selectedRowKeys: selectedRowKeyList, onChange: onSelectChange }" :refresh="queryEmployee"
size="small" />
bordered </a-row>
> <a-table
<template #bodyCell="{ text, record, index, column }"> :loading="tableLoading"
<template v-if="column.dataIndex === 'disabledFlag'"> :dataSource="tableData"
<a-tag :color="text ? 'error' : 'processing'">{{ text ? '禁用' : '启用' }}</a-tag> :columns="columns"
:pagination="false"
rowKey="employeeId"
:row-selection="{ selectedRowKeys: selectedRowKeyList, onChange: onSelectChange }"
size="small"
bordered
>
<template #bodyCell="{ text, record, column }">
<template v-if="column.dataIndex === 'disabledFlag'">
<a-tag :color="text ? 'error' : 'processing'">{{ text ? '禁用' : '启用' }}</a-tag>
</template>
<template v-else-if="column.dataIndex === 'gender'">
<span>{{ $smartEnumPlugin.getDescByValue('GENDER_ENUM', text) }}</span>
</template>
<template v-if="column.dataIndex === 'operate'">
<a-button type="link" @click="deleteEmployee(record.employeeId)" v-privilege="'oa:enterprise:deleteEmployee'">移除</a-button>
</template>
</template> </template>
<template v-else-if="column.dataIndex === 'gender'"> </a-table>
<span>{{ $smartEnumPlugin.getDescByValue('GENDER_ENUM', text) }}</span> <div class="smart-query-table-page">
</template> <a-pagination
<template v-if="column.dataIndex === 'operate'"> showSizeChanger
<a @click="deleteEmployee(record.employeeId)" v-privilege="'oa:enterprise:deleteEmployee'">移除</a> showQuickJumper
</template> show-less-items
</template> :pageSizeOptions="PAGE_SIZE_OPTIONS"
</a-table> :defaultPageSize="queryForm.pageSize"
<div class="smart-query-table-page"> v-model:current="queryForm.pageNum"
<a-pagination v-model:pageSize="queryForm.pageSize"
showSizeChanger :total="total"
showQuickJumper @change="queryEmployee"
show-less-items @showSizeChange="queryEmployee"
:pageSizeOptions="PAGE_SIZE_OPTIONS" :show-total="showTableTotal"
:defaultPageSize="queryForm.pageSize" />
v-model:current="queryForm.pageNum" </div>
v-model:pageSize="queryForm.pageSize" <EmployeeTableSelectModal ref="selectEmployeeModal" @selectData="selectData" />
:total="total" </a-card>
@change="queryEmployee"
@showSizeChange="queryEmployee"
:show-total="showTableTotal"
/>
</div>
<EmployeeTableSelectModal ref="selectEmployeeModal" @selectData="selectData" />
</div> </div>
</template> </template>
<script setup> <script setup>
@@ -72,6 +81,8 @@
import { SmartLoading } from '/@/components/framework/smart-loading'; import { SmartLoading } from '/@/components/framework/smart-loading';
import { PAGE_SIZE, PAGE_SIZE_OPTIONS, showTableTotal } from '/@/constants/common-const'; import { PAGE_SIZE, PAGE_SIZE_OPTIONS, showTableTotal } from '/@/constants/common-const';
import { smartSentry } from '/@/lib/smart-sentry'; import { smartSentry } from '/@/lib/smart-sentry';
import TableOperator from '/@/components/support/table-operator/index.vue';
import { TABLE_ID_CONST } from '/@/constants/support/table-id-const';
const props = defineProps({ const props = defineProps({
enterpriseId: { enterpriseId: {
@@ -112,7 +123,8 @@
{ {
title: '操作', title: '操作',
dataIndex: 'operate', dataIndex: 'operate',
width: 60, width: 90,
align: 'center',
}, },
]); ]);
@@ -271,7 +283,8 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
margin: 20px 0; padding: 10px 10px;
margin-bottom: 10px;
} }
.button-style { .button-style {

View File

@@ -36,7 +36,7 @@
</a-button> </a-button>
</a-button-group> </a-button-group>
<a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20"> <a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20" v-if="$privilege('oa:invoice:add')">
<template #icon> <template #icon>
<PlusOutlined /> <PlusOutlined />
</template> </template>
@@ -51,14 +51,14 @@
<TableOperator class="smart-margin-bottom5" v-model="columns" :tableId="TABLE_ID_CONST.BUSINESS.OA.ENTERPRISE_INVOICE" :refresh="ajaxQuery" /> <TableOperator class="smart-margin-bottom5" v-model="columns" :tableId="TABLE_ID_CONST.BUSINESS.OA.ENTERPRISE_INVOICE" :refresh="ajaxQuery" />
</a-row> </a-row>
<a-table :scroll="{ x: 1300 }" size="small" :dataSource="tableData" :columns="columns" rowKey="invoiceId" :pagination="false" bordered> <a-table :scroll="{ x: 1300 }" size="small" :dataSource="tableData" :columns="columns" rowKey="invoiceId" :pagination="false" bordered>
<template #bodyCell="{ text, record, index, column }"> <template #bodyCell="{ record, column }">
<template v-if="column.dataIndex === 'disabledFlag'"> <template v-if="column.dataIndex === 'disabledFlag'">
{{ record.disabledFlag ? '禁用' : '启用' }} {{ record.disabledFlag ? '禁用' : '启用' }}
</template> </template>
<template v-else-if="column.dataIndex === 'action'"> <template v-else-if="column.dataIndex === 'action'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="addOrUpdate(record)" type="link">编辑</a-button> <a-button @click="addOrUpdate(record)" type="link" v-if="$privilege('oa:invoice:update')">编辑</a-button>
<a-button @click="confirmDelete(record.invoiceId)" type="link" danger>删除</a-button> <a-button @click="confirmDelete(record.invoiceId)" type="link" danger v-if="$privilege('oa:invoice:delete')">删除</a-button>
</div> </div>
</template> </template>
</template> </template>

View File

@@ -8,8 +8,8 @@
* @Copyright 1024创新实验室 https://1024lab.net Since 2012 * @Copyright 1024创新实验室 https://1024lab.net Since 2012
--> -->
<template> <template>
<a-modal :open="visible" :title="form.invoiceId ? '编辑' : '添加'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.invoiceId ? '编辑' : '添加'" :width="700" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 12 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 4 }" :wrapper-col="{ span: 19 }">
<a-form-item label="开票抬头" name="invoiceHeads"> <a-form-item label="开票抬头" name="invoiceHeads">
<a-input v-model:value="form.invoiceHeads" placeholder="请输入开票抬头" /> <a-input v-model:value="form.invoiceHeads" placeholder="请输入开票抬头" />
</a-form-item> </a-form-item>

View File

@@ -1,6 +1,15 @@
<template> <template>
<a-modal :open="visible" title="添加" :width="700" forceRender ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 6 }"> :open="visible"
:title="form.enterpriseId ? '编辑' : '添加'"
:width="700"
forceRender
ok-text="确认"
cancel-text="取消"
@ok="onSubmit"
@cancel="onClose"
>
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 18 }">
<a-form-item label="企业名称" name="enterpriseName"> <a-form-item label="企业名称" name="enterpriseName">
<a-input v-model:value="form.enterpriseName" placeholder="请输入企业名称" /> <a-input v-model:value="form.enterpriseName" placeholder="请输入企业名称" />
</a-form-item> </a-form-item>

View File

@@ -30,15 +30,19 @@
</div> </div>
</a-page-header> </a-page-header>
</div> </div>
<a-card class="smart-margin-top10" size="small"> <a-card
class="smart-margin-top10"
size="small"
v-if="$privilege('oa:enterprise:queryEmployee') || $privilege('oa:bank:query') || $privilege('oa:invoice:query')"
>
<a-tabs> <a-tabs>
<a-tab-pane key="employee" tab="员工信息"> <a-tab-pane key="employee" tab="员工信息" v-if="$privilege('oa:enterprise:queryEmployee')">
<EmployeeList :enterpriseId="enterpriseId" /> <EmployeeList :enterpriseId="enterpriseId" />
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="bank" tab="银行信息"> <a-tab-pane key="bank" tab="银行信息" v-if="$privilege('oa:bank:query')">
<BankList :enterpriseId="enterpriseId" /> <BankList :enterpriseId="enterpriseId" />
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="invoice" tab="发票信息"> <a-tab-pane key="invoice" tab="发票信息" v-if="$privilege('oa:invoice:query')">
<InvoiceList :enterpriseId="enterpriseId" /> <InvoiceList :enterpriseId="enterpriseId" />
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="dataTracer" tab="变更记录"> <a-tab-pane key="dataTracer" tab="变更记录">

View File

@@ -75,7 +75,9 @@
{{ text ? '禁用' : '启用' }} {{ text ? '禁用' : '启用' }}
</template> </template>
<template v-if="column.dataIndex === 'enterpriseName'"> <template v-if="column.dataIndex === 'enterpriseName'">
<a @click="detail(record.enterpriseId)">{{ record.enterpriseName }}</a> <a-button type="link" @click="detail(record.enterpriseId)" :disabled="!$privilege('oa:enterprise:detail')">
{{ record.enterpriseName }}
</a-button>
</template> </template>
<template v-if="column.dataIndex === 'type'"> <template v-if="column.dataIndex === 'type'">
<span>{{ $smartEnumPlugin.getDescByValue('ENTERPRISE_TYPE_ENUM', text) }}</span> <span>{{ $smartEnumPlugin.getDescByValue('ENTERPRISE_TYPE_ENUM', text) }}</span>

View File

@@ -41,7 +41,7 @@
<a-table <a-table
size="small" size="small"
:scroll="{ x: 1000 }" :scroll="{ y: 800 }"
:loading="tableLoading" :loading="tableLoading"
bordered bordered
:dataSource="tableData" :dataSource="tableData"

View File

@@ -178,8 +178,8 @@
chosenClass: 'smart-ghost-class', //设置选中样式类名 chosenClass: 'smart-ghost-class', //设置选中样式类名
handle: '.handle', handle: '.handle',
onEnd: ({ oldIndex, newIndex }) => { onEnd: ({ oldIndex, newIndex }) => {
const oldRow = tableData.value.splice(oldIndex, 1)[0]; const oldRow = tableData.value.splice(oldIndex - 1, 1)[0];
tableData.value.splice(newIndex, 0, oldRow); tableData.value.splice(newIndex - 1, 0, oldRow);
}, },
}); });
} }

View File

@@ -9,7 +9,7 @@
--> -->
<template> <template>
<a-modal :open="visible" :title="form.dictDataId ? '编辑字典值' : '添加字典值'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.dictDataId ? '编辑字典值' : '添加字典值'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<br/> <br />
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 16 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 16 }">
<a-form-item label="字典项名称" name="dataLabel"> <a-form-item label="字典项名称" name="dataLabel">
<a-input v-model:value="form.dataLabel" placeholder="请输入 字典项名称" /> <a-input v-model:value="form.dataLabel" placeholder="请输入 字典项名称" />
@@ -21,7 +21,7 @@
<a-input-number style="width: 100%" v-model:value="form.sortOrder" :min="0" :max="1000" /> <a-input-number style="width: 100%" v-model:value="form.sortOrder" :min="0" :max="1000" />
</a-form-item> </a-form-item>
<a-form-item label="备注" name="remark"> <a-form-item label="备注" name="remark">
<textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none"></textarea> <a-textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none" />
</a-form-item> </a-form-item>
</a-form> </a-form>
</a-modal> </a-modal>

View File

@@ -33,14 +33,20 @@
<a-row class="smart-table-btn-block"> <a-row class="smart-table-btn-block">
<div class="smart-table-operate-block"> <div class="smart-table-operate-block">
<a-button @click="addOrUpdateData" type="primary"> <a-button @click="addOrUpdateData" type="primary" v-privilege="'support:dictData:add'">
<template #icon> <template #icon>
<PlusOutlined /> <PlusOutlined />
</template> </template>
新建 新建
</a-button> </a-button>
<a-button @click="confirmBatchDelete" type="primary" danger :disabled="selectedRowKeyList.length === 0"> <a-button
@click="confirmBatchDelete"
type="primary"
danger
:disabled="selectedRowKeyList.length === 0"
v-privilege="'support:dictData:delete'"
>
<template #icon> <template #icon>
<DeleteOutlined /> <DeleteOutlined />
</template> </template>
@@ -69,7 +75,7 @@
/> />
</template> </template>
<template v-if="column.dataIndex === 'action'"> <template v-if="column.dataIndex === 'action'">
<a-button @click="addOrUpdateData(record)" type="link">编辑</a-button> <a-button @click="addOrUpdateData(record)" type="link" v-privilege="'support:dictData:update'">编辑</a-button>
</template> </template>
</template> </template>
</a-table> </a-table>

View File

@@ -9,7 +9,7 @@
--> -->
<template> <template>
<a-modal :open="visible" :title="form.dictId ? '编辑字典' : '添加字典'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.dictId ? '编辑字典' : '添加字典'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<br/> <br />
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 19 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 19 }">
<a-form-item label="字典编码" name="dictCode"> <a-form-item label="字典编码" name="dictCode">
<a-input v-model:value="form.dictCode" placeholder="请输入编码" /> <a-input v-model:value="form.dictCode" placeholder="请输入编码" />
@@ -19,7 +19,7 @@
</a-form-item> </a-form-item>
<a-form-item label="备注" name="remark"> <a-form-item label="备注" name="remark">
<textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none"></textarea> <a-textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none" />
</a-form-item> </a-form-item>
</a-form> </a-form>
</a-modal> </a-modal>

View File

@@ -45,13 +45,7 @@
新建 新建
</a-button> </a-button>
<a-button <a-button @click="confirmBatchDelete" v-privilege="'support:dict:delete'" type="primary" danger :disabled="selectedRowKeyList.length === 0">
@click="confirmBatchDelete"
v-privilege="'support:dict:batchDelete'"
type="primary"
danger
:disabled="selectedRowKeyList.length === 0"
>
<template #icon> <template #icon>
<DeleteOutlined /> <DeleteOutlined />
</template> </template>
@@ -87,7 +81,7 @@
</template> </template>
<template v-else-if="column.dataIndex === 'action'"> <template v-else-if="column.dataIndex === 'action'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="addOrUpdateDict(record)" v-privilege="'support:dict:edit'" type="link">编辑</a-button> <a-button @click="addOrUpdateDict(record)" v-privilege="'support:dict:update'" type="link">编辑</a-button>
</div> </div>
</template> </template>
</template> </template>

View File

@@ -15,8 +15,9 @@
:open="visible" :open="visible"
:width="600" :width="600"
@close="onClose" @close="onClose"
destroyOnClose
> >
<a-form ref="formRef" :labelCol="{ span: labelColSpan }" :labelWrap="true" :model="form" :rules="rules"> <a-form ref="formRef" :labelCol="{ span: 5 }" :labelWrap="true" :model="form" :rules="rules">
<a-form-item label="菜单类型" name="menuType"> <a-form-item label="菜单类型" name="menuType">
<a-radio-group v-model:value="form.menuType" button-style="solid"> <a-radio-group v-model:value="form.menuType" button-style="solid">
<a-radio-button v-for="item in MENU_TYPE_ENUM" :key="item.value" :value="item.value"> <a-radio-button v-for="item in MENU_TYPE_ENUM" :key="item.value" :value="item.value">
@@ -61,11 +62,17 @@
<a-switch v-model:checked="form.visibleFlag" checked-children="显示" un-checked-children="不显示" /> <a-switch v-model:checked="form.visibleFlag" checked-children="显示" un-checked-children="不显示" />
</a-form-item> </a-form-item>
<a-form-item label="禁用状态" name="disabledFlag"> <a-form-item label="禁用状态" name="disabledFlag">
<a-switch v-model:checked="form.disabledFlag" :checkedValue="false" :unCheckedValue="true" checked-children="启用" un-checked-children="禁用" /> <a-switch
v-model:checked="form.disabledFlag"
:checkedValue="false"
:unCheckedValue="true"
checked-children="启用"
un-checked-children="禁用"
/>
</a-form-item> </a-form-item>
</template> </template>
<!-- 目录 菜单 end --> <!-- 目录 菜单 end -->
<!-- 按钮 start --> <!-- 功能点 start -->
<template v-if="form.menuType === MENU_TYPE_ENUM.POINTS.value"> <template v-if="form.menuType === MENU_TYPE_ENUM.POINTS.value">
<a-form-item label="功能点名称" name="menuName"> <a-form-item label="功能点名称" name="menuName">
<a-input v-model:value="form.menuName" placeholder="请输入功能点名称" /> <a-input v-model:value="form.menuName" placeholder="请输入功能点名称" />
@@ -74,7 +81,13 @@
<MenuTreeSelect ref="contextMenuTreeSelect" v-model:value="form.contextMenuId" /> <MenuTreeSelect ref="contextMenuTreeSelect" v-model:value="form.contextMenuId" />
</a-form-item> </a-form-item>
<a-form-item label="功能点状态" name="funcDisabledFlag"> <a-form-item label="功能点状态" name="funcDisabledFlag">
<a-switch v-model:checked="form.disabledFlag" :checkedValue="false" :unCheckedValue="true" checked-children="启用" un-checked-children="禁用" /> <a-switch
v-model:checked="form.disabledFlag"
:checkedValue="false"
:unCheckedValue="true"
checked-children="启用"
un-checked-children="禁用"
/>
</a-form-item> </a-form-item>
<a-form-item label="权限类型" name="permsType"> <a-form-item label="权限类型" name="permsType">
<a-radio-group v-model:value="form.permsType"> <a-radio-group v-model:value="form.permsType">
@@ -90,7 +103,7 @@
<a-input v-model:value="form.apiPerms" placeholder="请输入后端权限" /> <a-input v-model:value="form.apiPerms" placeholder="请输入后端权限" />
</a-form-item> </a-form-item>
</template> </template>
<!-- 按钮 end --> <!-- 功能点 end -->
<a-form-item label="排序" name="sort" help="值越小越靠前"> <a-form-item label="排序" name="sort" help="值越小越靠前">
<a-input-number v-model:value="form.sort" :min="0" placeholder="请输入排序" style="width: 100px" /> <a-input-number v-model:value="form.sort" :min="0" placeholder="请输入排序" style="width: 100px" />
</a-form-item> </a-form-item>
@@ -105,7 +118,7 @@
<script setup> <script setup>
import { message } from 'ant-design-vue'; import { message } from 'ant-design-vue';
import _ from 'lodash'; import _ from 'lodash';
import { computed, nextTick, reactive, ref } from 'vue'; import { nextTick, reactive, ref } from 'vue';
import MenuTreeSelect from './menu-tree-select.vue'; import MenuTreeSelect from './menu-tree-select.vue';
import { menuApi } from '/@/api/system/menu-api'; import { menuApi } from '/@/api/system/menu-api';
import IconSelect from '/@/components/framework/icon-select/index.vue'; import IconSelect from '/@/components/framework/icon-select/index.vue';
@@ -122,13 +135,6 @@
// 是否展示抽屉 // 是否展示抽屉
const visible = ref(false); const visible = ref(false);
const labelColSpan = computed(() => {
if (form.menuType === MENU_TYPE_ENUM.POINTS.value) {
return 6;
}
return 4;
});
const contextMenuTreeSelect = ref(); const contextMenuTreeSelect = ref();
const parentMenuTreeSelect = ref(); const parentMenuTreeSelect = ref();
@@ -178,7 +184,7 @@
apiPerms: undefined, apiPerms: undefined,
sort: undefined, sort: undefined,
visibleFlag: true, visibleFlag: true,
cacheFlag: true, cacheFlag: false,
component: undefined, component: undefined,
contextMenuId: undefined, contextMenuId: undefined,
disabledFlag: false, disabledFlag: false,
@@ -196,6 +202,9 @@
formRef.value.resetFields(); formRef.value.resetFields();
form.menuType = menuType; form.menuType = menuType;
form.parentId = parentId; form.parentId = parentId;
if (form.menuType === MENU_TYPE_ENUM.POINTS.value) {
form.contextMenuId = parentId;
}
// 移除最后一个:后面的内容 // 移除最后一个:后面的内容
if (webPerms && webPerms.lastIndexOf(':')) { if (webPerms && webPerms.lastIndexOf(':')) {
form.webPerms = webPerms.substring(0, webPerms.lastIndexOf(':') + 1); form.webPerms = webPerms.substring(0, webPerms.lastIndexOf(':') + 1);

View File

@@ -13,12 +13,13 @@ export const columns = ref([
title: '名称', title: '名称',
dataIndex: 'menuName', dataIndex: 'menuName',
key: 'ID', key: 'ID',
width: 200, width: 220,
}, },
{ {
title: '类型', title: '类型',
dataIndex: 'menuType', dataIndex: 'menuType',
width: 80, width: 100,
align: "center"
}, },
{ {
title: '图标', title: '图标',
@@ -53,6 +54,7 @@ export const columns = ref([
{ {
title: '操作', title: '操作',
dataIndex: 'operate', dataIndex: 'operate',
width: 100, width: 170,
align: "center"
}, },
]); ]);

View File

@@ -88,7 +88,7 @@
<a-table <a-table
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }" :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
size="small" size="small"
:scroll="{ x: 1000 }" :scroll="{ y: 800 }"
:defaultExpandAllRows="true" :defaultExpandAllRows="true"
:dataSource="tableData" :dataSource="tableData"
bordered bordered
@@ -132,6 +132,15 @@
<template v-if="column.dataIndex === 'operate'"> <template v-if="column.dataIndex === 'operate'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button
v-if="record.menuType !== MENU_TYPE_ENUM.POINTS.value"
v-privilege="'system:menu:update'"
type="link"
size="small"
@click="showAddSub(record)"
>
添加下级
</a-button>
<a-button v-privilege="'system:menu:update'" type="link" size="small" @click="showDrawer(record)">编辑</a-button> <a-button v-privilege="'system:menu:update'" type="link" size="small" @click="showDrawer(record)">编辑</a-button>
<a-button v-privilege="'system:menu:batchDelete'" danger type="link" @click="singleDelete(record)">删除</a-button> <a-button v-privilege="'system:menu:batchDelete'" danger type="link" @click="singleDelete(record)">删除</a-button>
</div> </div>
@@ -157,6 +166,7 @@
import { smartSentry } from '/@/lib/smart-sentry'; import { smartSentry } from '/@/lib/smart-sentry';
import TableOperator from '/@/components/support/table-operator/index.vue'; import TableOperator from '/@/components/support/table-operator/index.vue';
import { TABLE_ID_CONST } from '/@/constants/support/table-id-const'; import { TABLE_ID_CONST } from '/@/constants/support/table-id-const';
import { MENU_TYPE_ENUM } from '/@/constants/system/menu-const';
// ------------------------ 表格渲染 ------------------------ // ------------------------ 表格渲染 ------------------------
const menuTypeColorArray = ['red', 'blue', 'orange', 'green']; const menuTypeColorArray = ['red', 'blue', 'orange', 'green'];
@@ -256,4 +266,13 @@
function showDrawer(rowData) { function showDrawer(rowData) {
menuOperateModal.value.showDrawer(rowData); menuOperateModal.value.showDrawer(rowData);
} }
function showAddSub(rowData) {
const subData = {
parentId: rowData.menuId,
menuType: rowData.menuType === MENU_TYPE_ENUM.CATALOG.value ? MENU_TYPE_ENUM.MENU.value : MENU_TYPE_ENUM.POINTS.value,
contextMenuId: rowData.menuType === MENU_TYPE_ENUM.MENU.value ? rowData.menuId : undefined,
};
menuOperateModal.value.showDrawer(subData);
}
</script> </script>

View File

@@ -21,7 +21,7 @@ export const MENU_TYPE_ENUM: SmartEnum<number> = {
}, },
POINTS: { POINTS: {
value: 3, value: 3,
desc: '按钮', desc: '功能点',
}, },
}; };

View File

@@ -21,7 +21,7 @@ const privilege = (value: string) => {
if (!userPointsList) { if (!userPointsList) {
return false; return false;
} }
return _.some(userPointsList, ['apiPerms', value]); return _.some(userPointsList, ['webPerms', value]);
}; };
export default { export default {

View File

@@ -36,7 +36,7 @@
</a-button> </a-button>
</a-button-group> </a-button-group>
<a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20"> <a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20" v-if="$privilege('oa:bank:add')">
<template #icon> <template #icon>
<PlusOutlined /> <PlusOutlined />
</template> </template>
@@ -60,8 +60,8 @@
</template> </template>
<template v-else-if="column.dataIndex === 'action'"> <template v-else-if="column.dataIndex === 'action'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="addOrUpdate(record)" type="link">编辑</a-button> <a-button @click="addOrUpdate(record)" type="link" v-if="$privilege('oa:bank:update')">编辑</a-button>
<a-button @click="confirmDelete(record.bankId)" danger type="link">删除</a-button> <a-button @click="confirmDelete(record.bankId)" danger type="link" v-if="$privilege('oa:bank:delete')">删除</a-button>
</div> </div>
</template> </template>
</template> </template>

View File

@@ -8,8 +8,8 @@
* @Copyright 1024创新实验室 https://1024lab.net Since 2012 * @Copyright 1024创新实验室 https://1024lab.net Since 2012
--> -->
<template> <template>
<a-modal :open="visible" :title="form.bankId ? '编辑' : '添加'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.bankId ? '编辑' : '添加'" :width="700" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 18 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 4 }" :wrapper-col="{ span: 19 }">
<a-form-item label="开户银行" name="bankName"> <a-form-item label="开户银行" name="bankName">
<a-input v-model:value="form.bankName" placeholder="请输入开户银行" /> <a-input v-model:value="form.bankName" placeholder="请输入开户银行" />
</a-form-item> </a-form-item>

View File

@@ -16,50 +16,59 @@
<a-button class="button-style" type="primary" @click="onSearch">搜索</a-button> <a-button class="button-style" type="primary" @click="onSearch">搜索</a-button>
<a-button class="button-style" type="default" @click="resetQueryEmployee">重置</a-button> <a-button class="button-style" type="default" @click="resetQueryEmployee">重置</a-button>
</div> </div>
<div> <div>
<a-button class="button-style" type="primary" @click="addEmployee" v-privilege="'oa:enterprise:addEmployee'"> 添加员工 </a-button> <a-button class="button-style" type="primary" @click="addEmployee" v-privilege="'oa:enterprise:addEmployee'"> 添加员工 </a-button>
<a-button class="button-style" type="primary" danger @click="batchDelete" v-privilege="'oa:enterprise:deleteEmployee'"> 批量移除 </a-button> <a-button class="button-style" type="primary" danger @click="batchDelete" v-privilege="'oa:enterprise:deleteEmployee'"> 批量移除 </a-button>
</div> </div>
</div> </div>
<a-table <a-card size="small" :bordered="false" :hoverable="false">
:loading="tableLoading" <a-row justify="end">
:dataSource="tableData" <TableOperator
:columns="columns" class="smart-margin-bottom5"
:pagination="false" v-model="columns"
rowKey="employeeId" :tableId="TABLE_ID_CONST.BUSINESS.OA.ENTERPRISE_EMPLOYEE"
:row-selection="{ selectedRowKeys: selectedRowKeyList, onChange: onSelectChange }" :refresh="queryEmployee"
size="small" />
bordered </a-row>
> <a-table
<template #bodyCell="{ text, record, index, column }"> :loading="tableLoading"
<template v-if="column.dataIndex === 'disabledFlag'"> :dataSource="tableData"
<a-tag :color="text ? 'error' : 'processing'">{{ text ? '禁用' : '启用' }}</a-tag> :columns="columns"
:pagination="false"
rowKey="employeeId"
:row-selection="{ selectedRowKeys: selectedRowKeyList, onChange: onSelectChange }"
size="small"
bordered
>
<template #bodyCell="{ text, record, column }">
<template v-if="column.dataIndex === 'disabledFlag'">
<a-tag :color="text ? 'error' : 'processing'">{{ text ? '禁用' : '启用' }}</a-tag>
</template>
<template v-else-if="column.dataIndex === 'gender'">
<span>{{ $smartEnumPlugin.getDescByValue('GENDER_ENUM', text) }}</span>
</template>
<template v-if="column.dataIndex === 'operate'">
<a-button type="link" @click="deleteEmployee(record.employeeId)" v-privilege="'oa:enterprise:deleteEmployee'">移除</a-button>
</template>
</template> </template>
<template v-else-if="column.dataIndex === 'gender'"> </a-table>
<span>{{ $smartEnumPlugin.getDescByValue('GENDER_ENUM', text) }}</span> <div class="smart-query-table-page">
</template> <a-pagination
<template v-if="column.dataIndex === 'operate'"> showSizeChanger
<a @click="deleteEmployee(record.employeeId)" v-privilege="'oa:enterprise:deleteEmployee'">移除</a> showQuickJumper
</template> show-less-items
</template> :pageSizeOptions="PAGE_SIZE_OPTIONS"
</a-table> :defaultPageSize="queryForm.pageSize"
<div class="smart-query-table-page"> v-model:current="queryForm.pageNum"
<a-pagination v-model:pageSize="queryForm.pageSize"
showSizeChanger :total="total"
showQuickJumper @change="queryEmployee"
show-less-items @showSizeChange="queryEmployee"
:pageSizeOptions="PAGE_SIZE_OPTIONS" :show-total="showTableTotal"
:defaultPageSize="queryForm.pageSize" />
v-model:current="queryForm.pageNum" </div>
v-model:pageSize="queryForm.pageSize" <EmployeeTableSelectModal ref="selectEmployeeModal" @selectData="selectData" />
:total="total" </a-card>
@change="queryEmployee"
@showSizeChange="queryEmployee"
:show-total="showTableTotal"
/>
</div>
<EmployeeTableSelectModal ref="selectEmployeeModal" @selectData="selectData" />
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@@ -72,6 +81,8 @@
import { SmartLoading } from '/@/components/framework/smart-loading'; import { SmartLoading } from '/@/components/framework/smart-loading';
import { PAGE_SIZE, PAGE_SIZE_OPTIONS, showTableTotal } from '/@/constants/common-const'; import { PAGE_SIZE, PAGE_SIZE_OPTIONS, showTableTotal } from '/@/constants/common-const';
import { smartSentry } from '/@/lib/smart-sentry'; import { smartSentry } from '/@/lib/smart-sentry';
import TableOperator from '/@/components/support/table-operator/index.vue';
import { TABLE_ID_CONST } from '/@/constants/support/table-id-const';
const props = defineProps({ const props = defineProps({
enterpriseId: { enterpriseId: {
@@ -112,7 +123,8 @@
{ {
title: '操作', title: '操作',
dataIndex: 'operate', dataIndex: 'operate',
width: 60, width: 90,
align: 'center',
}, },
]); ]);
@@ -271,7 +283,8 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
margin: 20px 0; padding: 10px 10px;
margin-bottom: 10px;
} }
.button-style { .button-style {

View File

@@ -36,7 +36,8 @@
</a-button> </a-button>
</a-button-group> </a-button-group>
<a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20">
<a-button @click="addOrUpdate()" type="primary" class="smart-margin-left20" v-if="$privilege('oa:invoice:add')">
<template #icon> <template #icon>
<PlusOutlined /> <PlusOutlined />
</template> </template>
@@ -51,14 +52,14 @@
<TableOperator class="smart-margin-bottom5" v-model="columns" :tableId="TABLE_ID_CONST.BUSINESS.OA.ENTERPRISE_INVOICE" :refresh="ajaxQuery" /> <TableOperator class="smart-margin-bottom5" v-model="columns" :tableId="TABLE_ID_CONST.BUSINESS.OA.ENTERPRISE_INVOICE" :refresh="ajaxQuery" />
</a-row> </a-row>
<a-table :scroll="{ x: 1300 }" size="small" :dataSource="tableData" :columns="columns" rowKey="invoiceId" :pagination="false" bordered> <a-table :scroll="{ x: 1300 }" size="small" :dataSource="tableData" :columns="columns" rowKey="invoiceId" :pagination="false" bordered>
<template #bodyCell="{ text, record, index, column }"> <template #bodyCell="{ record, column }">
<template v-if="column.dataIndex === 'disabledFlag'"> <template v-if="column.dataIndex === 'disabledFlag'">
{{ record.disabledFlag ? '禁用' : '启用' }} {{ record.disabledFlag ? '禁用' : '启用' }}
</template> </template>
<template v-else-if="column.dataIndex === 'action'"> <template v-else-if="column.dataIndex === 'action'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="addOrUpdate(record)" type="link">编辑</a-button> <a-button @click="addOrUpdate(record)" type="link" v-if="$privilege('oa:invoice:update')">编辑</a-button>
<a-button @click="confirmDelete(record.invoiceId)" type="link" danger>删除</a-button> <a-button @click="confirmDelete(record.invoiceId)" type="link" danger v-if="$privilege('oa:invoice:delete')">删除</a-button>
</div> </div>
</template> </template>
</template> </template>

View File

@@ -8,8 +8,8 @@
* @Copyright 1024创新实验室 https://1024lab.net Since 2012 * @Copyright 1024创新实验室 https://1024lab.net Since 2012
--> -->
<template> <template>
<a-modal :open="visible" :title="form.invoiceId ? '编辑' : '添加'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.invoiceId ? '编辑' : '添加'" :width="700" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 12 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 4 }" :wrapper-col="{ span: 19 }">
<a-form-item label="开票抬头" name="invoiceHeads"> <a-form-item label="开票抬头" name="invoiceHeads">
<a-input v-model:value="form.invoiceHeads" placeholder="请输入开票抬头" /> <a-input v-model:value="form.invoiceHeads" placeholder="请输入开票抬头" />
</a-form-item> </a-form-item>

View File

@@ -1,6 +1,15 @@
<template> <template>
<a-modal :open="visible" title="添加" :width="700" forceRender ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 6 }"> :open="visible"
:title="form.enterpriseId ? '编辑' : '添加'"
:width="700"
forceRender
ok-text="确认"
cancel-text="取消"
@ok="onSubmit"
@cancel="onClose"
>
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 18 }">
<a-form-item label="企业名称" name="enterpriseName"> <a-form-item label="企业名称" name="enterpriseName">
<a-input v-model:value="form.enterpriseName" placeholder="请输入企业名称" /> <a-input v-model:value="form.enterpriseName" placeholder="请输入企业名称" />
</a-form-item> </a-form-item>

View File

@@ -30,15 +30,19 @@
</div> </div>
</a-page-header> </a-page-header>
</div> </div>
<a-card class="smart-margin-top10" size="small"> <a-card
class="smart-margin-top10"
size="small"
v-if="$privilege('oa:enterprise:queryEmployee') || $privilege('oa:bank:query') || $privilege('oa:invoice:query')"
>
<a-tabs> <a-tabs>
<a-tab-pane key="employee" tab="员工信息"> <a-tab-pane key="employee" tab="员工信息" v-if="$privilege('oa:enterprise:queryEmployee')">
<EmployeeList :enterpriseId="enterpriseId" /> <EmployeeList :enterpriseId="enterpriseId" />
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="bank" tab="银行信息"> <a-tab-pane key="bank" tab="银行信息" v-if="$privilege('oa:bank:query')">
<BankList :enterpriseId="enterpriseId" /> <BankList :enterpriseId="enterpriseId" />
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="invoice" tab="发票信息"> <a-tab-pane key="invoice" tab="发票信息" v-if="$privilege('oa:invoice:query')">
<InvoiceList :enterpriseId="enterpriseId" /> <InvoiceList :enterpriseId="enterpriseId" />
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="dataTracer" tab="变更记录"> <a-tab-pane key="dataTracer" tab="变更记录">

View File

@@ -75,7 +75,9 @@
{{ text ? '禁用' : '启用' }} {{ text ? '禁用' : '启用' }}
</template> </template>
<template v-if="column.dataIndex === 'enterpriseName'"> <template v-if="column.dataIndex === 'enterpriseName'">
<a @click="detail(record.enterpriseId)">{{ record.enterpriseName }}</a> <a-button type="link" @click="detail(record.enterpriseId)" :disabled="!$privilege('oa:enterprise:detail')">
{{ record.enterpriseName }}
</a-button>
</template> </template>
<template v-if="column.dataIndex === 'type'"> <template v-if="column.dataIndex === 'type'">
<span>{{ $smartEnumPlugin.getDescByValue('ENTERPRISE_TYPE_ENUM', text) }}</span> <span>{{ $smartEnumPlugin.getDescByValue('ENTERPRISE_TYPE_ENUM', text) }}</span>

View File

@@ -41,7 +41,7 @@
<a-table <a-table
size="small" size="small"
:scroll="{ x: 1000 }" :scroll="{ y: 800 }"
:loading="tableLoading" :loading="tableLoading"
bordered bordered
:dataSource="tableData" :dataSource="tableData"

View File

@@ -178,8 +178,8 @@
chosenClass: 'smart-ghost-class', //设置选中样式类名 chosenClass: 'smart-ghost-class', //设置选中样式类名
handle: '.handle', handle: '.handle',
onEnd: ({ oldIndex, newIndex }) => { onEnd: ({ oldIndex, newIndex }) => {
const oldRow = tableData.value.splice(oldIndex, 1)[0]; const oldRow = tableData.value.splice(oldIndex - 1, 1)[0];
tableData.value.splice(newIndex, 0, oldRow); tableData.value.splice(newIndex - 1, 0, oldRow);
}, },
}); });
} }

View File

@@ -9,7 +9,7 @@
--> -->
<template> <template>
<a-modal :open="visible" :title="form.dictDataId ? '编辑字典值' : '添加字典值'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.dictDataId ? '编辑字典值' : '添加字典值'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<br/> <br />
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 16 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 16 }">
<a-form-item label="字典项名称" name="dataLabel"> <a-form-item label="字典项名称" name="dataLabel">
<a-input v-model:value="form.dataLabel" placeholder="请输入 字典项名称" /> <a-input v-model:value="form.dataLabel" placeholder="请输入 字典项名称" />
@@ -21,7 +21,7 @@
<a-input-number style="width: 100%" v-model:value="form.sortOrder" :min="0" :max="1000" /> <a-input-number style="width: 100%" v-model:value="form.sortOrder" :min="0" :max="1000" />
</a-form-item> </a-form-item>
<a-form-item label="备注" name="remark"> <a-form-item label="备注" name="remark">
<textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none"></textarea> <a-textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none" />
</a-form-item> </a-form-item>
</a-form> </a-form>
</a-modal> </a-modal>

View File

@@ -33,14 +33,20 @@
<a-row class="smart-table-btn-block"> <a-row class="smart-table-btn-block">
<div class="smart-table-operate-block"> <div class="smart-table-operate-block">
<a-button @click="addOrUpdateData" type="primary"> <a-button @click="addOrUpdateData" type="primary" v-privilege="'support:dictData:add'">
<template #icon> <template #icon>
<PlusOutlined /> <PlusOutlined />
</template> </template>
新建 新建
</a-button> </a-button>
<a-button @click="confirmBatchDelete" type="primary" danger :disabled="selectedRowKeyList.length === 0"> <a-button
@click="confirmBatchDelete"
type="primary"
danger
:disabled="selectedRowKeyList.length === 0"
v-privilege="'support:dictData:delete'"
>
<template #icon> <template #icon>
<DeleteOutlined /> <DeleteOutlined />
</template> </template>
@@ -69,7 +75,7 @@
/> />
</template> </template>
<template v-if="column.dataIndex === 'action'"> <template v-if="column.dataIndex === 'action'">
<a-button @click="addOrUpdateData(record)" type="link">编辑</a-button> <a-button @click="addOrUpdateData(record)" type="link" v-privilege="'support:dictData:update'">编辑</a-button>
</template> </template>
</template> </template>
</a-table> </a-table>

View File

@@ -9,7 +9,7 @@
--> -->
<template> <template>
<a-modal :open="visible" :title="form.dictId ? '编辑字典' : '添加字典'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose"> <a-modal :open="visible" :title="form.dictId ? '编辑字典' : '添加字典'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
<br/> <br />
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 19 }"> <a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 19 }">
<a-form-item label="字典编码" name="dictCode"> <a-form-item label="字典编码" name="dictCode">
<a-input v-model:value="form.dictCode" placeholder="请输入编码" /> <a-input v-model:value="form.dictCode" placeholder="请输入编码" />
@@ -19,7 +19,7 @@
</a-form-item> </a-form-item>
<a-form-item label="备注" name="remark"> <a-form-item label="备注" name="remark">
<textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none"></textarea> <a-textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none"/>
</a-form-item> </a-form-item>
</a-form> </a-form>
</a-modal> </a-modal>

View File

@@ -47,7 +47,7 @@
<a-button <a-button
@click="confirmBatchDelete" @click="confirmBatchDelete"
v-privilege="'support:dict:batchDelete'" v-privilege="'support:dict:delete'"
type="primary" type="primary"
danger danger
:disabled="selectedRowKeyList.length === 0" :disabled="selectedRowKeyList.length === 0"
@@ -87,7 +87,7 @@
</template> </template>
<template v-else-if="column.dataIndex === 'action'"> <template v-else-if="column.dataIndex === 'action'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button @click="addOrUpdateDict(record)" v-privilege="'support:dict:edit'" type="link">编辑</a-button> <a-button @click="addOrUpdateDict(record)" v-privilege="'support:dict:update'" type="link">编辑</a-button>
</div> </div>
</template> </template>
</template> </template>

View File

@@ -15,6 +15,7 @@
:open="visible" :open="visible"
:width="600" :width="600"
@close="onClose" @close="onClose"
destroyOnClose
> >
<a-form ref="formRef" :labelCol="{ span: labelColSpan }" :labelWrap="true" :model="form" :rules="rules"> <a-form ref="formRef" :labelCol="{ span: labelColSpan }" :labelWrap="true" :model="form" :rules="rules">
<a-form-item label="菜单类型" name="menuType"> <a-form-item label="菜单类型" name="menuType">
@@ -65,7 +66,7 @@
</a-form-item> </a-form-item>
</template> </template>
<!-- 目录 菜单 end --> <!-- 目录 菜单 end -->
<!-- 按钮 start --> <!-- 功能点 start -->
<template v-if="form.menuType === MENU_TYPE_ENUM.POINTS.value"> <template v-if="form.menuType === MENU_TYPE_ENUM.POINTS.value">
<a-form-item label="功能点名称" name="menuName"> <a-form-item label="功能点名称" name="menuName">
<a-input v-model:value="form.menuName" placeholder="请输入功能点名称" /> <a-input v-model:value="form.menuName" placeholder="请输入功能点名称" />
@@ -90,7 +91,7 @@
<a-input v-model:value="form.apiPerms" placeholder="请输入后端权限" /> <a-input v-model:value="form.apiPerms" placeholder="请输入后端权限" />
</a-form-item> </a-form-item>
</template> </template>
<!-- 按钮 end --> <!-- 功能点 end -->
<a-form-item label="排序" name="sort" help="值越小越靠前"> <a-form-item label="排序" name="sort" help="值越小越靠前">
<a-input-number v-model:value="form.sort" :min="0" placeholder="请输入排序" style="width: 100px" /> <a-input-number v-model:value="form.sort" :min="0" placeholder="请输入排序" style="width: 100px" />
</a-form-item> </a-form-item>

View File

@@ -13,12 +13,13 @@ export const columns = ref([
title: '名称', title: '名称',
dataIndex: 'menuName', dataIndex: 'menuName',
key: 'ID', key: 'ID',
width: 200, width: 220,
}, },
{ {
title: '类型', title: '类型',
dataIndex: 'menuType', dataIndex: 'menuType',
width: 80, width: 100,
align: "center"
}, },
{ {
title: '图标', title: '图标',
@@ -53,6 +54,7 @@ export const columns = ref([
{ {
title: '操作', title: '操作',
dataIndex: 'operate', dataIndex: 'operate',
width: 100, width: 170,
align: "center"
}, },
]); ]);

View File

@@ -88,7 +88,7 @@
<a-table <a-table
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }" :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
size="small" size="small"
:scroll="{ x: 1000 }" :scroll="{ y: 800 }"
:defaultExpandAllRows="true" :defaultExpandAllRows="true"
:dataSource="tableData" :dataSource="tableData"
bordered bordered
@@ -132,6 +132,15 @@
<template v-if="column.dataIndex === 'operate'"> <template v-if="column.dataIndex === 'operate'">
<div class="smart-table-operate"> <div class="smart-table-operate">
<a-button
v-if="record.menuType !== MENU_TYPE_ENUM.POINTS.value"
v-privilege="'system:menu:update'"
type="link"
size="small"
@click="showAddSub(record)"
>
添加下级
</a-button>
<a-button v-privilege="'system:menu:update'" type="link" size="small" @click="showDrawer(record)">编辑</a-button> <a-button v-privilege="'system:menu:update'" type="link" size="small" @click="showDrawer(record)">编辑</a-button>
<a-button v-privilege="'system:menu:batchDelete'" danger type="link" @click="singleDelete(record)">删除</a-button> <a-button v-privilege="'system:menu:batchDelete'" danger type="link" @click="singleDelete(record)">删除</a-button>
</div> </div>
@@ -157,6 +166,7 @@
import { smartSentry } from '/@/lib/smart-sentry'; import { smartSentry } from '/@/lib/smart-sentry';
import TableOperator from '/@/components/support/table-operator/index.vue'; import TableOperator from '/@/components/support/table-operator/index.vue';
import { TABLE_ID_CONST } from '/@/constants/support/table-id-const'; import { TABLE_ID_CONST } from '/@/constants/support/table-id-const';
import { MENU_TYPE_ENUM } from '/@/constants/system/menu-const';
// ------------------------ 表格渲染 ------------------------ // ------------------------ 表格渲染 ------------------------
const menuTypeColorArray = ['red', 'blue', 'orange', 'green']; const menuTypeColorArray = ['red', 'blue', 'orange', 'green'];
@@ -256,4 +266,13 @@
function showDrawer(rowData) { function showDrawer(rowData) {
menuOperateModal.value.showDrawer(rowData); menuOperateModal.value.showDrawer(rowData);
} }
function showAddSub(rowData) {
const subData = {
parentId: rowData.menuId,
menuType: rowData.menuType === MENU_TYPE_ENUM.CATALOG.value ? MENU_TYPE_ENUM.MENU.value : MENU_TYPE_ENUM.POINTS.value,
contextMenuId: rowData.menuType === MENU_TYPE_ENUM.MENU.value ? rowData.menuId : undefined,
};
menuOperateModal.value.showDrawer(subData);
}
</script> </script>

View File

@@ -531,7 +531,7 @@ CREATE TABLE `t_menu` (
`update_user_id` bigint(0) NULL DEFAULT NULL COMMENT '更新人', `update_user_id` bigint(0) NULL DEFAULT NULL COMMENT '更新人',
`update_time` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '更新时间', `update_time` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '更新时间',
PRIMARY KEY (`menu_id`) USING BTREE PRIMARY KEY (`menu_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 252 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '菜单表' ROW_FORMAT = Dynamic; ) ENGINE = InnoDB AUTO_INCREMENT = 268 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '菜单表' ROW_FORMAT = Dynamic;
-- ---------------------------- -- ----------------------------
-- Records of t_menu -- Records of t_menu
@@ -593,10 +593,10 @@ INSERT INTO `t_menu` VALUES (154, '获取缓存key', 3, 133, NULL, NULL, NULL, 1
INSERT INTO `t_menu` VALUES (156, '查看结果', 3, 117, NULL, NULL, NULL, 1, 'support:reload:result', 'support:reload:result', NULL, 117, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:17:23', 1, '2023-10-07 14:31:47'); INSERT INTO `t_menu` VALUES (156, '查看结果', 3, 117, NULL, NULL, NULL, 1, 'support:reload:result', 'support:reload:result', NULL, 117, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:17:23', 1, '2023-10-07 14:31:47');
INSERT INTO `t_menu` VALUES (157, '单号生成', 3, 130, NULL, NULL, NULL, 1, 'support:serialNumber:generate', 'support:serialNumber:generate', NULL, 130, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:21:06', 1, '2023-10-07 18:22:46'); INSERT INTO `t_menu` VALUES (157, '单号生成', 3, 130, NULL, NULL, NULL, 1, 'support:serialNumber:generate', 'support:serialNumber:generate', NULL, 130, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:21:06', 1, '2023-10-07 18:22:46');
INSERT INTO `t_menu` VALUES (158, '生成记录', 3, 130, NULL, NULL, NULL, 1, 'support:serialNumber:record', 'support:serialNumber:record', NULL, 130, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:21:34', 1, '2023-10-07 18:22:55'); INSERT INTO `t_menu` VALUES (158, '生成记录', 3, 130, NULL, NULL, NULL, 1, 'support:serialNumber:record', 'support:serialNumber:record', NULL, 130, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:21:34', 1, '2023-10-07 18:22:55');
INSERT INTO `t_menu` VALUES (159, '新建', 3, 110, NULL, NULL, NULL, 1, 'support:dict:add', 'support:dict:add', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:23:51', 1, '2023-10-07 18:18:24'); INSERT INTO `t_menu` VALUES (159, '查询', 3, 110, NULL, NULL, NULL, 1, 'support:dict:query', 'support:dict:query', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:23:51', 1, '2025-04-08 19:42:25');
INSERT INTO `t_menu` VALUES (160, '编辑', 3, 110, NULL, NULL, NULL, 1, 'support:dict:edit', 'support:dict:edit', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:24:05', 1, '2023-10-07 18:19:17'); INSERT INTO `t_menu` VALUES (160, '添加', 3, 110, NULL, NULL, NULL, 1, 'support:dict:add', 'support:dict:add', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:24:05', 1, '2025-04-08 19:43:02');
INSERT INTO `t_menu` VALUES (161, '批量删除', 3, 110, NULL, NULL, NULL, 1, 'support:dict:delete', 'support:dict:delete', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:24:34', 1, '2023-10-07 18:19:39'); INSERT INTO `t_menu` VALUES (161, '更新', 3, 110, NULL, NULL, NULL, 1, 'support:dict:update', 'support:dict:update', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:24:34', 1, '2025-04-08 19:43:34');
INSERT INTO `t_menu` VALUES (162, '刷新缓存', 3, 110, NULL, NULL, NULL, 1, 'support:dict:refresh', 'support:dict:refresh', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:24:55', 1, '2023-10-07 18:18:37'); INSERT INTO `t_menu` VALUES (162, '删除', 3, 110, NULL, NULL, NULL, 1, 'support:dict:delete', 'support:dict:delete', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:24:55', 1, '2025-04-08 19:43:52');
INSERT INTO `t_menu` VALUES (163, '新建', 3, 109, NULL, NULL, NULL, 1, 'support:config:add', 'support:config:add', NULL, 109, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:26:56', 1, '2023-10-07 18:16:17'); INSERT INTO `t_menu` VALUES (163, '新建', 3, 109, NULL, NULL, NULL, 1, 'support:config:add', 'support:config:add', NULL, 109, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:26:56', 1, '2023-10-07 18:16:17');
INSERT INTO `t_menu` VALUES (164, '编辑', 3, 109, NULL, NULL, NULL, 1, 'support:config:update', 'support:config:update', NULL, 109, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:27:07', 1, '2023-10-07 18:16:24'); INSERT INTO `t_menu` VALUES (164, '编辑', 3, 109, NULL, NULL, NULL, 1, 'support:config:update', 'support:config:update', NULL, 109, 0, NULL, 0, 1, 0, 0, 1, '2022-10-15 23:27:07', 1, '2023-10-07 18:16:24');
INSERT INTO `t_menu` VALUES (165, '查询', 3, 47, NULL, NULL, NULL, 1, 'goods:query', 'goods:query', NULL, 47, 0, NULL, 0, 1, 0, 0, 1, '2022-10-16 19:55:39', 1, '2023-10-07 13:58:28'); INSERT INTO `t_menu` VALUES (165, '查询', 3, 47, NULL, NULL, NULL, 1, 'goods:query', 'goods:query', NULL, 47, 0, NULL, 0, 1, 0, 0, 1, '2022-10-16 19:55:39', 1, '2023-10-07 13:58:28');
@@ -657,6 +657,23 @@ INSERT INTO `t_menu` VALUES (233, 'knife4j文档', 2, 218, 4, '/knife4j', NULL,
INSERT INTO `t_menu` VALUES (234, 'swagger文档', 2, 218, 5, '/swagger', 'http://localhost:1024/swagger-ui/index.html', 1, NULL, NULL, 'ApiOutlined', NULL, 1, 'http://localhost:1024/swagger-ui/index.html', 1, 1, 0, 0, 1, '2024-07-02 20:35:43', 1, '2024-07-08 13:49:26'); INSERT INTO `t_menu` VALUES (234, 'swagger文档', 2, 218, 5, '/swagger', 'http://localhost:1024/swagger-ui/index.html', 1, NULL, NULL, 'ApiOutlined', NULL, 1, 'http://localhost:1024/swagger-ui/index.html', 1, 1, 0, 0, 1, '2024-07-02 20:35:43', 1, '2024-07-08 13:49:26');
INSERT INTO `t_menu` VALUES (250, '三级等保设置', 2, 213, 1, '/support/level3protect/level3-protect-config-index', '/support/level3protect/level3-protect-config-index.vue', 1, NULL, NULL, 'SafetyOutlined', NULL, 0, NULL, 1, 1, 0, 0, 44, '2024-08-13 11:41:02', 44, '2024-08-13 11:58:12'); INSERT INTO `t_menu` VALUES (250, '三级等保设置', 2, 213, 1, '/support/level3protect/level3-protect-config-index', '/support/level3protect/level3-protect-config-index.vue', 1, NULL, NULL, 'SafetyOutlined', NULL, 0, NULL, 1, 1, 0, 0, 44, '2024-08-13 11:41:02', 44, '2024-08-13 11:58:12');
INSERT INTO `t_menu` VALUES (251, '敏感数据脱敏', 2, 213, 3, '/support/level3protect/data-masking-list', '/support/level3protect/data-masking-list.vue', 1, NULL, NULL, 'FileProtectOutlined', NULL, 0, NULL, 1, 1, 0, 0, 44, '2024-08-13 11:58:00', 44, '2024-08-13 11:59:49'); INSERT INTO `t_menu` VALUES (251, '敏感数据脱敏', 2, 213, 3, '/support/level3protect/data-masking-list', '/support/level3protect/data-masking-list.vue', 1, NULL, NULL, 'FileProtectOutlined', NULL, 0, NULL, 1, 1, 0, 0, 44, '2024-08-13 11:58:00', 44, '2024-08-13 11:59:49');
INSERT INTO `t_menu` VALUES (252, '启用/禁用', 3, 110, NULL, NULL, NULL, 1, 'support:dict:updateDisabled', 'support:dict:updateDisabled', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2025-04-08 19:44:12', 1, '2025-04-08 19:46:03');
INSERT INTO `t_menu` VALUES (253, '查询字典数据', 3, 110, NULL, NULL, NULL, 1, 'support:dictData:query', 'support:dictData:query', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2025-04-08 19:46:47', NULL, '2025-04-08 19:46:47');
INSERT INTO `t_menu` VALUES (254, '添加字典数据', 3, 110, NULL, NULL, NULL, 1, 'support:dictData:add', 'support:dictData:add', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2025-04-08 19:48:00', NULL, '2025-04-08 19:48:00');
INSERT INTO `t_menu` VALUES (255, '更新字典数据', 3, 110, NULL, NULL, NULL, 1, 'support:dictData:update', 'support:dictData:update', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2025-04-08 19:48:19', NULL, '2025-04-08 19:48:19');
INSERT INTO `t_menu` VALUES (256, '删除字典数据', 3, 110, NULL, NULL, NULL, 1, 'support:dictData:delete', 'support:dictData:delete', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2025-04-08 19:48:38', NULL, '2025-04-08 19:48:38');
INSERT INTO `t_menu` VALUES (257, '启用/禁用字典数据', 3, 110, NULL, NULL, NULL, 1, 'support:dictData:updateDisabled', 'support:dictData:updateDisabled', NULL, 110, 0, NULL, 0, 1, 0, 0, 1, '2025-04-08 19:48:57', NULL, '2025-04-08 19:48:57');
INSERT INTO `t_menu` VALUES (258, '查询企业员工', 3, 145, NULL, NULL, NULL, 1, 'oa:enterprise:queryEmployee', 'oa:enterprise:queryEmployee', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:11:46', 75, '2025-04-08 21:12:24');
INSERT INTO `t_menu` VALUES (259, '查询银行信息', 3, 145, NULL, NULL, NULL, 1, 'oa:bank:query', 'oa:bank:query', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:12:40', NULL, '2025-04-08 21:12:40');
INSERT INTO `t_menu` VALUES (260, '查询发票信息', 3, 145, NULL, NULL, NULL, 1, 'oa:invoice:query', 'oa:invoice:query', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:12:56', NULL, '2025-04-08 21:12:56');
INSERT INTO `t_menu` VALUES (261, '添加企业员工', 3, 145, NULL, NULL, NULL, 1, 'oa:enterprise:addEmployee', 'oa:enterprise:addEmployee', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:35:34', NULL, '2025-04-08 21:35:34');
INSERT INTO `t_menu` VALUES (262, '删除企业员工', 3, 145, NULL, NULL, NULL, 1, 'oa:enterprise:deleteEmployee', 'oa:enterprise:deleteEmployee', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:40:17', NULL, '2025-04-08 21:40:17');
INSERT INTO `t_menu` VALUES (263, '添加银行信息', 3, 145, NULL, NULL, NULL, 1, 'oa:bank:add', 'oa:bank:add', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:45:44', NULL, '2025-04-08 21:45:44');
INSERT INTO `t_menu` VALUES (264, '更新银行信息', 3, 145, NULL, NULL, NULL, 1, 'oa:bank:update', 'oa:bank:update', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:46:02', NULL, '2025-04-08 21:46:02');
INSERT INTO `t_menu` VALUES (265, '删除银行信息', 3, 145, NULL, NULL, NULL, 1, 'oa:bank:delete', 'oa:bank:delete', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:46:12', NULL, '2025-04-08 21:46:12');
INSERT INTO `t_menu` VALUES (266, '添加发票信息', 3, 145, NULL, NULL, NULL, 1, 'oa:invoice:add', 'oa:invoice:add', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:46:30', NULL, '2025-04-08 21:46:30');
INSERT INTO `t_menu` VALUES (267, '更新发票信息', 3, 145, NULL, NULL, NULL, 1, 'oa:invoice:update', 'oa:invoice:update', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:46:47', NULL, '2025-04-08 21:46:47');
INSERT INTO `t_menu` VALUES (268, '删除发票信息', 3, 145, NULL, NULL, NULL, 1, 'oa:invoice:delete', 'oa:invoice:delete', NULL, 145, 0, NULL, 0, 1, 0, 0, 75, '2025-04-08 21:46:59', NULL, '2025-04-08 21:46:59');
-- ---------------------------- -- ----------------------------
-- Table structure for t_message -- Table structure for t_message