|
@@ -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>
|
|
|
|