| File was renamed from src/views/mobile/bedsideAuxiliaryScreen/components/SignedIn.vue |
| | |
| | | </div> |
| | | </Card> |
| | | </div> |
| | | <div class="row3"></div> |
| | | <div class="row3"> |
| | | <BlockBotttom |
| | | :icon="dingShiImg" |
| | | text="定时任务" |
| | | backgroundColor="#20C6B6" |
| | | @click="() => onScheduledTasksClick()" |
| | | class="btn" |
| | | /> |
| | | <BlockBotttom |
| | | :icon="jiaoHaoImg" |
| | | text="叫号" |
| | | backgroundColor="#20C6B6" |
| | | @click="() => onCallBumberClick()" |
| | | class="btn" |
| | | /> |
| | | <BlockBotttom |
| | | :icon="kaiShiImg" |
| | | text="开始" |
| | | backgroundColor="#409EFF" |
| | | @click="() => onStartClick()" |
| | | class="btn" |
| | | /> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | <script lang="ts" setup name="SignedIn"> |
| | | import { computed } from "vue"; |
| | | // @ts-ignore |
| | | import Card from "./Card.vue"; |
| | | import Card from "../components/Card.vue"; |
| | | import { useBedsideAuxiliaryScreenStore } from "@/store/bedsideAuxiliaryScreen"; |
| | | import tslImg from "@/img/tsl.png"; |
| | | import dingShiImg from "@/img/dingshi2.png"; |
| | | import jiaoHaoImg from "@/img/jiaoHao.png"; |
| | | import kaiShiImg from "@/img/kaiShi.png"; |
| | | |
| | | import { |
| | | getItemName, |
| | | formatTestColr, |
| | | formatTestFlag, |
| | | } from "@/store/type/bedsideAuxiliaryScreen.type"; |
| | | // @ts-ignore |
| | | import BlockBotttom from "../components/BlockBotttom.vue"; |
| | | import { ElMessage } from "element-plus/es"; |
| | | |
| | | interface Props { |
| | | height: number; |
| | |
| | | patientPhone: bedsideAuxiliaryScreenStore.deviceData.patientPhone, |
| | | }); |
| | | }); |
| | | |
| | | /** 点击定时任务 */ |
| | | const onScheduledTasksClick = () => {}; |
| | | |
| | | const onCallBumberClick = () => { |
| | | ElMessage({ |
| | | message: "功能开发中,敬请期待!", |
| | | type: "warning", |
| | | }); |
| | | }; |
| | | |
| | | const onStartClick = () => { |
| | | ElMessage({ |
| | | message: "功能开发中,敬请期待!", |
| | | type: "warning", |
| | | }); |
| | | }; |
| | | </script> |
| | | <style lang="less" scoped> |
| | | * { |
| | |
| | | position: absolute; |
| | | width: 100%; |
| | | bottom: 2px; |
| | | height: 11.33%; |
| | | height: 13.33%; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: flex-end; |
| | | padding-right: 13px; |
| | | overflow: hidden; |
| | | background-color: blue; |
| | | background: #ffffff; |
| | | border-radius: 2px; |
| | | .btn { |
| | | margin-left: 9px; |
| | | } |
| | | } |
| | | .item-box { |
| | | height: 100%; |