spring
2025-03-06 5fc8d3401b000652b50b04725c7144ae71b4773b
实验室资质删除bug
已修改2个文件
4 ■■■■ 文件已修改
src/api/structural/laboratory.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/structural/capabilityAndLaboratory/laboratory/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/structural/laboratory.js
@@ -20,7 +20,7 @@
export function delCertificationDetail(query) {
  return request({
    url: '/certification/delCertificationDetail',
    method: 'post',
    method: 'delete',
    params: query
  })
}
src/views/structural/capabilityAndLaboratory/laboratory/index.vue
@@ -320,7 +320,7 @@
      this.selection.forEach((item) => {
        delIds.push(item.id);
      });
      delCertificationDetail(delIds).then((res) => {
      delCertificationDetail({ ids: delIds.join(',') }).then((res) => {
        if (res.code !== 200) return;
        this.refreshTable();
        this.$message.success("删除成功");