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