|
|
@ -1313,6 +1313,7 @@ export default { |
|
|
|
|
|
|
|
|
// 查询档案人员 |
|
|
// 查询档案人员 |
|
|
async getPrList(){ |
|
|
async getPrList(){ |
|
|
|
|
|
let ret = false |
|
|
if(!this.query.customerOrgIds || this.query.customerOrgIds.length == 0){ |
|
|
if(!this.query.customerOrgIds || this.query.customerOrgIds.length == 0){ |
|
|
this.$message.warning("请选择单位或部门") |
|
|
this.$message.warning("请选择单位或部门") |
|
|
return false |
|
|
return false |
|
|
@ -1357,6 +1358,13 @@ export default { |
|
|
body.endDate = moment(new Date(body.endDate)).format('yyyy-MM-DD') |
|
|
body.endDate = moment(new Date(body.endDate)).format('yyyy-MM-DD') |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const loading = this.$loading({ |
|
|
|
|
|
lock: true, |
|
|
|
|
|
text: "Loading", |
|
|
|
|
|
spinner: "el-icon-loading", |
|
|
|
|
|
background: "rgba(0, 0, 0, 0.7)", |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
try { |
|
|
try { |
|
|
let res = await postapi('/api/patientregister/getpatientregisterimportlist',body) |
|
|
let res = await postapi('/api/patientregister/getpatientregisterimportlist',body) |
|
|
if(res.code != -1){ |
|
|
if(res.code != -1){ |
|
|
@ -1364,15 +1372,17 @@ export default { |
|
|
if(res.data.length == 0){ |
|
|
if(res.data.length == 0){ |
|
|
this.$message.warning("没有符合条件的数据") |
|
|
this.$message.warning("没有符合条件的数据") |
|
|
}else{ |
|
|
}else{ |
|
|
return true |
|
|
|
|
|
|
|
|
ret = true |
|
|
} |
|
|
} |
|
|
}else{ |
|
|
|
|
|
return false |
|
|
|
|
|
} |
|
|
} |
|
|
} catch (error) { |
|
|
} catch (error) { |
|
|
return false |
|
|
|
|
|
|
|
|
// |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
loading.close() |
|
|
|
|
|
|
|
|
|
|
|
return ret |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1565,7 +1575,7 @@ export default { |
|
|
@import '../../assets/css/global_card.css'; |
|
|
@import '../../assets/css/global_card.css'; |
|
|
@import '../../assets/css/global_dialog.css'; |
|
|
@import '../../assets/css/global_dialog.css'; |
|
|
@import '../../assets/css/global_form.css'; |
|
|
@import '../../assets/css/global_form.css'; |
|
|
/* @import '../../assets/css/global_input.css'; */ |
|
|
|
|
|
|
|
|
@import '../../assets/css/global_input.css'; |
|
|
@import '../../assets/css/global_table.css'; |
|
|
@import '../../assets/css/global_table.css'; |
|
|
@import '../../assets/css/global.css'; |
|
|
@import '../../assets/css/global.css'; |
|
|
|
|
|
|
|
|
@ -1585,4 +1595,11 @@ export default { |
|
|
width: 50px; |
|
|
width: 50px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* type=number 显示微调按钮 */ |
|
|
|
|
|
::v-deep input[type="number"]::-webkit-inner-spin-button, |
|
|
|
|
|
input[type="number"]::-webkit-outer-spin-button { |
|
|
|
|
|
-webkit-appearance: button !important; |
|
|
|
|
|
margin: 0 -12px 0 0 !important; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |