This commit is contained in:
gaofy 2023-12-28 17:45:36 +08:00
parent 14fde460df
commit a9b4ccfba3
3 changed files with 16 additions and 2 deletions

View File

@ -263,6 +263,11 @@ body {
overflow: hidden; overflow: hidden;
} }
} }
.pagination-part {
.el-pagination .el-pager {
display: none !important;
}
}
} }
@media screen and (max-width: 1670px) { @media screen and (max-width: 1670px) {
.remote-part .info-box .row-item { .remote-part .info-box .row-item {

View File

@ -82,7 +82,7 @@ interface PatientInfoItem {
const emit = defineEmits(['breakRemote']) const emit = defineEmits(['breakRemote'])
const remoteItem = ref<RemoteItem>() const remoteItem = ref<RemoteItem>({} as RemoteItem)
const patientInfo = ref({} as PatientInfoItem) const patientInfo = ref({} as PatientInfoItem)
initData(useRemoteStore().getCurrentRemote()) initData(useRemoteStore().getCurrentRemote())
@ -107,6 +107,7 @@ function initData(e?: any) {
} }
const breakRemote = () => { const breakRemote = () => {
remoteItem.value.isRemote = false
emit('breakRemote', remoteItem.value) emit('breakRemote', remoteItem.value)
} }

View File

@ -13,6 +13,14 @@ export default defineConfig({
'@': fileURLToPath(new URL('./src', import.meta.url)) '@': fileURLToPath(new URL('./src', import.meta.url))
} }
}, },
build: {
terserOptions: {
compress: {
//生产环境时移除console.log()
drop_console: true,
},
}
},
css:{ css:{
preprocessorOptions:{ preprocessorOptions:{
scss:{ scss:{