diff --git a/littleApp_child/pages/CheckReport/CheckReport.js b/littleApp_child/pages/CheckReport/CheckReport.js index 1f5ec8f..805d10e 100644 --- a/littleApp_child/pages/CheckReport/CheckReport.js +++ b/littleApp_child/pages/CheckReport/CheckReport.js @@ -34,7 +34,8 @@ Page({ allPatient:[], // 当前的pid currentPID:'', - tourist:false + tourist:false, + tyType:'1' }, onLoad: function (option) { this.setData({ @@ -90,7 +91,7 @@ Page({ } var index = e.currentTarget.dataset.index wx.navigateTo({ - url: '../checkTabList/checkTabList?current_index=' + index + '&checkTime=' + this.data.yearText + this.data.monthText + '&patientId=' + this.data.currentPID, + url: '../checkTabList/checkTabList?current_index=' + index + '&checkTime=' + this.data.yearText + this.data.monthText + '&patientId=' + this.data.currentPID + '&tyType=' + this.data.tyType + '&needHidden=' + this.data.needHidden, }) }, // 跳转上一条 @@ -220,11 +221,16 @@ Page({ networkUtil._get(api.checkDetails, params, function (res) { console.log('获取当天信息', res) var subscribe = false + var needHidden = false var subscribeDetail = {} // 下次产检信息 if (res.data.data && res.data.data.nextcheck && res.data.data.nextcheck.length > 0){ subscribe = true + subscribeDetail.checkhospital = res.data.data.checkhospital + if (res.data.data.checkhospital.indexOf('皇岛市妇幼保健院') > 0){ + needHidden = true + } subscribeDetail.nextcheck = res.data.data.nextcheck // 距离下次检查日期间隔 subscribeDetail.nextInterval = '-' @@ -238,10 +244,15 @@ Page({ subscribeDetail.nextInterval = '剩' + nextInterval + '天' } } + if (!res.data.data.tyType){ + console.log('tytype不存在~~~~~~~~~~~~~~~~~~') + } self.setData({ todayInfo: res.data.data, subscribe: subscribe, - subscribeDetails: subscribeDetail + subscribeDetails: subscribeDetail, + tyType: res.data.data.tyType, + needHidden: needHidden }) }, function (res) { diff --git a/littleApp_child/pages/CheckReport/CheckReport.wxml b/littleApp_child/pages/CheckReport/CheckReport.wxml index 9a3e7fc..d9e5c78 100644 --- a/littleApp_child/pages/CheckReport/CheckReport.wxml +++ b/littleApp_child/pages/CheckReport/CheckReport.wxml @@ -54,7 +54,7 @@ - + diff --git a/littleApp_child/pages/checkTabList/checkTabList.js b/littleApp_child/pages/checkTabList/checkTabList.js index b3272eb..cc22ece 100644 --- a/littleApp_child/pages/checkTabList/checkTabList.js +++ b/littleApp_child/pages/checkTabList/checkTabList.js @@ -4,6 +4,8 @@ var networkUtil = require('../../utils/network_util.js') var api = require('../../utils/apiFile.js') // 事件监听 var event = require('../../utils/event.js') +// +var checkManager = require('../../utils/checkData.js') // 获取应用实例 var app = getApp() @@ -11,107 +13,46 @@ var patientId, checkTime Page({ data: { - list: [ - // { likeCount: 12, title: "title1", introduction: "content1content1content1content1content1content1content1content1content1content1content1ds到场定损", image: "http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg" } - // , { likeCount: 12, title: "title2", introduction: "content2", image: "http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg" } - // , { likeCount: 12, title: "title2", introduction: "content2", image: "http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg" } - // , { likeCount: 12, title: "title1", introduction: "content1", image: "http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg" } - // , { likeCount: 12, title: "title2", introduction: "content2", image: "http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg" } - // , { likeCount: 12, title: "title2", introduction: "content2", image: "http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg" } - ], + list: [], flag:false, showTitle:'', showContent:'', - titles: ["问诊检查", "儿科检查", "一般检查", "辅助检查"], + titles: ["问诊检查", "体格检查", "一般检查", "辅助检查"], current_index: 0, - //问诊检查 - mainFoster: "", - feedType: "", - pee: "", - excrement: "", - sleep: "", - activity: "", - vitaminD: "", - assistFood: "", - homeMeasure: "", - drugGllergic: "", - morbidity: "", - otherTextWZ: "", - //儿科检查 - tooth: "", - facecolor: "", - skin: "", - eyesight: "", - hearing: "", - chest: "", - neck: "", - belly: "", - umbilical: "", - stepStatus: "", - eye: "", - ear: "", - spineFours: "", - portaGenitals: "", - // bilirubinHead: "", - // bilirubinChest: "", - // bilirubinBelly: "", - bilirubin:"", - bregma:"", - bregmaValue:"", - nerve:"", - stoopStatus: "", - stoopSign: "", - otherTextWZ: "", - //一般检查 - temperature: "", - height: "", - weight: "", - head: "", - chestw: "", - heightWeight:"", - temperature: "", - growthEvaluate: "", - //辅助检查 - bonez: "", - sportsEvaluation: "", - hipJoint: "", - heartAction: "", - hemoglobin: "", - whiteCell: "", - platelet: "", - otherBlood: "", - urineProtein: "", - urineSugar: "", - urineAcetone: "", - hematuria:"", - otherUrine:"", - other_textFZ:"" + checkData:{}, + // 是秦皇岛就需要隐藏 + needHidden:'false' }, onLoad: function (e) { - patientId = e.patientId - checkTime = e.checkTime - // 数据初始化 - var self = this - var index = parseInt(e.current_index + "") - this.setData({ - current_index: index - }) - if (this.data.current_index == 0) { - this.requestDataWZ() - } else if (this.data.current_index == 1) { - this.requestDataEK() - } else if (this.data.current_index == 2) { - this.requestDataYB() - } else if (this.data.current_index == 3) { - this.requestDataFZ() - } + + this.setData({ + checkData: checkManager[e.tyType], + needHidden: e.needHidden + }) + patientId = e.patientId + checkTime = e.checkTime + // 数据初始化 + var self = this + var index = parseInt(e.current_index + "") + this.setData({ + current_index: index + }) + if (this.data.current_index == 0) { + this.requestDataWZ() + } else if (this.data.current_index == 1) { + this.requestDataEK() + } else if (this.data.current_index == 2) { + this.requestDataYB() + } else if (this.data.current_index == 3) { + this.requestDataFZ() + } }, onUnload: function () { }, /*---------事件处理函数--------*/ showMoreContent: function (e) { - var content = e.currentTarget.dataset.content // + "问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问诊检查问" + var content = e.currentTarget.dataset.content // var title = e.currentTarget.dataset.title if(content.length>=4){ @@ -121,7 +62,6 @@ Page({ showContent: content, }) } - }, closeMask:function(){ this.setData({ @@ -158,25 +98,32 @@ Page({ networkUtil._get(api.wzXinxi, param, function (res) { console.log(res) var result = res.data.list[0] + var checkD = self.data.checkData + var temp = {} + + for (var key in result) { + checkManager.getContentByDeal(key, result[key], temp) + var value = temp[key] + for (var index in checkD['wz']) { + + if (checkD['wz'][index].word == key){ + checkD['wz'][index].value = '-' + checkD['wz'][index].value = value + } + } + } + // self.data.checkData['wz'].map(function(item){ + + // }) self.setData({ - mainFoster: result.mainFoster, - feedType: result.feedType, - pee: result.pee, - excrement: result.excrement, - sleep: result.sleep, - activity: result.activity, - vitaminD: result.vitaminD, - assistFood: result.assistFood, - homeMeasure: result.homeMeasure, - drugGllergic: result.drugGllergic, - morbidity: result.morbidity, - otherTextWZ: result.otherText, + checkData: checkD, }) }, function (res) { }) }, + // 辅助检查 requestDataFZ() { var self = this @@ -184,39 +131,62 @@ Page({ var param = { page: 10, limit: 100, patientId: patientId, checkTime: checkTime } // console.log(param) networkUtil._get(api.checksub, param, function (res) { - console.log(res) var result = res.data.list[0] + var checkD = self.data.checkData + var temp = {} + var whiteCell - if (result.whiteCell=="无"){ + if (result.whiteCell == "无"){ whiteCell = result.whiteCell }else{ whiteCell = result.whiteCell +"×10^9/L" } - var platelet if (result.platelet == "无") { platelet = result.platelet } else { platelet = result.platelet + "×10^9/L" } + + - self.setData({ - bonez: result.bonez, - sportsEvaluation: result.sportsEvaluation, - hipJoint: result.hipJoint, - heartAction: result.heartAction, - hemoglobin: result.hemoglobin, - whiteCell: whiteCell, - platelet: platelet, - otherBlood: result.otherBlood, - urineProtein: result.urineProtein, - urineSugar: result.urineSugar, - urineAcetone: result.urineAcetone, - hematuria: result.hematuria, - otherUrine: result.otherUrine, - other_textFZ: result.otherText, + + for (var key in result) { + checkManager.getContentByDeal(key, result[key],temp) + var value = temp[key] + for (var index in checkD['fz']) { + + if (checkD['fz'][index].word == key) { + checkD['fz'][index].value = '-' + checkD['fz'][index].value = value + } + if (checkD['fz'][index].word == 'zheartActCheck'){ + var heartActCheck = '' + var chatSc = checkManager.getYyfyTest(result['chatSc']) + if (chatSc) { + heartActCheck += chatSc + } + if (result.xldq) { + heartActCheck += ' DQ:' + result.xldq + } + checkD['fz'][index].value = '-' + checkD['fz'][index].value = heartActCheck + } + if (checkD['fz'][index].content){ + // 遍历血常规等 + for (var indexN in checkD['fz'][index].content) { + if (checkD['fz'][index].content[indexN].word == key) { + checkD['fz'][index].content[indexN].value = '-' + checkD['fz'][index].content[indexN].value = value + } + } + } + } + } + self.setData({ + checkData: checkD, }) }, function (res) { @@ -230,34 +200,25 @@ Page({ var param = { page: 10, limit: 100, patientId: patientId, checkTime: checkTime } // console.log(param) networkUtil._get(api.checkeb, param, function (res) { - console.log(res) - var result = res.data.list[0] - self.setData({ - tooth: result.tooth, - facecolor: result.facecolor, - skin: result.skin, - eyesight: result.eyesight, - hearing: result.hearing, - chest: result.chest, - neck: result.neck, - belly: result.belly, - umbilical: result.umbilical, - stepStatus: result.stepStatus, - eye: result.eye, - ear: result.ear, - spineFours: result.spineFours, - portaGenitals: result.portaGenitals, - // bilirubinHead: result.bilirubinHead, - // bilirubinChest: result.bilirubinChest, - // bilirubinBelly: result.bilirubinBelly, - bilirubin:result.bilirubin, - bregma: result.bregma, - bregmaValue:result.bregmaValue, - nerve: result.nerve, - stoopStatus: result.stoopStatus, - stoopSign: result.stoopSign, - otherTextEK: result.otherText, - }) + var result = res.data.list[0] + var checkD = self.data.checkData + var temp = {} + + for (var key in result) { + checkManager.getContentByDeal(key, result[key], temp) + var value = temp[key] + for (var index in checkD['tg']) { + + if (checkD['tg'][index].word == key) { + checkD['tg'][index].value = '-' + checkD['tg'][index].value = value + } + } + } + + self.setData({ + checkData: checkD, + }) }, function (res) { @@ -270,18 +231,24 @@ Page({ var param = { page: 10, limit: 100, patientId: patientId, checkTime: checkTime } // console.log(param) networkUtil._get(api.checkcommon, param, function (res) { - console.log(res) - var result = res.data.list[0] - self.setData({ - temperature: result.temperature, - height: result.height, - weight: result.weight, - head: result.head, - chestw: result.chestw, - heightWeight: result.heightWeight, - temperature: result.temperature, - growthEvaluate: result.growthEvaluate, - }) + var result = res.data.list[0] + var checkD = self.data.checkData + var temp = {} + + for (var key in result) { + checkManager.getContentByDeal(key, result[key], temp) + var value = temp[key] + for (var index in checkD['yb']) { + + if (checkD['yb'][index].word == key) { + checkD['yb'][index].value = '-' + checkD['yb'][index].value = value + } + } + } + self.setData({ + checkData: checkD, + }) }, function (res) { diff --git a/littleApp_child/pages/checkTabList/checkTabList.wxml b/littleApp_child/pages/checkTabList/checkTabList.wxml index 97f4abe..bf4fa67 100644 --- a/littleApp_child/pages/checkTabList/checkTabList.wxml +++ b/littleApp_child/pages/checkTabList/checkTabList.wxml @@ -9,341 +9,85 @@ - - - - 主要抚养人: - {{mainFoster}} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + {{item.title}}: + {{item.value}} + + + - - - - - - - - - - - - - 牙齿: - {{tooth}} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + {{item.title}}: + {{item.value}} + + + - - + - - - 体温: - {{temperature}} + + + + + {{item.title}}: + {{item.value}} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - 发育检查 - - - - 骨密度Z值: - {{bonez}} - - - - - - - - - - - - - - - - - - - + + + {{item.top_title}} + + + + + {{sectionItem.title}}: + {{sectionItem.value}} + + + - 血常规 - - - - 血红蛋白: - {{hemoglobin}} - - - - - - - - - - - - - - - - - - - + + + + + + {{item.title}}: + {{item.value}} + + - 尿常规 - - - - 尿蛋白: - {{urineProtein}} - - - - - - - - - - - - - - - - + - - - - - - - - - - - - 其他 - - {{other_textFZ}} - + diff --git a/littleApp_child/pages/checkTabList/checkTabList.wxss b/littleApp_child/pages/checkTabList/checkTabList.wxss index 15de192..0237b22 100644 --- a/littleApp_child/pages/checkTabList/checkTabList.wxss +++ b/littleApp_child/pages/checkTabList/checkTabList.wxss @@ -61,7 +61,7 @@ margin-left: 5px; height: 20px; line-height: 20px; - text-align:left; + text-align:left; } .content_after { @@ -69,7 +69,7 @@ line-height: 20px; font-size: 12px; color: #666; - text-align:left; + text-align:left; margin-left: 5px; display: -webkit-box; overflow: hidden; @@ -178,4 +178,43 @@ text-align: center; margin-left: calc(50% - 80px); line-height: 32px; - } \ No newline at end of file + } + + + + + + +.report-info-bg { + border-top: solid 1rpx #d3d6d0; + border-bottom: solid 1rpx #d3d6d0; + background: white; + /*align-items: center;*/ +} + +.report-info-box { + display: flex; + flex-wrap: wrap; + margin-left: 15px; + margin-right: 15px; +} +.report-info-item { + min-width: 50%; + min-height: 35px; + font: lighter; + color: #666; + font-size: 12px; + line-height: 35px; + /* border-bottom: solid 1rpx #e8eae5; */ + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +.report-info-text-title { + margin-left:5px; + font-size: 13px; + color: #222; +} \ No newline at end of file diff --git a/littleApp_child/pages/childcare_knowledge/childcare_knowledge.wxss b/littleApp_child/pages/childcare_knowledge/childcare_knowledge.wxss index 1bbb947..8c56cee 100644 --- a/littleApp_child/pages/childcare_knowledge/childcare_knowledge.wxss +++ b/littleApp_child/pages/childcare_knowledge/childcare_knowledge.wxss @@ -107,6 +107,7 @@ float: right; margin-right: 15px; height: 70px; + margin-top: 20px; } .zarparent_box { diff --git a/littleApp_child/pages/home/home.js b/littleApp_child/pages/home/home.js index b6ea708..cfa6c13 100644 --- a/littleApp_child/pages/home/home.js +++ b/littleApp_child/pages/home/home.js @@ -261,7 +261,7 @@ Page({ }) }, toRiskGuidePage() { - if (!this.data.riskGuide){ + if (this.data.riskGuide){ wx.navigateTo({ url: "../articleLists/articleLists?category=精准指导", }) diff --git a/littleApp_child/utils/checkData.js b/littleApp_child/utils/checkData.js new file mode 100644 index 0000000..d4b09fb --- /dev/null +++ b/littleApp_child/utils/checkData.js @@ -0,0 +1,562 @@ + +function isJson(obj) { + + return obj.indexOf('}') > 0 +} + + +function getContentByDeal(str, data, tempData) { + + var result = "" + if(data == null){ + tempData[str] = '' + return + } + // 吃奶情况 + if (str == "cnqk") { + + if (data == '1') { + result = '好' + } + if (data == '2') { + result = '不好' + } + tempData['cnqk'] = result + return + } + + + if (!data || !isJson(data)) { + tempData[str] = data + return + } + + if (data) { + //辅食添加 + if (str == "assistFood") { + + var assistFood = JSON.parse(data); + if (assistFood.yesOrNo === "no") { + + result = "未添加" + } + if (assistFood.yesOrNo === "yes") { + result = "添加" + + if (assistFood.qtText) { + + result += ":" + assistFood.qtText + } + } + tempData['assistFood'] = result + } + //面色 + if (str == "facecolor") { + + var facecolor = JSON.parse(data); + if (facecolor.select === "1") { + + result = "红润" + } + if (facecolor.select === "2") { + + result = "黄染" + } + if (facecolor.select === "3") { + + result = "其他" + if (facecolor.qtText && facecolor.qtText !== "") { + + result += ":" + facecolor.qtText + } + } + tempData['facecolor'] = result + + } + //皮肤 + if (str == "skin") { + + var skin = JSON.parse(data); + if (skin.yesOrNo === "no") { + + result = "未见异常" + } + if (skin.yesOrNo === "yes") { + result = "异常:" + if (skin.sz) result.length > 3 ? result += "、湿疹" : result += "湿疹"; + if (skin.hr) result.length > 3 ? result += "、黄染" : result += "黄染"; + if (skin.fg) result.length > 3 ? result += "、发绀" : result += "发绀"; + if (skin.fg1) result.length > 3 ? result += "、发绀(口唇、指趾甲床)" : result += "发绀(口唇、指趾甲床)"; + if (skin.qb) result.length > 3 ? result += "、苍白" : result += "苍白"; + if (skin.mxxgl) result.length > 3 ? result += "、毛细血管瘤" : result += "毛细血管瘤"; + if (skin.bk) result.length > 3 ? result += "、包块" : result += "包块"; + if (skin.yz) result.length > 3 ? result += "、硬肿" : result += "硬肿"; + if (skin.hz) result.length > 3 ? result += "、红肿" : result += "红肿"; + if (skin.ch) result.length > 3 ? result += "、潮红" : result += "潮红"; + if (skin.ml) result.length > 3 ? result += "、糜烂" : result += "糜烂"; + if (skin.pz) result.length > 3 ? result += "、皮疹" : result += "皮疹"; + if (skin.cxd) result.length > 3 ? result += "、出血点" : result += "出血点"; + if (skin.yb) result.length > 3 ? result += "、瘀斑" : result += "瘀斑"; + if (skin.zdtblbq) result.length > 3 ? result += "、增大的体表淋巴结" : result += "增大的体表淋巴结"; + if (skin.kjmfy) result.length > 3 ? result += "、卡介苗接种反应" : result += "卡介苗接种反应"; + if (skin.qt) { + result.length > 3 ? result += "、其他" : result = "其他"; + if (skin.qtText && skin.qtText !== "") { + result += ":" + skin.qtText; + } + } + + + } + tempData['skin'] = result + + } + //胸部 + if (str == "chest") { + + var chest = JSON.parse(data); + if (chest.yesOrNo === "no") { + + result = "无" + } + if (chest.yesOrNo === "yes") { + result = "有:" + + if (chest.qtText) { + result += ":" + chest.qtText; + } + + } + tempData['chest'] = result + + + } + // 颈部 + if (str == "neck") { + + var neck = JSON.parse(data); + if (neck.yesOrNo === "no") { + + result = "无" + } + if (neck.yesOrNo === "yes") { + result = "有:" + + if (neck.qtText) { + result += neck.qtText; + } + + } + tempData['neck'] = result + + } + //portaGenitals肛门/外生殖器 + + if (str == "portaGenitals") { + + var portaGenitals = JSON.parse(data); + if (portaGenitals.yesOrNo === "no") { + + result = "未见异常" + + } + if (portaGenitals.yesOrNo === "yes") { + result = "异常:"; + if (portaGenitals.ynsz) result.length > 3 ? result += "、阴囊水肿" : result += "阴囊水肿"; + if (portaGenitals.xmjy) { + result.length > 3 ? result += "、鞘膜积液" : result += "鞘膜积液"; + if (portaGenitals.xmjyStatus && portaGenitals.xmjyStatus != "") { + if (portaGenitals.xmjyStatus == "1") { + result += "(左侧)"; + } + if (portaGenitals.xmjyStatus == "2") { + result += "(右侧)"; + } + if (portaGenitals.xmjyStatus == "3") { + result += "(双侧)"; + } + } + } + if (portaGenitals.ndxy) result.length > 3 ? result += "、尿道下裂" : result += "尿道下裂"; + if (portaGenitals.fggs) result.length > 3 ? result += "、腹股沟疝" : result += "腹股沟疝"; + if (portaGenitals.yg) { + result.length > 3 ? result += "、隐睾" : result += "隐睾"; + if (portaGenitals.ygStatus && portaGenitals.ygStatus != "") { + if (portaGenitals.ygStatus == "1") { + viewData.ygStatus += "(左侧)"; + } + if (portaGenitals.ygStatus == "2") { + result += "(右侧)"; + } + if (portaGenitals.ygStatus == "3") { + result += "(双侧)"; + } + } + } + if (portaGenitals.ycnx) result.length > 3 ? result += "、阴唇粘连" : result += "阴唇粘连"; + if (portaGenitals.qt) { + result.length > 3 ? result += "、其他" : result += "其他"; + if (portaGenitals.qtText && portaGenitals.qtText !== "") { + result += ":" + portaGenitals.qtText; + } + } + + } + tempData['portaGenitals'] = result + } + //stoopStatus 可疑佝偻病症状 + if (str == "stoopStatus") { + + var stoopStatus = JSON.parse(data); + if (stoopStatus.yesOrNo === "no") { + result = "无" + } + if (stoopStatus.yesOrNo === "yes") { + result = "有:"; + if (stoopStatus.yj) result.length > 2 ? result += "、夜惊" : result += "夜惊"; + if (stoopStatus.dh) result.length > 2 ? result += "、多汗" : result += "多汗"; + if (stoopStatus.fz) result.length > 2 ? result += "、烦躁" : result += "烦躁"; + if (stoopStatus.qt) { + result.length > 2 ? result += "、其他" : result += "其他"; + if (stoopStatus.qtText && stoopStatus.qtText !== "") { + result += ":" + stoopStatus.qtText; + } + } + + } + tempData['stoopStatus'] = result + } + + //stoopSign 可疑佝偻病体征 + if (str == "stoopSign") { + + var stoopSign = JSON.parse(data); + if (stoopSign.yesOrNo === "no") { + + result = "无" + + } + if (stoopSign.yesOrNo === "yes") { + result = "有:"; + if (stoopSign.rgrh) result.length > 2 ? result += "、颅骨软化" : result += "颅骨软化"; + if (stoopSign.fl) result.length > 2 ? result += "、方颅" : result += "方颅"; + if (stoopSign.zl) result.length > 2 ? result += "、枕秃" : result += "枕秃"; + if (stoopSign.lcz) result.length > 2 ? result += "、肋串珠" : result += "肋串珠"; + if (stoopSign.lwf) result.length > 2 ? result += "、肋外翻" : result += "肋外翻"; + if (stoopSign.lrgg) result.length > 2 ? result += "、肋软骨沟" : result += "肋软骨沟"; + if (stoopSign.jx) result.length > 2 ? result += "、鸡胸" : result += "鸡胸"; + if (stoopSign.szz) result.length > 2 ? result += "、手镯征" : result += "手镯征"; + if (stoopSign.zzz) result.length > 2 ? result += "、足镯征" : result += "足镯征"; + if (stoopSign.oxt) result.length > 2 ? result += "、O型腿" : result += "O型腿"; + if (stoopSign.xxt) result.length > 2 ? result += "、X型腿" : result += "X型腿"; + if (stoopSign.qt) { + result.length > 2 ? result += "、其他" : result += "其他"; + if (stoopSign.qtText && stoopSign.qtText !== "") { + result += ":" + stoopSign.qtText; + } + } + + } + tempData['stoopSign'] = result + } + + //髋关节筛查 + if (str == "rzfx") { + var rzD = JSON.parse(data); + + if (rzD.yesOrNo === "no") { + + result = "未见异常" + } + if (rzD.yesOrNo === "yes") { + result = "异常:" + rzD.qtText + } + tempData['rzfx'] = result + } + + //髋关节筛查 + if (str == "hipJoint") { + + var hipJoint = JSON.parse(data); + if (hipJoint.select === "1") { + + result = "未见明显异常" + } + if (hipJoint.select === "2") { + + result = "接近正常" + } + if (hipJoint.select === "3") { + + result = "异常" + if (hipJoint.qtText && hipJoint.qtText !== "") { + + result += ":" + hipJoint.qtText + } + } + tempData['hipJoint'] = result + } + } + + // + if (str == "xlClass") { + + var xlClass = JSON.parse(data); + if (xlClass.select == "1") { + result = "正常"; + } + if (xlClass.select == "2") { + result = "可疑"; + } + if (xlClass.select == "3") { + result = "异常"; + if (xlClass.text && xlClass.text != "") { + result += ":" + xlClass.text; + } + } + tempData['xlClass'] = result + } + + //M-CHAT筛 + // if (str == "chatSc" && data) { + // var chatSc = JSON.parse(data); + // if (chatSc.select == "1") { + // result = "通过"; + // } + // if (chatSc.select == "2") { + // result = "未通过"; + // if (chatSc.text && chatSc.text != "") { + // result += ":" + chatSc.text; + // } + // } + // tempData['chatSc'] = result + // } + + + + + //两次随访间患病 + if (str == "douhbqk") { + + if (data) { + var douhbqk = JSON.parse(data); + if (douhbqk) { + if (douhbqk.yesOrNo === "no") { + result = "未患病"; + } + if (douhbqk.yesOrNo === "yes") { + result = "患病:"; + if (douhbqk.fy) result.length > 3 ? result += "、肺炎" : result += "肺炎"; + if (douhbqk.fx) result.length > 3 ? result += "、腹泻" : result += "腹泻"; + if (douhbqk.ws) result.length > 3 ? result += "、外伤" : result += "外伤"; + if (douhbqk.qt) { + result.length > 3 ? result += "、其他" : result += "其他"; + if (douhbqk.qtText && douhbqk.qtText !== "") { + result += ":" + douhbqk.qtText; + } + } + } + } + tempData['douhbqk'] = result + } + } +} + +function getYyfyTest(data){ + if(!data){ + return + } + var result = '' + var chatSc = JSON.parse(data); + if (chatSc.select == "1") { + result = "M-CHAT筛查:通过" + } + if (chatSc.select == "2") { + result = "M-CHAT筛查:未通过" + if (chatSc.text && chatSc.text != "") { + result += ":" + chatSc.text; + } + } + return result; +} + + + + +module.exports = { + getContentByDeal: getContentByDeal, + getYyfyTest: getYyfyTest, + '1': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '吃奶情况', 'word': 'cnqk', value: '' }, { 'title': '每天吃奶次数', 'word': 'mtcnNum', value: '' }, { 'title': '辅食添加', 'word': 'assistFood', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', valu耳外观e: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '脐带脱落的时间', 'word': 'qdtlTime', value: '' }, { 'title': '皮肤黄染消退的时间', 'word': 'pfhrTime', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '经皮胆红素', 'word': 'bilirubin', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '颈部包块', 'word': 'neck', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '脐部', 'word': 'umbilical', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '肛门/外生殖器', 'word': 'portaGenitals', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '髋关节筛查', 'word': 'hipJoint', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力筛查(DDST)', 'word': 'zlsc', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // 3 + '3': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '吃奶情况', 'word': 'cnqk', value: '' }, { 'title': '每天吃奶次数', 'word': 'mtcnNum', value: '' }, { 'title': '辅食添加', 'word': 'assistFood', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '颈部包块', 'word': 'neck', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '脐部', 'word': 'umbilical', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '可疑佝偻病症状', 'word': 'stoopStatus', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '肛门/外生殖器', 'word': 'portaGenitals', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '微量元素', content: [{ 'title': '铜', 'word': 'wlTong', value: '' }, { 'title': '锌', 'word': 'wlXin', value: '' }, { 'title': '钙', 'word': 'wlGai', value: '' }, { 'title': '镁', 'word': 'wlMei', value: '' }, { 'title': '铁', 'word': 'wlTie', value: '' }, { 'title': '铅', 'word': 'wlQian', value: '' }, { 'title': '镉', 'word': 'wlGe', value: '' }, { 'title': '锰', 'word': 'wlMeng', value: '' }] }, + { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '髋关节筛查', 'word': 'hipJoint', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '先心病筛查', 'word': 'xxbsc', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + // 6yue + '6': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '吃奶情况', 'word': 'cnqk', value: '' }, { 'title': '每天吃奶次数', 'word': 'mtcnNum', value: '' }, { 'title': '辅食添加', 'word': 'assistFood', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '可疑佝偻病症状', 'word': 'stoopStatus', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '肛门/外生殖器', 'word': 'portaGenitals', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, + { hidden: 'yes', 'top_title': '便常规', content: [{ 'title': '颜色', 'word': 'bcgYs', value: '' }, { 'title': '性状', 'word': 'bcgXz', value: '' }, { 'title': '红细胞', 'word': 'bcgHbx', value: '' }, { 'title': '白细胞', 'word': 'bcgBxb', value: '' }, { 'title': '上皮细胞', 'word': 'bcgSpxb', value: '' }, { 'title': '肿瘤细胞', 'word': 'bcgZlxb', value: '' }, { 'title': '淀粉颗粒', 'word': 'bcgDfkl', value: '' }, { 'title': '脂肪颗粒', 'word': 'bcgZfkl', value: '' }, { 'title': '肌纤维', 'word': 'bcgJxw', value: '' }, { 'title': '植物纤维', 'word': 'bcgZwxw', value: '' }, { 'title': '致病菌', 'word': 'bcgZbj', value: '' }, { 'title': '真菌', 'word': 'bcgZj', value: '' }, { 'title': '寄生虫', 'word': 'bcgJsc', value: '' }, { 'title': '原虫', 'word': 'bcgYc', value: '' }, { 'title': '气味', 'word': 'bcgQw', value: '' }] }, + { hidden: 'yes', 'top_title': '微量元素', content: [{ 'title': '铜', 'word': 'wlTong', value: '' }, { 'title': '锌', 'word': 'wlXin', value: '' }, { 'title': '钙', 'word': 'wlGai', value: '' }, { 'title': '镁', 'word': 'wlMei', value: '' }, { 'title': '铁', 'word': 'wlTie', value: '' }, { 'title': '铅', 'word': 'wlQian', value: '' }, { 'title': '镉', 'word': 'wlGe', value: '' }, { 'title': '锰', 'word': 'wlMeng', value: '' }] }, + { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { hidden: 'yes', 'title': '维生素D', 'word': 'jcwd', value: '' }, { 'title': '髋关节筛查', 'word': 'hipJoint', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '先心病筛查', 'word': 'xxbsc', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // ---------------------------------8月 + '8': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '吃奶情况', 'word': 'cnqk', value: '' }, { 'title': '每天吃奶次数', 'word': 'mtcnNum', value: '' }, { 'title': '辅食添加', 'word': 'assistFood', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '可疑佝偻病症状', 'word': 'stoopStatus', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '肛门/外生殖器', 'word': 'portaGenitals', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // ---------------------------------12月 + '12': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '吃奶情况', 'word': 'cnqk', value: '' }, { 'title': '每天吃奶次数', 'word': 'mtcnNum', value: '' }, { 'title': '辅食添加', 'word': 'assistFood', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '听力筛查', 'word': 'hearing', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '可疑佝偻病症状', 'word': 'stoopStatus', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '乙肝五项', content: [{ 'title': '乙肝表面抗原', 'word': 'ygbmky', value: '' }, { 'title': '乙肝表面抗体', 'word': 'ygbmkt', value: '' }, { 'title': '乙肝e抗原', 'word': 'ygeky', value: '' }, { 'title': '乙肝e抗体', 'word': 'ygekt', value: '' }, { 'title': '乙肝核心抗体', 'word': 'yghxkt', value: '' }] }, + { hidden: 'yes', 'top_title': '微量元素', content: [{ 'title': '铜', 'word': 'wlTong', value: '' }, { 'title': '锌', 'word': 'wlXin', value: '' }, { 'title': '钙', 'word': 'wlGai', value: '' }, { 'title': '镁', 'word': 'wlMei', value: '' }, { 'title': '铁', 'word': 'wlTie', value: '' }, { 'title': '铅', 'word': 'wlQian', value: '' }, { 'title': '镉', 'word': 'wlGe', value: '' }, { 'title': '锰', 'word': 'wlMeng', value: '' }] }, + { hidden: 'yes', 'top_title': '肝功能', content: [{ 'title': '血清谷丙转氨酶', 'word': 'xqgbzam', value: '' }, { 'title': '血清谷草转氨酶', 'word': 'xqgczam', value: '' }, { 'title': '白蛋白', 'word': 'albumin', value: '' }, { 'title': '总胆红素', 'word': 'totalBilirubin', value: '' }, { 'title': '结合胆红素', 'word': 'jhBilirubin', value: '' }] }, + { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, { hidden: 'yes', 'title': '维生素A', 'word': 'wssa', value: '' }, { hidden: 'yes', 'title': '维生素E', 'word': 'wsse', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { hidden: 'yes', 'title': '膳食分析', 'word': 'ssfx', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }] + }, + + // ---------------------------------18月 + '18': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '可疑佝偻病症状', 'word': 'stoopStatus', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '步态', 'word': 'stepStatus', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '微量元素', content: [{ 'title': '铜', 'word': 'wlTong', value: '' }, { 'title': '锌', 'word': 'wlXin', value: '' }, { 'title': '钙', 'word': 'wlGai', value: '' }, { 'title': '镁', 'word': 'wlMei', value: '' }, { 'title': '铁', 'word': 'wlTie', value: '' }, { 'title': '铅', 'word': 'wlQian', value: '' }, { 'title': '镉', 'word': 'wlGe', value: '' }, { 'title': '锰', 'word': 'wlMeng', value: '' }] }, { hidden: 'yes', 'title': '维生素D', 'word': 'wssd', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { hidden: 'yes', 'title': '孤独症筛查', 'word': 'gdzsc', value: '' }, { hidden: 'yes', 'title': '膳食分析', 'word': 'ssfx', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // ---------------------------------24月 + '24': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '听力筛查', 'word': 'hearing', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '步态', 'word': 'stepStatus', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, + { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { 'title': '孤独症筛查', 'word': 'gdzsc', value: '' }, { 'title': '膳食分析', 'word': 'ssfx', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // ---------------------------------30月 + '30': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '面色', 'word': 'facecolor', value: '' }, { 'title': '皮肤', 'word': 'skin', value: '' }, { 'title': '眼外观', 'word': 'eye', value: '' }, { 'title': '耳外观', 'word': 'ear', value: '' }, { 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '胸廓畸形', 'word': 'chest', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '可疑佝偻病体征', 'word': 'stoopSign', value: '' }, { 'title': '脊柱四肢', 'word': 'spineFours', value: '' }, { 'title': '步态', 'word': 'stepStatus', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '微量元素', content: [{ 'title': '铜', 'word': 'wlTong', value: '' }, { 'title': '锌', 'word': 'wlXin', value: '' }, { 'title': '钙', 'word': 'wlGai', value: '' }, { 'title': '镁', 'word': 'wlMei', value: '' }, { 'title': '铁', 'word': 'wlTie', value: '' }, { 'title': '铅', 'word': 'wlQian', value: '' }, { 'title': '镉', 'word': 'wlGe', value: '' }, { 'title': '锰', 'word': 'wlMeng', value: '' }] }, { hidden: 'yes', 'title': '维生素D', 'word': 'wssd', value: '' }, { 'title': '乳汁分析', 'word': 'rzfx', value: '' }, { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // ---------------------------------36月 + '36': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '听力筛查', 'word': 'hearing', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, + { hidden: 'yes', 'top_title': '便常规', content: [{ 'title': '颜色', 'word': 'bcgYs', value: '' }, { 'title': '性状', 'word': 'bcgXz', value: '' }, { 'title': '红细胞', 'word': 'bcgHbx', value: '' }, { 'title': '白细胞', 'word': 'bcgBxb', value: '' }, { 'title': '上皮细胞', 'word': 'bcgSpxb', value: '' }, { 'title': '肿瘤细胞', 'word': 'bcgZlxb', value: '' }, { 'title': '淀粉颗粒', 'word': 'bcgDfkl', value: '' }, { 'title': '脂肪颗粒', 'word': 'bcgZfkl', value: '' }, { 'title': '肌纤维', 'word': 'bcgJxw', value: '' }, { 'title': '植物纤维', 'word': 'bcgZwxw', value: '' }, { 'title': '致病菌', 'word': 'bcgZbj', value: '' }, { 'title': '真菌', 'word': 'bcgZj', value: '' }, { 'title': '寄生虫', 'word': 'bcgJsc', value: '' }, { 'title': '原虫', 'word': 'bcgYc', value: '' }, { 'title': '气味', 'word': 'bcgQw', value: '' }] }, + { hidden: 'yes', 'top_title': '乙肝五项', content: [{ 'title': '乙肝表面抗原', 'word': 'ygbmky', value: '' }, { 'title': '乙肝表面抗体', 'word': 'ygbmkt', value: '' }, { 'title': '乙肝e抗原', 'word': 'ygeky', value: '' }, { 'title': '乙肝e抗体', 'word': 'ygekt', value: '' }, { 'title': '乙肝核心抗体', 'word': 'yghxkt', value: '' }] }, + { hidden: 'yes', 'top_title': '肝功能', content: [{ 'title': '血清谷丙转氨酶', 'word': 'xqgbzam', value: '' }, { 'title': '血清谷草转氨酶', 'word': 'xqgczam', value: '' }, { 'title': '白蛋白', 'word': 'albumin', value: '' }, { 'title': '总胆红素', 'word': 'totalBilirubin', value: '' }, { 'title': '结合胆红素', 'word': 'jhBilirubin', value: '' }] }, + { hidden: 'yes', 'title': '维生素D', 'word': 'wssd', value: '' }, { hidden: 'yes', 'title': '维生素A', 'word': 'wssa', value: '' }, { hidden: 'yes', 'title': '维生素E', 'word': 'wsse', value: '' }, { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, + { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { 'title': '运动测评', 'word': 'sportsEvaluation', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { hidden: 'yes', 'title': '入学能力检查', 'word': 'rxnl', value: '' }, { hidden: 'yes', 'title': '膳食分析', 'word': 'ssfx', value: '' }, { 'title': '其他及系统现有的辅助检查项', 'word': 'qtfz', value: '' }, { 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }], + }, + + // ---------------------------------4岁 + '48': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '听力筛查', 'word': 'hearing', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, + + { hidden: 'yes', 'top_title': '便常规', content: [{ 'title': '颜色', 'word': 'bcgYs', value: '' }, { 'title': '性状', 'word': 'bcgXz', value: '' }, { 'title': '红细胞', 'word': 'bcgHbx', value: '' }, { 'title': '白细胞', 'word': 'bcgBxb', value: '' }, { 'title': '上皮细胞', 'word': 'bcgSpxb', value: '' }, { 'title': '肿瘤细胞', 'word': 'bcgZlxb', value: '' }, { 'title': '淀粉颗粒', 'word': 'bcgDfkl', value: '' }, { 'title': '脂肪颗粒', 'word': 'bcgZfkl', value: '' }, { 'title': '肌纤维', 'word': 'bcgJxw', value: '' }, { 'title': '植物纤维', 'word': 'bcgZwxw', value: '' }, { 'title': '致病菌', 'word': 'bcgZbj', value: '' }, { 'title': '真菌', 'word': 'bcgZj', value: '' }, { 'title': '寄生虫', 'word': 'bcgJsc', value: '' }, { 'title': '原虫', 'word': 'bcgYc', value: '' }, { 'title': '气味', 'word': 'bcgQw', value: '' }] }, + { hidden: 'yes', 'top_title': '微量元素', content: [{ 'title': '铜', 'word': 'wlTong', value: '' }, { 'title': '锌', 'word': 'wlXin', value: '' }, { 'title': '钙', 'word': 'wlGai', value: '' }, { 'title': '镁', 'word': 'wlMei', value: '' }, { 'title': '铁', 'word': 'wlTie', value: '' }, { 'title': '铅', 'word': 'wlQian', value: '' }, { 'title': '镉', 'word': 'wlGe', value: '' }, { 'title': '锰', 'word': 'wlMeng', value: '' }] }, + + { hidden: 'yes', 'title': '维生素D', 'word': 'wssd', value: '' }, { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, + { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { hidden: 'yes', 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { hidden: 'yes', 'title': '感觉统合能力检查', 'word': 'gjzh', value: '' }, { hidden: 'yes', 'title': '膳食分析', 'word': 'ssfx', value: '' }], + }, + + // ---------------------------------5岁 + '60': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '听力筛查', 'word': 'hearing', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, + + { hidden: 'yes', 'top_title': '便常规', content: [{ 'title': '颜色', 'word': 'bcgYs', value: '' }, { 'title': '性状', 'word': 'bcgXz', value: '' }, { 'title': '红细胞', 'word': 'bcgHbx', value: '' }, { 'title': '白细胞', 'word': 'bcgBxb', value: '' }, { 'title': '上皮细胞', 'word': 'bcgSpxb', value: '' }, { 'title': '肿瘤细胞', 'word': 'bcgZlxb', value: '' }, { 'title': '淀粉颗粒', 'word': 'bcgDfkl', value: '' }, { 'title': '脂肪颗粒', 'word': 'bcgZfkl', value: '' }, { 'title': '肌纤维', 'word': 'bcgJxw', value: '' }, { 'title': '植物纤维', 'word': 'bcgZwxw', value: '' }, { 'title': '致病菌', 'word': 'bcgZbj', value: '' }, { 'title': '真菌', 'word': 'bcgZj', value: '' }, { 'title': '寄生虫', 'word': 'bcgJsc', value: '' }, { 'title': '原虫', 'word': 'bcgYc', value: '' }, { 'title': '气味', 'word': 'bcgQw', value: '' }] }, + + { hidden: 'yes', 'title': '维生素D', 'word': 'wssd', value: '' }, { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, + { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { hidden: 'yes', 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { 'title': '膳食分析', 'word': 'ssfx', value: '' }], + }, + + // ---------------------------------6岁 + '72': { + 'wz': [{ 'title': '主要抚养人', 'word': 'mainFoster', value: '' }, { 'title': '喂养方式', 'word': 'feedType', value: '' }, { 'title': '小便次数', 'word': 'xbNum', value: '' }, { 'title': '小便', 'word': 'pee', value: '' }, { 'title': '大便次数', 'word': 'dbNum', value: '' }, { 'title': '大便', 'word': 'excrement', value: '' }, { 'title': '睡眠', 'word': 'sleep', value: '' }, { 'title': '户外活动', 'word': 'activity', value: '' }, { 'title': '维生素D', 'word': 'vitaminD', value: '' }, { 'title': '维生素AD', 'word': 'wssAd', value: '' }, { 'title': '家庭措施', 'word': 'homeMeasure', value: '' }, { 'title': '两次随访间患病情况', 'word': 'douhbqk', value: '' }, { 'title': '过敏史', 'word': 'drugGllergic', value: '' }, { 'title': '其它', 'word': 'otherText', value: '' }], + + 'yb': [{ 'title': '体温', 'word': 'temperature', value: '' }, { 'title': '身长', 'word': 'height', value: '' }, { 'title': '体重', 'word': 'weight', value: '' }, { 'title': '身长别体重', 'word': 'heightWeight', value: '' }, { 'title': '头围', 'word': 'head', value: '' }, { 'title': '前囟', 'word': 'bregma', value: '' }, { 'title': '胸围', 'word': 'chestw', value: '' }, { 'title': '体格发育评价', 'word': 'growthEvaluate', value: '' }], + + 'tg': [{ 'title': '口腔', 'word': 'kq', value: '' }, { 'title': '咽/扁桃体', 'word': 'btt', value: '' }, { 'title': '心肺', 'word': 'xf', value: '' }, { 'title': '腹部', 'word': 'belly', value: '' }, { 'title': '听力筛查', 'word': 'hearing', value: '' }, { 'title': '其他', 'word': 'otherText', value: '' }], + + 'fz': [{ hidden: 'yes', 'top_title': '血常规', content: [{ 'title': '血红蛋白', 'word': 'hemoglobin', value: '' }, { 'title': '血红蛋白券', 'word': 'hemoglobinCoupon', value: '' }, { 'title': '白细胞计数', 'word': 'whiteCell', value: '' }, { 'title': '血小板计数', 'word': 'platelet', value: '' }, { 'title': '血常规其他', 'word': 'otherBlood', value: '' }] }, + { hidden: 'yes', 'top_title': '尿常规', content: [{ 'title': '尿蛋白', 'word': 'urineProtein', value: '' }, { 'title': '尿糖', 'word': 'urineSugar', value: '' }, { 'title': '尿酮体', 'word': 'urineAcetone', value: '' }, { 'title': '尿潜血', 'word': 'hematuria', value: '' }, { 'title': '尿其他', 'word': 'otherUrine', value: '' }] }, + + { hidden: 'yes', 'top_title': '便常规', content: [{ 'title': '颜色', 'word': 'bcgYs', value: '' }, { 'title': '性状', 'word': 'bcgXz', value: '' }, { 'title': '红细胞', 'word': 'bcgHbx', value: '' }, { 'title': '白细胞', 'word': 'bcgBxb', value: '' }, { 'title': '上皮细胞', 'word': 'bcgSpxb', value: '' }, { 'title': '肿瘤细胞', 'word': 'bcgZlxb', value: '' }, { 'title': '淀粉颗粒', 'word': 'bcgDfkl', value: '' }, { 'title': '脂肪颗粒', 'word': 'bcgZfkl', value: '' }, { 'title': '肌纤维', 'word': 'bcgJxw', value: '' }, { 'title': '植物纤维', 'word': 'bcgZwxw', value: '' }, { 'title': '致病菌', 'word': 'bcgZbj', value: '' }, { 'title': '真菌', 'word': 'bcgZj', value: '' }, { 'title': '寄生虫', 'word': 'bcgJsc', value: '' }, { 'title': '原虫', 'word': 'bcgYc', value: '' }, { 'title': '气味', 'word': 'bcgQw', value: '' }] }, + { hidden: 'yes', 'top_title': '肝功能', content: [{ 'title': '血清谷丙转氨酶', 'word': 'xqgbzam', value: '' }, { 'title': '血清谷草转氨酶', 'word': 'xqgczam', value: '' }, { 'title': '白蛋白', 'word': 'albumin', value: '' }, { 'title': '总胆红素', 'word': 'totalBilirubin', value: '' }, { 'title': '结合胆红素', 'word': 'jhBilirubin', value: '' }] }, + + { hidden: 'yes', 'top_title': '乙肝五项', content: [{ 'title': '乙肝表面抗原', 'word': 'ygbmky', value: '' }, { 'title': '乙肝表面抗体', 'word': 'ygbmkt', value: '' }, { 'title': '乙肝e抗原', 'word': 'ygeky', value: '' }, { 'title': '乙肝e抗体', 'word': 'ygekt', value: '' }, { 'title': '乙肝核心抗体', 'word': 'yghxkt', value: '' }] }, + + { hidden: 'yes', 'title': '维生素D', 'word': 'wssd', value: '' }, { hidden: 'yes', 'title': '维生素A', 'word': 'wssa', value: '' }, { hidden: 'yes', 'title': '维生素E', 'word': 'wsse', value: '' }, { hidden: 'yes', 'title': '尿碘', 'word': 'nd', value: '' }, + { 'title': '骨密度Z值', 'word': 'bonez', value: '' }, { 'title': '心理行为发育测评', 'word': 'zheartActCheck', value: '' }, { hidden: 'yes', 'title': '儿童早期语言发育测评', 'word': 'yyfyTest', value: '' }, { hidden: 'yes', 'title': '智力测评', 'word': 'zlcp', value: '' }, { hidden: 'yes', 'title': '膳食分析', 'word': 'ssfx', value: '' }], + }, + + +} diff --git a/littleApp_child/utils/network_util.js b/littleApp_child/utils/network_util.js index d91474c..633e3ce 100644 --- a/littleApp_child/utils/network_util.js +++ b/littleApp_child/utils/network_util.js @@ -84,6 +84,7 @@ function _post(port, params, success, fail, contentType) { } }) } + function _put(port, params, success, fail, contentType) { console.log('---------------request_PUT-----------url:' + port) wx.request({