diff --git a/src/views/regional/statistics/overview/images/bg2.jpg b/src/assets/images/bg2.jpg similarity index 100% rename from src/views/regional/statistics/overview/images/bg2.jpg rename to src/assets/images/bg2.jpg diff --git a/src/views/regional/statistics/overview/images/border_bg.jpg b/src/assets/images/border_bg.jpg similarity index 100% rename from src/views/regional/statistics/overview/images/border_bg.jpg rename to src/assets/images/border_bg.jpg diff --git a/src/views/regional/statistics/overview/images/title_border_bg.png b/src/assets/images/title_border_bg.png similarity index 100% rename from src/views/regional/statistics/overview/images/title_border_bg.png rename to src/assets/images/title_border_bg.png diff --git a/src/views/regional/statistics/overview/images/title_left_bg.png b/src/assets/images/title_left_bg.png similarity index 100% rename from src/views/regional/statistics/overview/images/title_left_bg.png rename to src/assets/images/title_left_bg.png diff --git a/src/views/regional/statistics/overview/images/title_right_bg.png b/src/assets/images/title_right_bg.png similarity index 100% rename from src/views/regional/statistics/overview/images/title_right_bg.png rename to src/assets/images/title_right_bg.png diff --git a/src/components/countTo/index.vue b/src/components/countTo/index.vue new file mode 100644 index 0000000..1809f49 --- /dev/null +++ b/src/components/countTo/index.vue @@ -0,0 +1,28 @@ + + {{ showNum }} + + + \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 1b0ba63..f1858b8 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -68,12 +68,18 @@ export const constantRoutes = [{ component: () => import('@/views/error/401'), hidden: true }, - // 大屏 + // 大屏统计 { path: '/regional/statistics/overview', component: () => import('@/views/regional/statistics/overview/index'), hidden: true }, + // 大屏监控 + { + path: '/regional/statistics/screenMonitor', + component: () => import('@/views/regional/statistics/screenMonitor/index'), + hidden: true + }, { path: '', component: Layout, diff --git a/src/views/liswork/backApply/index.vue b/src/views/liswork/backApply/index.vue index edca62a..eba2e32 100644 --- a/src/views/liswork/backApply/index.vue +++ b/src/views/liswork/backApply/index.vue @@ -307,8 +307,8 @@ const sizeChange = (page: { currentPage: number, pageSize: number }) => { const getDays = () => { - // queryForm.st = dayjs().subtract(3, 'day').format('YYYY-MM-DD') - queryForm.st = '2025-06-01' + queryForm.st = dayjs().subtract(3, 'day').format('YYYY-MM-DD') + // queryForm.st = '2025-06-01' queryForm.et = dayjs().format('YYYY-MM-DD') } diff --git a/src/views/liswork/batchPrint/index.vue b/src/views/liswork/batchPrint/index.vue new file mode 100644 index 0000000..c3c17ef --- /dev/null +++ b/src/views/liswork/batchPrint/index.vue @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ order.label }} + + + + + + + + + 过滤选项 + + + + {{ option.label }} + + + + + + + + + + + + + + + + + + + + + + 确定 + + + + + + + + + + diff --git a/src/views/regional/statistics/overview/css/index.css b/src/views/regional/statistics/overview/css/index.css index d6b10c8..8f4c011 100644 --- a/src/views/regional/statistics/overview/css/index.css +++ b/src/views/regional/statistics/overview/css/index.css @@ -5,7 +5,7 @@ margin: 0 auto; width: 100%; min-height: 100vh; - background: url(../images/bg2.jpg) no-repeat; + background: url('../../../../../assets/images/bg2.jpg') no-repeat; background-size: 100% 100%; padding-top: 0rem; padding: 0rem 3.125rem; @@ -31,7 +31,7 @@ width: 5.78125rem; height: 0.78125rem; display: block; - background: #01279d url(../images/title_left_bg.png) no-repeat; + background: #01279d url('../../../../../assets/images/title_left_bg.png') no-repeat; background-size: cover; } @@ -42,7 +42,7 @@ width: 1.5625rem; height: 1.5625rem; display: block; - background: url(../images/border_bg.jpg) no-repeat; + background: url('../../../../../assets/images/border_bg.jpg') no-repeat; background-size: cover; } @@ -53,7 +53,7 @@ width: 1.5625rem; height: 1.5625rem; display: block; - background: url(../images/border_bg.jpg) no-repeat; + background: url('../../../../../assets/images/border_bg.jpg') no-repeat; background-size: cover; } @@ -64,7 +64,7 @@ width: 1.25rem; height: 1.25rem; display: block; - background: url(../images/title_right_bg.png) no-repeat; + background: url('../../../../../assets/images/title_right_bg.png') no-repeat; background-size: cover; } diff --git a/src/views/regional/statistics/screenMonitor/index.vue b/src/views/regional/statistics/screenMonitor/index.vue new file mode 100644 index 0000000..8ed3330 --- /dev/null +++ b/src/views/regional/statistics/screenMonitor/index.vue @@ -0,0 +1,430 @@ + + + + + TAT监控大屏 + {{ nowTime }} + + + + + + 已采集待收标本 + 共 + 个标本 + + + + + + + + + + + + + + + + + + + 已核收还未上机标本 + 共 + 个标本 + + + + + + + + + + + + + + + + + + + 标本完成效率TAT + + + + + + + + + + + {{ row.status == '超时' ? `剩${row.Timeout}超时` : '' }} + + + + + + + + + + + + + 危急值结果:(请工作人员及时处理!) + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file