mirror of
https://gitee.com/xiongmao1988/rax-medical.git
synced 2025-08-23 20:44:58 +08:00
This commit is contained in:
parent
14fde460df
commit
a9b4ccfba3
|
@ -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 {
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
|
@ -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:{
|
||||
|
|
Loading…
Reference in New Issue
Block a user