瀏覽代碼

会诊可以查询历史记录了

DESKTOP-0GD05B0\Administrator 2 年之前
父節點
當前提交
9d66d2121e

+ 21 - 27
src/api/case-front-sheet/jie-shou-hui-zhen.js

@@ -1,39 +1,33 @@
 import request from '../../utils/request'
 
-export function getHuiZhenData(
-  deptCode,
-  currentPage,
-  pageSize,
-  startTime,
-  endTime
-) {
-  return request({
-    url: '/huiZhen/getHuiZhenData',
-    method: 'get',
-    params: { deptCode, currentPage, pageSize, startTime, endTime },
-  })
+export function getHuiZhenData(startTime, endTime, history) {
+    return request({
+        url: '/huiZhen/getHuiZhenData',
+        method: 'get',
+        params: {startTime, endTime, history},
+    })
 }
 
 export function getHuanZheXinXi(admissTimes, reqTimes, inpatientNo) {
-  return request({
-    url: '/huiZhen/getHuanZheXinXi',
-    method: 'get',
-    params: { admissTimes, reqTimes, inpatientNo },
-  })
+    return request({
+        url: '/huiZhen/getHuanZheXinXi',
+        method: 'get',
+        params: {admissTimes, reqTimes, inpatientNo},
+    })
 }
 
 export function wanChenHuiZhen(data) {
-  return request({
-    url: '/huiZhen/wanChenHuiZhen',
-    method: 'post',
-    data,
-  })
+    return request({
+        url: '/huiZhen/wanChenHuiZhen',
+        method: 'post',
+        data,
+    })
 }
 
 export function getDeptName(deptCode) {
-  return request({
-    url: '/huiZhen/getDeptName',
-    method: 'get',
-    params: { deptCode },
-  })
+    return request({
+        url: '/huiZhen/getDeptName',
+        method: 'get',
+        params: {deptCode},
+    })
 }

+ 0 - 4
src/components/hui-zhen-da-ying/PrintTheConsultationForm.vue

@@ -174,10 +174,6 @@ onMounted(() => {
   initLodop()
 })
 
-const fanHuiXinXi = () => {
-  emit('fanHuiXinXi', {huanZheXinXi})
-}
-
 defineExpose({
   huiZhenXinXiXiangQing
 })

+ 25 - 35
src/views/hospitalization/case-front-sheet/JieShouHuiZhen.vue

@@ -1,20 +1,25 @@
 <template>
   <page-layer>
     <template #header>
-      <el-date-picker v-model="dateRange" :shortcuts="shortcuts" end-placeholder="结束日期" range-separator="至"
-                      start-placeholder="开始日期" type="daterange"></el-date-picker>
+      <el-date-picker v-model="dateRange"
+                      :shortcuts="shortcuts"
+                      style="width: 220px"
+                      end-placeholder="结束日期"
+                      range-separator="至"
+                      start-placeholder="开始日期"
+                      type="daterange"/>
+      <el-checkbox v-model="history" label="历史" @change="historyFunc"/>
       <el-button icon="Search" type="primary" @click="getHuiZhenDataClick">检索</el-button>
-      <el-button icon="Upload" type="primary" @click="baoCunHuiZhenClick">保存</el-button>
+      <el-button icon="Upload" type="primary" @click="baoCunHuiZhenClick" v-if="!history">保存</el-button>
       <el-button icon="Printer" type="success" @click="daYingClick">打印</el-button>
       <el-button icon="View" type="info" @click="dianJiChaKanHuanZheJianYan">查看患者检验</el-button>
-      <el-button type="primary" @click="enterMedicalOrder">医嘱录入</el-button>
+      <el-button type="primary" @click="enterMedicalOrder" v-if="!history">医嘱录入</el-button>
       <el-tag type="danger">会诊意见限制 1100 个字</el-tag>
     </template>
     <template #main>
       <el-container>
         <el-aside width="500px">
-          <el-table :data="huanZeData" :height="windowSize.h / 1.1" highlight-current-row stripe
-                    @row-click="dianJiDanYuanGe">
+          <xc-table :local-data="huanZeData" :final-height="windowSize.h / 1.1" @row-click="dianJiDanYuanGe">
             <el-table-column label="床号" prop="bedNo" width="40px"></el-table-column>
             <el-table-column label="住院号_次数" prop="inpatientNo">
               <template #default="scope"> {{ scope.row.inpatientNo }}_{{ scope.row.admissTimes }}</template>
@@ -33,21 +38,11 @@
                 {{ hzJiBie(scope.row.hzType) }}
               </template>
             </el-table-column>
-          </el-table>
-          <el-pagination
-              :current-page="currentPage"
-              :page-size="pageSize"
-              :pager-count="5"
-              :total="total"
-              layout="prev, pager, next,total"
-              small
-              @current-change="handleCurrentChange"
-          ></el-pagination>
+          </xc-table>
         </el-aside>
         <el-main>
           <div style="overflow: auto;" :style="{height: windowSize.h - 30 + 'px'}">
-            <print-the-consultation-form ref="daYingHuiZhenRef"
-                                         @fanHuiXinXi="huiZhenFanHuiXinXi"/>
+            <print-the-consultation-form ref="daYingHuiZhenRef"/>
           </div>
 
         </el-main>
@@ -68,6 +63,7 @@ import router from '@/router'
 import {getServerDateApi} from '@/api/public-api'
 import PageLayer from "@/layout/PageLayer";
 import PrintTheConsultationForm from "@/components/hui-zhen-da-ying/PrintTheConsultationForm.vue";
+import XcTable from "@/components/xiao-chan/xc-table/XcTable.vue";
 
 ////////////////////////////// 获取屏幕高度 /////////////////////////////////////////
 
@@ -81,29 +77,27 @@ onMounted(() => {
   dateRange.value[0] = shortcuts[0].value[0]
   dateRange.value[1] = shortcuts[0].value[1]
   getHuiZhenDataClick()
-  console.log(store.state.user.info)
 })
 
-////////////////////////////// 获取患者信息 需分页  /////////////////////////////////////////
+////////////////////////////// 获取患者信息    /////////////////////////////////////////
 const dateRange = ref([])
 const huanZeData = ref([])
-const currentPage = ref(1)
-const pageSize = ref(10)
-const total = ref(0)
+const history = ref(true)
 
 const getHuiZhenDataClick = () => {
-  let riQi = getDateRangeFormatDate(dateRange.value)
-  getHuiZhenData(store.state.user.info.deptCode, currentPage.value, pageSize.value, riQi.startTime, riQi.endTime).then((res) => {
-    huanZeData.value = res.records
-    total.value = res.total
+  let {startTime, endTime} = getDateRangeFormatDate(dateRange.value)
+  getHuiZhenData(startTime, endTime, history.value).then((res) => {
+    console.log(res)
+    huanZeData.value = res
   })
 }
 
-/// 点击下一页触发
-const handleCurrentChange = (val) => {
-  currentPage.value = val
-  getHuiZhenDataClick()
+const historyFunc = () => {
+  huanZeData.value = []
+  huanZheXinXi.value = {}
+  daYingHuiZhenRef.value.huiZhenXinXiXiangQing({})
 }
+
 //////////////////////////////////////////// 点击右边的表格 ///////////////////////////////////////////////////////////
 const huanZheXinXi = ref({})
 
@@ -156,10 +150,6 @@ const baoCunHuiZhenClick = () => {
       })
 }
 
-const huiZhenFanHuiXinXi = (val) => {
-  huanZheXinXi.value = val.value
-}
-
 ///////////////////////////////////////////////////////// 开启打印 ///////////////////////////////////////////////////////////////////////////////
 
 const daYingClick = () => {

+ 3292 - 17
src/views/settings/Test.vue

@@ -1,27 +1,3302 @@
 <template>
-  <xc-select-v2 :data="data" style="width: 120px">
-    <template #defalut="{item}">
-      <span>
-        {{ item }}
-      </span>
-    </template>
-  </xc-select-v2>
+  <div style="width: 100%;height: 1090px;border: 1px solid">
+    <el-auto-resizer>
+      <template #default="{ height, width }">
+        <xc-table-v3 :height="height"
+                     :columns="columns"
+                     @row-click="rowClick"
+                     :highlight-row="{
+                       key,
+                       rowKey: 'tempDate'
+                     }"
+                     :data="list"/>
+      </template>
+    </el-auto-resizer>
+  </div>
 </template>
 
 <script setup name='Test' lang="tsx">
-import XcSelectV2 from "@/components/xiao-chan/select-v2/XcSelectV2.vue";
-import {onMounted} from "vue";
+import {XcColumn} from "@/components/xiao-chan/xc-table-v3/XcColumn";
+import {ref, Ref} from "vue";
+import XcTableV3 from "@/components/xiao-chan/xc-table-v3/XcTableV3.vue";
 
-let data = $ref([])
+const columns: XcColumn[] = [
+  {
+    key: 'recDateStr',
+    title: '日期',
+    width: 80,
+    cellRenderer: ({row, cellData, index}) => {
+      let temp = list.value[index - 1]
+      if (temp === null || typeof temp === 'undefined') {
+        return <span>{cellData}</span>
+      }
+      if (row.tempDate === temp.tempDate) {
+        return <span></span>
+      } else {
+        return <span>{cellData}</span>
+      }
+    }
+  },
+  {
+    key: 'recTimeStr',
+    title: '时间',
+    width: 40,
+    cellRenderer: ({row, cellData, index}) => {
+      let temp = list.value[index - 1]
+      if (temp === null || typeof temp === 'undefined') {
+        return <span>{cellData}</span>
+      }
+      if (row.tempDate === temp.tempDate) {
+        return <span></span>
+      } else {
+        return <span>{cellData}</span>
+      }
+    }
+  },
+  {
+    key: 'patientState',
+    title: '病情',
+    width: 25
+  },
+  {
+    key: 'temperature1',
+    title: '体温',
+    width: 45,
+    cellRenderer: ({row}) => (
+        <span>{row.temperature1}{row.temperature1Type}</span>
+    )
+  },
+  {
+    title: '次/min',
+    children: [
+      {
+        key: ' ',
+        title: '心率',
+        width: 40,
+      }, {
+        key: 'pulse1',
+        title: '脉搏',
+        width: 40,
+      }
+    ]
+  },
+  {
+    key: 'breathe1',
+    title: '呼吸',
+    width: 40
+  },
+  {
+    key: 'pressure1AmAndPm',
+    title: '血压',
+    width: 55,
+  },
+  {
+    key: 'spo2',
+    title: 'Sp02%',
+    width: 50
+  },
+  {
+    key: 'mind',
+    title: '意识',
+    width: 40
+  },
+  {
+    title: '入量',
+    children: [
+      {
+        title: '名称',
+        width: 80,
+        key: 'col1Name'
+      },
+      {
+        title: 'ml',
+        width: 30,
+        key: 'col1Am'
+      }
+    ]
+  },
+  {
+    title: '出量',
+    children: [
+      {
+        title: '名称',
+        width: 80,
+        key: 'col1Name'
+      },
+      {
+        title: 'ml',
+        width: 30,
+        key: 'col1Am'
+      },
+      {
+        title: '颜色',
+        width: 40
+      },
+      {
+        title: '状态',
+        width: 40
+      }
+    ]
+  },
 
-onMounted(() => {
-  for (let i = 0; i < 1000; i++) {
-    data.push({
-      code: 'code' + i,
-      name: 'name' + i
-    })
+  {
+    key: 'skin',
+    title: '皮肤',
+    width: 40
+  },
+
+  // {
+  //   title: '血压 ',
+  //   width: 90,
+  //   children: [
+  //     {title: 'AM', key: 'pressure1Am'},
+  //     {title: 'PM', key: 'pressure1Pm'}
+  //   ]
+  // },
+  {
+    title: '管道',
+    children: [
+      {
+        key: 'tubesName',
+        title: '管道名称',
+        width: 90
+      },
+      {
+        key: 'tubesStatus',
+        title: '管道情况',
+        width: 90
+      },
+    ]
+  },
+  {
+    key: 'otherInfo',
+    title: '护理措施及效果',
+    width: 240,
+  },
+  {
+    key: 'userid',
+    title: '护士',
+    width: 70,
+    cellRenderer: ({row, cellData, index}) => {
+      let temp = list.value[index + 1]
+      if (temp === null || typeof temp === 'undefined') {
+        return <span>{cellData}</span>
+      }
+      if (row.tempDate === temp.tempDate) {
+        return <span></span>
+      } else {
+        return <span>{cellData}</span>
+      }
+    }
+  },
+];
+const list: Ref<Array<any>> = ref([
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-12 15:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-12",
+    "recTimeStr": "15:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20745905,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-12 16:30:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-12",
+    "recTimeStr": "16:30",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20745899,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": "清醒    ",
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": "完好    ",
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "患者,女性,32岁。于16:30步行入科,",
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": 36.8,
+    "pulse1": 92,
+    "breathe1": 20,
+    "pressure1Am": 100,
+    "pressure1Pm": 77,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": "×",
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "100/77",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-12 16:30:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-12",
+    "recTimeStr": "16:30",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20745900,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "给予入院宣教,做好心理护理,并协助完",
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-12 16:30:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-12",
+    "recTimeStr": "16:30",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20745901,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "善相关检查。",
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-12 19:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-12",
+    "recTimeStr": "19:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20747489,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "邓莉",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-13 07:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-13",
+    "recTimeStr": "07:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20750781,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "邓莉",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-13 15:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-13",
+    "recTimeStr": "15:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20753684,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-13 19:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-13",
+    "recTimeStr": "19:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20757230,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-14 07:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-14",
+    "recTimeStr": "07:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20760832,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-14 15:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-14",
+    "recTimeStr": "15:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20766517,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "冯兰淇",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-14 19:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-14",
+    "recTimeStr": "19:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20767092,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-15 07:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-15",
+    "recTimeStr": "07:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20770961,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "严广",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-15 15:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-15",
+    "recTimeStr": "15:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20775484,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "邓莉",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-15 19:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-15",
+    "recTimeStr": "19:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20777982,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "钟施",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-16 15:00:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-16",
+    "recTimeStr": "15:00",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20784845,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": null,
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": null,
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-17 08:22:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-17",
+    "recTimeStr": "08:22",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20794100,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "患者已服131碘5mCi,嘱其两小时后方可",
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": "×",
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-17 08:22:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-17",
+    "recTimeStr": "08:22",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20794101,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "进食,适当饮水、多排尿,不随地吐痰,",
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-17 08:22:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-17",
+    "recTimeStr": "08:22",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20794102,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "遵医嘱患者今日出院,予以出院指导,嘱",
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-17 08:22:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-17",
+    "recTimeStr": "08:22",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20794103,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "患者适当运动,按时按量服药,不适随诊",
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
+  },
+  {
+    "inpatientNo": "0410291     ",
+    "patientName": "杨婷",
+    "admissTimes": 1,
+    "date": null,
+    "tempDate": "2022-08-17 08:22:00",
+    "recDate": null,
+    "recTime": null,
+    "recDateStr": "2022-08-17",
+    "recTimeStr": "08:22",
+    "toStringRecDate": null,
+    "toStringRecTime": null,
+    "splicingOtherInfo": null,
+    "detailNo": 20794104,
+    "patientState": null,
+    "temperature": null,
+    "temperatureType": null,
+    "pulse": null,
+    "breathe": null,
+    "pressureAm": null,
+    "pressurePm": null,
+    "spo2": null,
+    "mind": null,
+    "lpupil": null,
+    "rpupil": null,
+    "pupil": null,
+    "colName": null,
+    "intake": null,
+    "shit": null,
+    "shitOther": null,
+    "shitUnit": null,
+    "shitShape": null,
+    "urineQuanAm": null,
+    "bodyWeight": null,
+    "bodyWeightInfo": null,
+    "blood": null,
+    "bodyFluid": null,
+    "outputSum": null,
+    "outputOther": null,
+    "decubitus": null,
+    "skin": null,
+    "sputumFlag": null,
+    "atomizationFlag": null,
+    "mouthpieceFlag": null,
+    "eyesFlag": null,
+    "otherInfo": "。",
+    "userid": "刘倩",
+    "inputTime": null,
+    "physicalFlag": null,
+    "skinFlag": null,
+    "modifyUserid": null,
+    "modifyTime": null,
+    "sumFlag": null,
+    "urineQuanInfo": null,
+    "scdFlag": null,
+    "roomTemperature": null,
+    "humidness": null,
+    "intakeSpeed": null,
+    "intakeBreastMilk": null,
+    "intakeWater": null,
+    "intakeMilk": null,
+    "urineQuanColor": null,
+    "shitWater": null,
+    "outputOtherInfo": null,
+    "bellybuttonFlag": null,
+    "buttocksFlag": null,
+    "showerFlag": null,
+    "spongeBathFlag": null,
+    "infoCry": null,
+    "infoSuck": null,
+    "infoSleep": null,
+    "infoActivity": null,
+    "acraTemperature": null,
+    "scdSpecialtext": null,
+    "tableStyle": null,
+    "physicalMethodFlag": null,
+    "bodyStature": null,
+    "heart": null,
+    "specialtextTime": null,
+    "specialtextOther": null,
+    "temperatureCool": null,
+    "temperature1": null,
+    "pulse1": null,
+    "breathe1": null,
+    "pressure1Am": null,
+    "pressure1Pm": null,
+    "col1Name": null,
+    "col1Am": null,
+    "isSputum": null,
+    "isAtomization": null,
+    "isMouthpiece": null,
+    "isEyes": null,
+    "isPhysical": null,
+    "isSkin": null,
+    "temperature1Type": null,
+    "isPhysicalMethod": null,
+    "tubesName": null,
+    "isTubes": null,
+    "col2Name": null,
+    "col2Am": null,
+    "tubesStatus": null,
+    "boxTemp": null,
+    "boxHumi": null,
+    "urineColor": null,
+    "shitQuan": null,
+    "shitWaterQuan": null,
+    "outputDblood": null,
+    "fetalBreak": null,
+    "uterineOpen": null,
+    "uterineStatus": null,
+    "uterineHigh": null,
+    "uterineMove": null,
+    "outBlood": null,
+    "redHurt": null,
+    "anusAir": null,
+    "suckleFun": null,
+    "faceColour": null,
+    "skinColour": null,
+    "skinStatus": null,
+    "urineQuan": null,
+    "boxTempIn": null,
+    "boxTempOut": null,
+    "breath": null,
+    "acraStatus": null,
+    "intakeFlag": null,
+    "outtakeFlag": null,
+    "urineInfo": null,
+    "intakeInfo": null,
+    "outputInfo": null,
+    "pupilr": null,
+    "pupilbj": null,
+    "fmTime": null,
+    "csTime": null,
+    "glu": null,
+    "painLvl": null,
+    "breatheMachine": null,
+    "map": null,
+    "col1Srl": null,
+    "gastric": null,
+    "cvp": null,
+    "etcho2": null,
+    "gcs": null,
+    "rass": null,
+    "othJc": null,
+    "position": null,
+    "isBreath": null,
+    "isHuiyin": null,
+    "isBed": null,
+    "isAV": null,
+    "col1Dos": null,
+    "ward": "8000022",
+    "fheartSoundStr": null,
+    "pressure1AmAndPm": "",
+    "fheartSound": null
   }
-})
+])
+const key = ref('')
+
+const rowClick = (row) => {
+  key.value = row.tempDate
+}
 
 </script>