From 2d1cc07e5be9d226d23dc172031a3971ea43528f Mon Sep 17 00:00:00 2001
From: qinxianzhangyao <11053546+qinxianzhangyao@user.noreply.gitee.com>
Date: 星期五, 08 三月 2024 15:50:38 +0800
Subject: [PATCH] qxtj

---
 src/views/team/reportresults/index.vue |   18 ++++++++++++++++--
 1 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/src/views/team/reportresults/index.vue b/src/views/team/reportresults/index.vue
index cb4b7af..c95b2f6 100644
--- a/src/views/team/reportresults/index.vue
+++ b/src/views/team/reportresults/index.vue
@@ -12,8 +12,9 @@
           clearable
           v-model="createTimeList"
           @change="dateChangebirthday1"
-          style="width: 240px"
-          value-format="yyyy-MM-dd"
+          :default-time="['00:00:00', '23:00:00']"
+              format="yyyy-MM-dd HH:mm:ss"
+              value-format="yyyy-MM-dd HH:mm:ss"
           type="daterange"
           range-separator="-"
           start-placeholder="寮�濮嬫棩鏈�"
@@ -307,6 +308,8 @@
 require("echarts/lib/component/tooltip");
 require("echarts/lib/component/legend");
 require("echarts/lib/chart/pie");
+import { getNewDateList } from "@/api/hosp/order";
+import moment from "moment";
 import VTreeTransfer from "../../system/tijian/TreeTransfer.vue";
 import { projectGetList } from "@/api/system/tijian";
 import {
@@ -398,6 +401,7 @@
     };
   },
   created() {
+    this.getdate();
     this.getNowTime();
     this.getList();
     this.getcomp();
@@ -410,6 +414,14 @@
     },
   },
   methods: {
+    getdate() {
+      getNewDateList().then((res) => {
+        this.createTimeList = [
+          moment(res.data).format("YYYY-MM-DD 00:00:00"),
+          moment(res.data).format("YYYY-MM-DD 23:59:00"),
+        ];
+      });
+    },
     filterNode(value, data) {
       if (!value) return true;
       return data.proName.indexOf(value) !== -1;
@@ -612,6 +624,8 @@
 // }
 .outside1 {
   width: 500px;
+  max-height: 500px;
+  overflow-y:auto;
   display: flex;
   margin-top: 8px;
   flex-direction: column;

--
Gitblit v1.8.0