单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-07-25 86d9b0511e4730ca19633b6c3be605e5d61533aa
src/views/mobile/bedsideAuxiliaryScreen/index.vue
@@ -1,10 +1,18 @@
<template>
  <div class="bedside-auxiliary-screen-container" :style="{ backgroundColor: backgroundColor }">
  <div
    class="bedside-auxiliary-screen-container"
    :style="{ backgroundColor: backgroundColor }"
  >
    <Header />
    <div class="bedside-auxiliary-screen-content">
        <div class="content-position"></div>
        <!-- <UnplannedSchedule v-if="cotentHeight > 0" :height="cotentHeight"  /> -->
        <component v-if="cotentHeight > 0" :is="currentComponent" :height="cotentHeight" />
      <div class="content-position"></div>
      <transition name="fade" mode="out-in">
        <component
          v-if="cotentHeight > 0"
          :is="currentComponent"
          :height="cotentHeight"
        />
      </transition>
    </div>
  </div>
</template>
@@ -14,47 +22,78 @@
// @ts-ignore
import Header from "./components/Header.vue";
import { useBedsideAuxiliaryScreenStore } from "@/store/bedsideAuxiliaryScreen";
import { EPageType } from '@/store/type/bedsideAuxiliaryScreen.type';
import { getAvailableHeightByClass } from '@/utils/utils';
import { useWindowSize } from '@/composables/useWindowSize';
import { EPageType } from "@/store/type/bedsideAuxiliaryScreen.type";
import { getAvailableHeightByClass } from "@/utils/utils";
import { useWindowSize } from "@/composables/useWindowSize";
// 未排班时的组件
const UnplannedSchedule = defineAsyncComponent(() => import('./pages/UnplannedSchedule.vue'));
const UnplannedSchedule = defineAsyncComponent(
  () => import("./pages/UnplannedSchedule.vue")
);
// 未签到时的组件
const NotSignedIn = defineAsyncComponent(() => import('./pages/NotSignedIn.vue'));
const NotSignedIn = defineAsyncComponent(
  () => import("./pages/NotSignedIn.vue")
);
// 已签到时的组件
const SignedIn = defineAsyncComponent(() => import('./pages/SignedIn.vue'));
const SignedIn = defineAsyncComponent(() => import("./pages/SignedIn.vue"));
// 治疗中的组件
const UnderTreatment = defineAsyncComponent(() => import('./pages/UnderTreatment.vue'));
const UnderTreatment = defineAsyncComponent(
  () => import("./pages/UnderTreatment.vue")
);
// 血压计的组件
const Sphygmomanometer = defineAsyncComponent(
  () => import("./pages/Sphygmomanometer.vue")
);
const bedsideAuxiliaryScreenStore = useBedsideAuxiliaryScreenStore();
const cotentHeight = ref(0);
const { width, height } = useWindowSize();
const backgroundColor = computed(() => {
  let color = '#DAE5EC';
  let color = "#DAE5EC";
  // 如果是未排班、加载中或未签到页面,背景色为白色
  if ([EPageType.NOT_INIT, EPageType.LOADING, EPageType.UNPLANNED_SCHEDULE].includes(bedsideAuxiliaryScreenStore.deviceData.pageType)) {
    color = '#fff';
  if (
    [
      EPageType.NOT_INIT,
      EPageType.LOADING,
      EPageType.UNPLANNED_SCHEDULE,
    ].includes(bedsideAuxiliaryScreenStore.deviceData.pageType)
  ) {
    color = "#fff";
  }
  return color;
});
const currentComponent = computed(() => {
  let name: any = UnplannedSchedule;
  // 未排班
  if ([EPageType.NOT_INIT, EPageType.LOADING, EPageType.UNPLANNED_SCHEDULE].includes(bedsideAuxiliaryScreenStore.deviceData.pageType)) {
  // 血压计
  if (
    bedsideAuxiliaryScreenStore.deviceData.pageType ===
    EPageType.SPHYGMOMANOMETER
  ) {
    name = Sphygmomanometer;
  } else if (
    [
      EPageType.NOT_INIT,
      EPageType.LOADING,
      EPageType.UNPLANNED_SCHEDULE,
    ].includes(bedsideAuxiliaryScreenStore.deviceData.pageType)
  ) {
    name = UnplannedSchedule;
  }
  // 未签到
  else if (bedsideAuxiliaryScreenStore.deviceData.pageType === EPageType.NOT_SIGNED_IN) {
    name = NotSignedIn
  }
  else if (
    bedsideAuxiliaryScreenStore.deviceData.pageType === EPageType.NOT_SIGNED_IN
  ) {
    name = NotSignedIn;
  }
  // 已签到
  else if (bedsideAuxiliaryScreenStore.deviceData.pageType === EPageType.SIGNED_IN) {
  else if (
    bedsideAuxiliaryScreenStore.deviceData.pageType === EPageType.SIGNED_IN
  ) {
    name = SignedIn;
  }
  // 透析中
  // 透析中
  else {
    name = UnderTreatment;
  }
@@ -62,9 +101,8 @@
});
watch([width, height], () => {
  cotentHeight.value = getAvailableHeightByClass('content-position')
  cotentHeight.value = getAvailableHeightByClass("content-position");
});
onMounted(() => {
  if (bedsideAuxiliaryScreenStore.deviceCode) {
@@ -74,7 +112,7 @@
      }`
    );
  }
  cotentHeight.value = getAvailableHeightByClass('content-position')
  cotentHeight.value = getAvailableHeightByClass("content-position");
});
</script>
@@ -90,4 +128,14 @@
    padding: 6px 12px 0;
  }
}
</style>
<style scoped>
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
</style>