|
@@ -68,7 +68,7 @@
|
|
|
import { ref, getCurrentInstance, reactive } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
import { projectApi } from "@/api/business/project.js";
|
|
|
- import { listDept } from "@/api/system/user";
|
|
|
+ import { listDeptNoAuth } from "@/api/system/user";
|
|
|
// import dayjs from 'dayjs/esm/index'
|
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
@@ -159,7 +159,7 @@
|
|
|
reportList.value = res.data.records[0];
|
|
|
total.value = res.data.total;
|
|
|
var deptItem = []
|
|
|
- listDept().then((res)=>{//部门名称
|
|
|
+ listDeptNoAuth().then((res)=>{//部门名称
|
|
|
deptItem = res.data
|
|
|
for(let i=0;i<reportList.value.length;i++){
|
|
|
reportList.value[i].deptName = deptItem.find(item => item.deptId == reportList.value[i].deptId).deptName
|