@@ -156,6 +156,10 @@ table{
box-sizing: border-box;
cursor: pointer;
}
+.selectDoctor{
+ min-width: 120px;
+ width: auto;
+}
.selectDept{
width: 160px;
@@ -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
@@ -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)