licp
2024-04-19 e04fbe73f7785155bffe3db30a7ead37f9200f06
src/assets/api/controller.js
@@ -16,7 +16,10 @@
      sampleOrder,
    insOrderPlan,
    insReport,
    warehouse
    warehouse,
    department,
    report,
    certification,
   }
}
@@ -41,6 +44,7 @@
   addCustom: "/user/addCustom", //新增客户信息
   getUserNow: "/user/getUserNow", //获取当前登录的客户信息
   getUserInfo: "/user/getUserInfo", //获取当前登录的用户信息
  upUserPassword: "/user/upUserPassword", //修改用户密码
}
const dataReporting = {
@@ -83,6 +87,7 @@
   upEnum: "/enum/upEnum", //修改枚举
   delEnum: "/enum/delEnum", //删除枚举
   selectEnumByCategory: "/enum/selectEnumByCategory", //通过分类查询枚举
  getDic: "/enum/getDic", //获取数据字典的分类
}
const capacityScope = {
@@ -128,6 +133,8 @@
  selectInsOrderTemplate: "/insOrder/selectInsOrderTemplate", //查询检验单模板
  selectInsOrderTemplateById: "/insOrder/selectInsOrderTemplateById", //通过检验单模板id获取检验单模板内容
  delInsOrderTemplate: "/insOrder/delInsOrderTemplate", //删除检验单模板
   selectSampleAndProductByOrderId: "/insOrder/selectSampleAndProductByOrderId", //通过检验单查询检验数据(数据查看)
   costStatistics: "/insOrder/costStatistics", //费用统计
}
const sampleOrder = {
@@ -182,9 +189,46 @@
const insReport = {
  pageInsReport: "/insReport/pageInsReport", //查询检验报告数据
  wordToHtml: "/insReport/wordToHtml", //Word转HTML
  inReport: "/insReport/inReport", //报告上传
  upReportUrl: "/insReport/upReportUrl", //报告还原
  writeReport: "/insReport/writeReport", //报告提交
  examineReport: "/insReport/examineReport", //报告审核
}
const warehouse = {
  addWarehouse: "/warehouse/addWarehouse", //添加仓库
  selectWarehouse: "/warehouse/selectWarehouse", //查询仓库
  upWarehouse: "/warehouse/upWarehouse", //修改仓库
  delWarehouse: "/warehouse/delWarehouse", //删除仓库
  addShelf: "/warehouse/addShelf", //添加货架
  upShelf: "/warehouse/upShelf", //修改货架
  delShelf: "/warehouse/delShelf", //删除货架
  getWarehouse: "/warehouse/getWarehouse", //查询货架下的存放信息
  inWarehouse: "/warehouse/inWarehouse", //样品入库
  outWarehouse: "/warehouse/outWarehouse", //样品出库
  getSampleRecord: "/warehouse/getSampleRecord", //查询样品详细记录
  searchSampleId: "/warehouse/searchSampleId", //通过样品编号进行检索
}
const department = {
  selectDepartment: "/department/selectDepartment", //人员架构树
  addDepartment: "/department/addDepartment", //添加部门
  delDepartment: "/department/delDepartment", //删除部门
  showUserById: "/department/showUserById", //根据选择的树展示相关的人员
}
const report = {
  businessStatisticsByDay: "/report/businessStatisticsByDay", //每日业务统计
  calendarWorkByWeek: "/report/calendarWorkByWeek", //首页-->日历任务图
  addSchedule: "/report/addSchedule", //首页-->添加日程
  ScheduleByMe: "/report/ScheduleByMe", //首页-->我的日程
  testProductByDay: "/report/testProductByDay", //首检测项目统计
}
const certification = {
  getCertificationDetail:"/certification/getCertificationDetail",//查询资质明细列表
  addCertificationDetail:"/certification/addCertificationDetail",//添加资质明细列表
  delCertificationDetail:"certification/delCertificationDetail",//删除资质明细列表
}