单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-07-24 2cf080c66255c3dae4f4a96c56a2051e9d3d246e
src/views/mobile/bedsideAuxiliaryScreen/pages/UnderTreatment.vue
@@ -320,7 +320,7 @@
  </div>
</template>
<script lang="ts" setup name="UnderTreatment">
import { computed, ref, onMounted, onBeforeUnmount } from "vue";
import { computed, ref, onMounted, onBeforeUnmount, watch } from "vue";
import * as echarts from "echarts";
import dayjs from "dayjs";
@@ -394,7 +394,17 @@
  );
});
// const;
watch(() => pageData.value.ktvList, (newVal) => {
    generateKtvListEchart(newVal);
}, { deep: true });
watch(
  () => pageData.value.monitoringRecord,
  (newVal) => {
    generatBloodPressureAndPulseEchart(newVal);
  },
  { deep: true }
);
/** 生成ktv趋势图 */
const generateKtvListEchart = (ktvList: KtvItem[]) => {