zhuo
2025-03-13 13c253f4de635d9ea7ee369b6c74be244bc83a85
人员组织树查询修改, 成品下单导出修改
已修改4个文件
10 ■■■■■ 文件已修改
src/api/business/productOrder.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/cnas/personal/personalList.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/business/inspectionReview/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/business/productOrder/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/business/productOrder.js
@@ -22,7 +22,7 @@
  return request({
    url: '/insOrder/rawAllInsOrderExport',
    method: 'get',
    data: query,
    params: query,
    responseType: "blob"
  })
}
src/api/cnas/personal/personalList.js
@@ -45,7 +45,7 @@
// 删除部门
export function delDepartmentLims(query) {
  return request({
    url: "/department/delDepartmentLims",
    url: "/personBasicInfo/delDepartmentLims",
    method: "delete",
    params: query
  });
@@ -53,7 +53,7 @@
// 添加部门
export function addDepartmentLims(query) {
  return request({
    url: "/department/addDepartmentLims",
    url: "/personBasicInfo/addDepartmentLims",
    method: "post",
    data: query
  });
src/views/business/inspectionReview/index.vue
@@ -374,6 +374,7 @@
/*      if (!row.tempUrlPdf) return this.$message.warning('文件未上传')
      this.currentInfo = row
      this.lookDialogVisible = true*/
      console.log(this.javaApi)
      this.currentInfo = row;
      let fileName = row.url
      let fileType = "docx"
src/views/business/productOrder/index.vue
@@ -877,7 +877,8 @@
    },
    // 导出记录
    downLoad() {
      rawAllInsOrderExport({ ...this.entity }).then(res => {
      const params = { ...this.entity, state: this.tabList[this.tabIndex].value }
      rawAllInsOrderExport({ ...params }).then(res => {
        const blob = new Blob([res], { type: 'application/octet-stream' });
        this.$download.saveAs(blob, '委托检测信息导出.xlsx');
      }).catch(err => {