|
|
|
@ -1,8 +1,8 @@ |
|
|
|
<template> |
|
|
|
<div> |
|
|
|
<el-card> |
|
|
|
<div class="publiccss">体检收费</div> |
|
|
|
<div style="display: flex; width: 100%;margin-top:20px"> |
|
|
|
<div slot="header">体检收费</div> |
|
|
|
<div style="display: flex; width: 100%;"> |
|
|
|
<!-- 查询条件 与列表 --> |
|
|
|
<div class="queryDivClass"> |
|
|
|
<!-- 查询条件 --> |
|
|
|
@ -34,7 +34,7 @@ |
|
|
|
<!-- 列表 --> |
|
|
|
<div class="prListDivClass"> |
|
|
|
<el-table :data="patientList" border highlight-current-row |
|
|
|
:height="(window.pageHeight > 600 ? (window.pageHeight - 270) : 310)" @row-click="rowClick" size="small"> |
|
|
|
:height="(window.pageHeight > 600 ? (window.pageHeight - 230) : 370)" @row-click="rowClick" size="small"> |
|
|
|
<!-- |
|
|
|
<el-table-column prop="patientRegisterId" label="体检记录ID" /> |
|
|
|
--> |
|
|
|
@ -900,6 +900,10 @@ export default { |
|
|
|
this.$message.info("人员信息尚未保存,不可执行此操作!"); |
|
|
|
return; |
|
|
|
} |
|
|
|
if(!this.$peisAPI) { |
|
|
|
this.$message.info("此功能,需要在壳客户端才可运行!") |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
let token = localStorage.getItem('token'); |
|
|
|
let user = localStorage.getItem('user'); |
|
|
|
@ -1074,54 +1078,19 @@ export default { |
|
|
|
}; |
|
|
|
</script> |
|
|
|
<style scoped> |
|
|
|
::v-deep .el-form-item { |
|
|
|
margin-bottom: 1px; |
|
|
|
} |
|
|
|
|
|
|
|
::v-deep .el-table--small .el-table__cell { |
|
|
|
padding: 0px 0; |
|
|
|
} |
|
|
|
@import '../../assets/css/global_button.css'; |
|
|
|
@import '../../assets/css/global_card.css'; |
|
|
|
@import '../../assets/css/global_dialog.css'; |
|
|
|
@import '../../assets/css/global_form.css'; |
|
|
|
@import '../../assets/css/global_input.css'; |
|
|
|
@import '../../assets/css/global_table.css'; |
|
|
|
@import '../../assets/css/global.css'; |
|
|
|
|
|
|
|
|
|
|
|
/* 输入框相关设置*/ |
|
|
|
::v-deep .el-input__inner { |
|
|
|
padding-left: 2px; |
|
|
|
padding-right: 15px; |
|
|
|
} |
|
|
|
::v-deep .el-input__icon{ |
|
|
|
width: 15px; /* 输入框下拉箭头或清除图标 默认 25 */ |
|
|
|
} |
|
|
|
|
|
|
|
::v-deep .el-icon-date:before { |
|
|
|
content: ""; /* 去掉日期控件前面的图标 */ |
|
|
|
} |
|
|
|
|
|
|
|
::v-deep input[type="number"]::-webkit-inner-spin-button, |
|
|
|
input[type="number"]::-webkit-outer-spin-button { |
|
|
|
-webkit-appearance: none !important; |
|
|
|
margin: 0 !important; |
|
|
|
} |
|
|
|
|
|
|
|
::v-deep .el-table th.el-table__cell { |
|
|
|
text-align: center; |
|
|
|
padding-left: 1px; |
|
|
|
padding-right: 1px; |
|
|
|
} |
|
|
|
|
|
|
|
::v-deep .el-table td.el-table__cell { |
|
|
|
padding-left: 1px; |
|
|
|
padding-right: 1px; |
|
|
|
} |
|
|
|
|
|
|
|
::v-deep .el-table .cell { |
|
|
|
padding-left: 1px; |
|
|
|
padding-right: 1px; |
|
|
|
} |
|
|
|
|
|
|
|
.queryDivClass { |
|
|
|
display: block; |
|
|
|
width: v-bind("(window.pageWidth > 600 ? (window.pageWidth - 120 - 80) / 2 : 200) + 'px'"); |
|
|
|
height: v-bind("(window.pageHeight > 600 ? (window.pageHeight - 190) : 410) + 'px'"); |
|
|
|
width: v-bind("(window.pageWidth > 600 ? (window.pageWidth - 110 - 50) / 2 : 200) + 'px'"); |
|
|
|
height: v-bind("(window.pageHeight > 600 ? (window.pageHeight - 150) : 450) + 'px'"); |
|
|
|
} |
|
|
|
|
|
|
|
.query { |
|
|
|
@ -1129,13 +1098,13 @@ input[type="number"]::-webkit-outer-spin-button { |
|
|
|
} |
|
|
|
|
|
|
|
.prListDivClass { |
|
|
|
height: v-bind("(window.pageHeight > 600 ? (window.pageHeight - 290) : 310) + 'px'"); |
|
|
|
height: v-bind("(window.pageHeight > 600 ? (window.pageHeight - 250) : 350) + 'px'"); |
|
|
|
} |
|
|
|
|
|
|
|
.btnDivClass { |
|
|
|
display: block; |
|
|
|
width: 110px; |
|
|
|
margin-left: 5px; |
|
|
|
width: 100px; |
|
|
|
margin-left: 10px; |
|
|
|
margin-top: 180px; |
|
|
|
} |
|
|
|
|
|
|
|
@ -1144,6 +1113,6 @@ input[type="number"]::-webkit-outer-spin-button { |
|
|
|
} |
|
|
|
|
|
|
|
.btnClass { |
|
|
|
width: 110px; |
|
|
|
width: 100px; |
|
|
|
} |
|
|
|
</style> |