``` refactor(db): 移除SQL语句中的public schema前缀
This commit is contained in:
@@ -110,7 +110,7 @@ import { getCurrentInstance, ref, watch, computed } from 'vue';
|
||||
import { Refresh } from '@element-plus/icons-vue';
|
||||
import { patientInfo } from '../../store/patient.js';
|
||||
import { getBloodTransfusion } from './api';
|
||||
import { getOrgList } from '../../../../doctorstation/components/api.js';
|
||||
import { getOrgList } from '@/views/doctorstation/components/api.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ import { getCurrentInstance, ref, watch, computed } from 'vue';
|
||||
import { Refresh } from '@element-plus/icons-vue';
|
||||
import { patientInfo } from '../../store/patient.js';
|
||||
import { getCheck } from './api';
|
||||
import { getOrgList } from '../../../../doctorstation/components/api.js';
|
||||
import { getOrgList } from '@/views/doctorstation/components/api.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
|
||||
@@ -945,11 +945,11 @@ const handleConfirm = async () => {
|
||||
font-size: 14px;
|
||||
color: #303133;
|
||||
|
||||
::v-deep .el-table__header {
|
||||
:deep(.el-table__header) {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
::v-deep .el-table__cell {
|
||||
:deep(.el-table__cell) {
|
||||
padding: 12px 10px; /* 增加左右内边距 */
|
||||
text-align: left; /* 调整为左对齐 */
|
||||
border-right: 1px solid #ebeef5;
|
||||
@@ -958,16 +958,16 @@ const handleConfirm = async () => {
|
||||
min-height: 40px; /* 设置最小高度 */
|
||||
}
|
||||
|
||||
::v-deep .el-table__row:hover {
|
||||
:deep(.el-table__row:hover) {
|
||||
background-color: #f5f7fa;
|
||||
}
|
||||
|
||||
::v-deep .el-table__row:nth-child(odd) {
|
||||
:deep(.el-table__row:nth-child(odd)) {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
|
||||
/* 为操作列设置更宽的最小宽度 */
|
||||
::v-deep .el-table__column--operation {
|
||||
:deep(.el-table__column--operation) {
|
||||
min-width: 400px !important;
|
||||
}
|
||||
}
|
||||
@@ -1031,11 +1031,11 @@ const handleConfirm = async () => {
|
||||
/* 响应式调整 */
|
||||
@media (max-width: 1200px) {
|
||||
.nursing-table {
|
||||
::v-deep .el-table__cell {
|
||||
:deep(.el-table__cell) {
|
||||
padding: 8px 8px;
|
||||
}
|
||||
|
||||
::v-deep .el-table__column--operation {
|
||||
:deep(.el-table__column--operation) {
|
||||
min-width: 350px !important;
|
||||
}
|
||||
}
|
||||
@@ -1055,11 +1055,11 @@ const handleConfirm = async () => {
|
||||
.nursing-table {
|
||||
font-size: 12px;
|
||||
|
||||
::v-deep .el-table__cell {
|
||||
:deep(.el-table__cell) {
|
||||
padding: 6px 6px;
|
||||
}
|
||||
|
||||
::v-deep .el-table__column--operation {
|
||||
:deep(.el-table__column--operation) {
|
||||
min-width: 300px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,7 +110,7 @@ import { getCurrentInstance, ref, watch, computed } from 'vue';
|
||||
import { Refresh } from '@element-plus/icons-vue';
|
||||
import { patientInfo } from '../../store/patient.js';
|
||||
import { getSurgery } from './api';
|
||||
import { getOrgList } from '../../../../doctorstation/components/api.js';
|
||||
import { getOrgList } from '@/views/doctorstation/components/api.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ import { getCurrentInstance, ref, watch, computed } from 'vue';
|
||||
import { Refresh } from '@element-plus/icons-vue';
|
||||
import { patientInfo } from '../../store/patient.js';
|
||||
import { getInspection } from './api';
|
||||
import { getOrgList } from '../../../../doctorstation/components/api.js';
|
||||
import { getOrgList } from '@/views/doctorstation/components/api.js';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
|
||||
@@ -181,7 +181,7 @@ import {
|
||||
delEncounterDiagnosis,
|
||||
isFoodDiseasesNew,
|
||||
} from '../api';
|
||||
import { deleteTcmDiagnosis } from '../../../../doctorstation/components/api.js';
|
||||
import { deleteTcmDiagnosis } from '@/views/doctorstation/components/api.js';
|
||||
import diagnosisdialog from '../diagnosis/diagnosisdialog.vue';
|
||||
import AddDiagnosisDialog from './addDiagnosisDialog.vue';
|
||||
import diagnosislist from '../diagnosis/diagnosislist.vue';
|
||||
|
||||
Reference in New Issue
Block a user