Sfoglia il codice sorgente

bug(4105,4091)

zhangxc 5 anni fa
parent
commit
50e2e0fff6
3 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  1. 4 0
      src/css/qcListPerson.less
  2. 1 0
      src/js/api.js
  3. 1 1
      src/js/qcListDept.js

+ 4 - 0
src/css/qcListPerson.less

@@ -156,6 +156,10 @@ table{
     box-sizing: border-box;
     cursor: pointer;
 }
+.selectDoctor{
+    min-width: 120px;
+    width: auto;
+}
 .selectDept{
     width: 160px;
 }

+ 1 - 0
src/js/api.js

@@ -11,6 +11,7 @@ const api = {
     recordScore:'/qc/behospitalInfo/analyze',
     getDeptList:'/bas/dept/getList',
     getDeptListUser:'/bas/dept/listForUser',
+    getDeptListDept:'/bas/dept/getListUser',
 }
 module.exports = {
     api

+ 1 - 1
src/js/qcListDept.js

@@ -246,7 +246,7 @@ $('.selectDept').on("click", function(e){
 //获取科室列表
 getDeptList()
 function getDeptList(){
-    post(api.getDeptListUser,{inputStr:""}).then(res =>{
+    post(api.getDeptListDept,{inputStr:""}).then(res =>{
         if(res.data.code == '0'){
            const  deptList = res.data.data
            rendeDeptList(deptList)