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;
}
}
.pagination-part {
.el-pagination .el-pager {
display: none !important;
}
}
}
@media screen and (max-width: 1670px) {
.remote-part .info-box .row-item {

View File

@ -53,7 +53,7 @@
<span class="value">{{ patientInfo.HR }}<span class="unit">/</span></span>
</div>
<div class="row-item">
<span class="label">TEMP</span>
<span class="label">TEMP</span>
<span class="value">{{ patientInfo.TEMP }}</span>
</div>
</div>
@ -82,7 +82,7 @@ interface PatientInfoItem {
const emit = defineEmits(['breakRemote'])
const remoteItem = ref<RemoteItem>()
const remoteItem = ref<RemoteItem>({} as RemoteItem)
const patientInfo = ref({} as PatientInfoItem)
initData(useRemoteStore().getCurrentRemote())
@ -107,6 +107,7 @@ function initData(e?: any) {
}
const breakRemote = () => {
remoteItem.value.isRemote = false
emit('breakRemote', remoteItem.value)
}

View File

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