Commit 5e583b20 by 唐玉峰

,

parent 56b5e6e6
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
"@vue/cli-service": "~4.4.0", "@vue/cli-service": "~4.4.0",
"axios": "^0.19.2", "axios": "^0.19.2",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"echarts": "^5.3.2", "echarts": "^4.0.4",
"eslint": "^6.7.2", "eslint": "^6.7.2",
"dayjs": "^1.11.8", "dayjs": "^1.11.8",
"eslint-plugin-vue": "^6.2.2", "eslint-plugin-vue": "^6.2.2",
......
<template> <template>
<div id="app"> <div id="app">
<router-view/> <router-view />
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: 'App', name: "App",
};
}
</script> </script>
<style> <style>
body,
html,
#app {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style> </style>
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="24" class="juStart"> <el-col :span="24" class="juStart">
<span class="key a46C"> 医疗付费方式:{{ changeValue('a46C') }} </span> <span class="key a46C"> 医疗付费方式:{{ changeValue("a46C") }} </span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -16,7 +16,8 @@ ...@@ -16,7 +16,8 @@
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key a47"> 健康卡号: </span></el-col> <el-col :span="12"><span class="key a47"> 健康卡号: </span></el-col>
<el-col :span="12"><span>{{ changeValue('a47') }}</span> <el-col :span="12"
><span>{{ changeValue("a47") }}</span>
</el-col> </el-col>
</el-row> </el-row>
</el-col> </el-col>
...@@ -24,7 +25,9 @@ ...@@ -24,7 +25,9 @@
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key a49"></span></el-col> <el-col :span="8"><span class="key a49"></span></el-col>
<el-col :span="8"><span> {{ changeValue('a49') }} </span></el-col> <el-col :span="8"
><span> {{ changeValue("a49") }} </span></el-col
>
<el-col :span="8"><span class="key"> 次入院 </span></el-col> <el-col :span="8"><span class="key"> 次入院 </span></el-col>
</el-row> </el-row>
</el-col> </el-col>
...@@ -32,14 +35,18 @@ ...@@ -32,14 +35,18 @@
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key a48"> 病案号: </span></el-col> <el-col :span="12"><span class="key a48"> 病案号: </span></el-col>
<el-col :span="12"><span> {{ changeValue('a48') }} </span></el-col> <el-col :span="12"
><span> {{ changeValue("a48") }} </span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key"></span></el-col> <el-col :span="8"><span class="key"></span></el-col>
<el-col :span="8"><span> {{ changeValue('') }} </span></el-col> <el-col :span="8"
><span> {{ changeValue("") }} </span></el-col
>
<el-col :span="8"><span class="key"></span></el-col> <el-col :span="8"><span class="key"></span></el-col>
</el-row> </el-row>
</el-col> </el-col>
...@@ -49,33 +56,41 @@ ...@@ -49,33 +56,41 @@
<el-col :xl="3" :lg="3" :md="4"> <el-col :xl="3" :lg="3" :md="4">
<el-row> <el-row>
<el-col :span="12"><span class="key a11"> 姓名 </span></el-col> <el-col :span="12"><span class="key a11"> 姓名 </span></el-col>
<el-col :span="12"><span class="values"> {{ changeValue('a11') }} </span></el-col> <el-col :span="12"
><span class="values"> {{ changeValue("a11") }} </span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="3" :lg="3" :md="3"> <el-col :xl="3" :lg="3" :md="3">
<el-row> <el-row>
<el-col :span="12"><span class="key a12C"> 性别 </span></el-col> <el-col :span="12"><span class="key a12C"> 性别 </span></el-col>
<el-col :span="12"><span class="values"> {{ changeValue('a12C') }} </span></el-col> <el-col :span="12"
><span class="values"> {{ changeValue("a12C") }} </span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="10" :lg="10" :md="9"> <el-col :xl="10" :lg="10" :md="9">
<el-row> <el-row>
<el-col :span="7"><span class="key a13">出生日期 </span></el-col> <el-col :span="7"><span class="key a13">出生日期 </span></el-col>
<el-col :span="17"><span class="values"> {{ changeValue('a13') != '——' ? <el-col :span="17"
transformTime(changeValue('a13')) : changeValue('a13') ><span class="values"> {{ changeValue("a13") != "——" ? transformTimestamp(changeValue("a13")) : changeValue("a13") }}</span></el-col
}}</span></el-col> >
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="4"> <el-col :xl="4" :lg="4" :md="4">
<el-row> <el-row>
<el-col :span="12"><span class="key a14">年龄 </span></el-col> <el-col :span="12"><span class="key a14">年龄 </span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a14') }} </span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a14") }} </span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="4"> <el-col :xl="4" :lg="4" :md="4">
<el-row> <el-row>
<el-col :span="12"><span class="key a15C">国籍 </span></el-col> <el-col :span="12"><span class="key a15C">国籍 </span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a15C') }} </span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a15C") }} </span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -86,7 +101,7 @@ ...@@ -86,7 +101,7 @@
<el-col :span="12" :md="15"><span class="value" style="border: none">(年龄不满一周岁的)</span></el-col> <el-col :span="12" :md="15"><span class="value" style="border: none">(年龄不满一周岁的)</span></el-col>
<el-col :span="4" :md="4"><span class="key a16">年龄</span></el-col> <el-col :span="4" :md="4"><span class="key a16">年龄</span></el-col>
<el-col :span="6" :md="3"> <el-col :span="6" :md="3">
<span class="values"> {{ changeValue('a16') }} </span> <span class="values"> {{ changeValue("a16") }} </span>
</el-col> </el-col>
<el-col :span="2"><span class="value" style="border: none"></span></el-col> <el-col :span="2"><span class="value" style="border: none"></span></el-col>
</el-row> </el-row>
...@@ -95,7 +110,9 @@ ...@@ -95,7 +110,9 @@
<el-col :span="7"> <el-col :span="7">
<el-row> <el-row>
<el-col :span="15"><span class="key a18x01">新生儿出生体重</span></el-col> <el-col :span="15"><span class="key a18x01">新生儿出生体重</span></el-col>
<el-col :span="6"><span class="values"> {{ changeValue('a18x01') }} </span></el-col> <el-col :span="6"
><span class="values"> {{ changeValue("a18x01") }} </span></el-col
>
<el-col :span="3"><span class="value" style="border: none"></span></el-col> <el-col :span="3"><span class="value" style="border: none"></span></el-col>
</el-row> </el-row>
</el-col> </el-col>
...@@ -103,7 +120,9 @@ ...@@ -103,7 +120,9 @@
<el-col :span="8"> <el-col :span="8">
<el-row> <el-row>
<el-col :span="14"><span class="key a17">新生儿入院体重</span></el-col> <el-col :span="14"><span class="key a17">新生儿入院体重</span></el-col>
<el-col :span="6"><span class="values"> {{ changeValue('a17') }} </span></el-col> <el-col :span="6"
><span class="values"> {{ changeValue("a17") }} </span></el-col
>
<el-col :span="4"><span class="value" style="border: none"></span></el-col> <el-col :span="4"><span class="value" style="border: none"></span></el-col>
</el-row> </el-row>
</el-col> </el-col>
...@@ -113,20 +132,26 @@ ...@@ -113,20 +132,26 @@
<el-col :span="10"> <el-col :span="10">
<el-row> <el-row>
<el-col :span="5"><span class="key a22">出生地</span></el-col> <el-col :span="5"><span class="key a22">出生地</span></el-col>
<el-col :span="19"><span class="values">{{ changeValue('a22') }}</span></el-col> <el-col :span="19"
><span class="values">{{ changeValue("a22") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="9"> <el-col :span="9">
<el-row> <el-row>
<el-col :span="4"><span class="key a23C">籍贯</span></el-col> <el-col :span="4"><span class="key a23C">籍贯</span></el-col>
<el-col :span="20"><span class="values">{{ changeValue('a23C') }}</span></el-col> <el-col :span="20"
><span class="values">{{ changeValue("a23C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="5"> <el-col :span="5">
<el-row> <el-row>
<el-col :span="12"><span class="key a19C">民族</span></el-col> <el-col :span="12"><span class="key a19C">民族</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a19C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a19C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -135,19 +160,25 @@ ...@@ -135,19 +160,25 @@
<el-col :span="12"> <el-col :span="12">
<el-row> <el-row>
<el-col :span="5"><span class="key a20">身份证号</span></el-col> <el-col :span="5"><span class="key a20">身份证号</span></el-col>
<el-col :span="19"><span class="values">{{ changeValue('a20') }}</span></el-col> <el-col :span="19"
><span class="values">{{ changeValue("a20") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key a38C">职业</span></el-col> <el-col :span="8"><span class="key a38C">职业</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a38C') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a38C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key a21C">婚姻</span></el-col> <el-col :span="8"><span class="key a21C">婚姻</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a21C') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a21C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -156,19 +187,25 @@ ...@@ -156,19 +187,25 @@
<el-col :span="12"> <el-col :span="12">
<el-row> <el-row>
<el-col :span="4"><span class="key a26">现住址</span></el-col> <el-col :span="4"><span class="key a26">现住址</span></el-col>
<el-col :span="20"><span class="values">{{ changeValue('a26') }}</span></el-col> <el-col :span="20"
><span class="values">{{ changeValue("a26") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key a27">电话</span></el-col> <el-col :span="8"><span class="key a27">电话</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a27') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a27") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key a28C">邮编</span></el-col> <el-col :span="8"><span class="key a28C">邮编</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a28C') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a28C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -177,13 +214,17 @@ ...@@ -177,13 +214,17 @@
<el-col :span="15"> <el-col :span="15">
<el-row> <el-row>
<el-col :span="4"><span class="key a24">户口地址</span></el-col> <el-col :span="4"><span class="key a24">户口地址</span></el-col>
<el-col :span="20"><span class="values">{{ changeValue('a24') }}</span></el-col> <el-col :span="20"
><span class="values">{{ changeValue("a24") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key a25C">邮编</span></el-col> <el-col :span="12"><span class="key a25C">邮编</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a25C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a25C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -192,19 +233,25 @@ ...@@ -192,19 +233,25 @@
<el-col :xl="13" :lg="13" :md="15"> <el-col :xl="13" :lg="13" :md="15">
<el-row justify="left"> <el-row justify="left">
<el-col :span="7"><span class="key a29">工作单位及地址</span></el-col> <el-col :span="7"><span class="key a29">工作单位及地址</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a29') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a29") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="5"> <el-col :span="5">
<el-row> <el-row>
<el-col :span="12"><span class="key a30">单位电话</span></el-col> <el-col :span="12"><span class="key a30">单位电话</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a30') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a30") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<el-row> <el-row>
<el-col :span="12"><span class="key a31C">邮编</span></el-col> <el-col :span="12"><span class="key a31C">邮编</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a31C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a31C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -213,26 +260,34 @@ ...@@ -213,26 +260,34 @@
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key a32">联系人姓名</span></el-col> <el-col :span="12"><span class="key a32">联系人姓名</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('a32') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("a32") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="5"> <el-col :span="5">
<el-row> <el-row>
<el-col :span="8"><span class="key a33C">关系</span></el-col> <el-col :span="8"><span class="key a33C">关系</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a33C') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a33C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
<el-row> <el-row>
<el-col :span="6"><span class="key a34">地址</span></el-col> <el-col :span="6"><span class="key a34">地址</span></el-col>
<el-col :span="18"><span class="values">{{ changeValue('a34') }}</span></el-col> <el-col :span="18"
><span class="values">{{ changeValue("a34") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="5"> <el-col :span="5">
<el-row> <el-row>
<el-col :span="8"><span class="key a35">电话</span></el-col> <el-col :span="8"><span class="key a35">电话</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('a35') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("a35") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -242,7 +297,7 @@ ...@@ -242,7 +297,7 @@
<span class="key b11C">入院途径</span> <span class="key b11C">入院途径</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="values">{{ changeValue('b11C') }}</span> <span class="values">{{ changeValue("b11C") }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -250,30 +305,36 @@ ...@@ -250,30 +305,36 @@
<el-col :xl="7" :lg="7" :md="10"> <el-col :xl="7" :lg="7" :md="10">
<el-row> <el-row>
<el-col :span="8"><span class="key b12">入院时间 </span></el-col> <el-col :span="8"><span class="key b12">入院时间 </span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('b12') != '——' ? <el-col :span="16"
transformTime(changeValue('b12')) : changeValue('b12') ><span class="values">{{ changeValue("b12") != "——" ? transformTimestamp(changeValue("b12")) : changeValue("b12") }}</span></el-col
}}</span></el-col> >
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="7"> <el-col :xl="5" :lg="5" :md="7">
<el-row> <el-row>
<el-col :span="10"><span class="key b13C">入院科别 </span></el-col> <el-col :span="10"><span class="key b13C">入院科别 </span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b13C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b13C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="5"> <el-col :xl="5" :lg="5" :md="5">
<el-row> <el-row>
<el-col :span="8"><span class="key b14">病房 </span></el-col> <el-col :span="8"><span class="key b14">病房 </span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('b14') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("b14") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="5"> <el-col :xl="5" :lg="5" :md="5">
<el-row> <el-row>
<el-col :span="12"><span class="key b21C">转科科别 </span></el-col> <el-col :span="12"><span class="key b21C">转科科别 </span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b21C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b21C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -282,30 +343,36 @@ ...@@ -282,30 +343,36 @@
<el-col :xl="7" :lg="7" :md="10"> <el-col :xl="7" :lg="7" :md="10">
<el-row> <el-row>
<el-col :span="8"><span class="key b15">出院时间 </span></el-col> <el-col :span="8"><span class="key b15">出院时间 </span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('b15') != '——' ? <el-col :span="16"
transformTime(changeValue('b15')) : changeValue('b15') ><span class="values">{{ changeValue("b15") != "——" ? transformTimestamp(changeValue("b15")) : changeValue("b15") }}</span></el-col
}}</span></el-col> >
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="7"> <el-col :xl="5" :lg="5" :md="7">
<el-row> <el-row>
<el-col :span="12"><span class="key b16C">出院科别 </span></el-col> <el-col :span="12"><span class="key b16C">出院科别 </span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b16C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b16C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="5"> <el-col :xl="5" :lg="5" :md="5">
<el-row> <el-row>
<el-col :span="8"><span class="key b17">病房 </span></el-col> <el-col :span="8"><span class="key b17">病房 </span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('b17') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("b17") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="5"> <el-col :xl="5" :lg="5" :md="5">
<el-row> <el-row>
<el-col :span="12"><span class="key b20">实际住院 </span></el-col> <el-col :span="12"><span class="key b20">实际住院 </span></el-col>
<el-col :span="8"><span class="values">{{ changeValue('b20') }}</span></el-col> <el-col :span="8"
><span class="values">{{ changeValue("b20") }}</span></el-col
>
<el-col :span="4"><span class="key"></span></el-col> <el-col :span="4"><span class="key"></span></el-col>
</el-row> </el-row>
</el-col> </el-col>
...@@ -315,13 +382,17 @@ ...@@ -315,13 +382,17 @@
<el-col :span="13"> <el-col :span="13">
<el-row> <el-row>
<el-col :span="7"><span class="key c02N">门(急)诊诊断</span></el-col> <el-col :span="7"><span class="key c02N">门(急)诊诊断</span></el-col>
<el-col :span="17"><span class="values">{{ changeValue('c02N') }}</span></el-col> <el-col :span="17"
><span class="values">{{ changeValue("c02N") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key c01C">疾病编码</span></el-col> <el-col :span="12"><span class="key c01C">疾病编码</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('c01C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("c01C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -329,13 +400,17 @@ ...@@ -329,13 +400,17 @@
<el-col :span="9"> <el-col :span="9">
<el-row> <el-row>
<el-col :span="12"><span class="key c03C">出院主要诊断编码</span></el-col> <el-col :span="12"><span class="key c03C">出院主要诊断编码</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('c03C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("c03C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
<el-row> <el-row>
<el-col :span="10"><span class="key c04N">出院主要诊断名称</span></el-col> <el-col :span="10"><span class="key c04N">出院主要诊断名称</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('c04N') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("c04N") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -350,20 +425,26 @@ ...@@ -350,20 +425,26 @@
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="3"><span class="key c05C">入院病情</span></el-col> <el-col :span="3"><span class="key c05C">入院病情</span></el-col>
<el-col :span="20"><span class="values">{{ changeValue('c05C') }}</span></el-col> <el-col :span="20"
><span class="values">{{ changeValue("c05C") }}</span></el-col
>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="18"> <el-col :span="18">
<el-row> <el-row>
<el-col :span="8"><span class="key c13N">损伤、中毒的外部原因</span></el-col> <el-col :span="8"><span class="key c13N">损伤、中毒的外部原因</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('c13N') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("c13N") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key c12C">疾病编码</span></el-col> <el-col :span="12"><span class="key c12C">疾病编码</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('c12C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("c12C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -372,19 +453,25 @@ ...@@ -372,19 +453,25 @@
<el-col :span="12"> <el-col :span="12">
<el-row> <el-row>
<el-col :span="5"><span class="key c10N">病理诊断:</span></el-col> <el-col :span="5"><span class="key c10N">病理诊断:</span></el-col>
<el-col :span="17"><span class="values">{{ changeValue('c10N') }}</span></el-col> <el-col :span="17"
><span class="values">{{ changeValue("c10N") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key c09C">疾病编码</span></el-col> <el-col :span="10"><span class="key c09C">疾病编码</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('c09C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("c09C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key c11">病理号</span></el-col> <el-col :span="8"><span class="key c11">病理号</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('c11') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("c11") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -393,15 +480,21 @@ ...@@ -393,15 +480,21 @@
<el-col :span="18"> <el-col :span="18">
<el-row> <el-row>
<el-col :span="3"><span class="key c24C">药物过敏</span></el-col> <el-col :span="3"><span class="key c24C">药物过敏</span></el-col>
<el-col :span="4"><span class="values">{{ changeValue('c24C') }}</span></el-col> <el-col :span="4"
><span class="values">{{ changeValue("c24C") }}</span></el-col
>
<el-col :span="4"><span class="value c25" style="border: none">过敏药物</span></el-col> <el-col :span="4"><span class="value c25" style="border: none">过敏药物</span></el-col>
<el-col :span="11"><span class="values">{{ changeValue('c25') }}</span></el-col> <el-col :span="11"
><span class="values">{{ changeValue("c25") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="16"><span class="key c34C">死亡患者尸检</span></el-col> <el-col :span="16"><span class="key c34C">死亡患者尸检</span></el-col>
<el-col :span="8"><span class="values">{{ changeValue('c34C') }}</span></el-col> <el-col :span="8"
><span class="values">{{ changeValue("c34C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -410,13 +503,17 @@ ...@@ -410,13 +503,17 @@
<el-col :span="8"> <el-col :span="8">
<el-row> <el-row>
<el-col :span="5"><span class="key c26C">血型</span></el-col> <el-col :span="5"><span class="key c26C">血型</span></el-col>
<el-col :span="10"><span class="values">{{ changeValue('c26C') }}</span></el-col> <el-col :span="10"
><span class="values">{{ changeValue("c26C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-row> <el-row>
<el-col :span="4"><span class="key c27C">RH</span></el-col> <el-col :span="4"><span class="key c27C">RH</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('c27C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("c27C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -425,27 +522,35 @@ ...@@ -425,27 +522,35 @@
<el-col :span="5"> <el-col :span="5">
<el-row> <el-row>
<el-col :span="10"><span class="key b22">科主任</span></el-col> <el-col :span="10"><span class="key b22">科主任</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b22') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b22") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
<el-row> <el-row>
<el-col :span="16"><span class="key b23">主任(副主任)医师</span></el-col> <el-col :span="16"><span class="key b23">主任(副主任)医师</span></el-col>
<el-col :span="8"><span class="values">{{ changeValue('b23') }}</span></el-col> <el-col :span="8"
><span class="values">{{ changeValue("b23") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key b24">主治医师</span></el-col> <el-col :span="10"><span class="key b24">主治医师</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b24') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b24") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key b25">住院医师</span></el-col> <el-col :span="10"><span class="key b25">住院医师</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b25') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b25") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -454,13 +559,17 @@ ...@@ -454,13 +559,17 @@
<el-col :span="10"> <el-col :span="10">
<el-row> <el-row>
<el-col :span="8"><span class="key b22C">科主任编码</span></el-col> <el-col :span="8"><span class="key b22C">科主任编码</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b22C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b22C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-row> <el-row>
<el-col :span="10"><span class="key b23C">主任(副主任)医师编码</span></el-col> <el-col :span="10"><span class="key b23C">主任(副主任)医师编码</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b23C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b23C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -468,14 +577,18 @@ ...@@ -468,14 +577,18 @@
<el-col :span="11"> <el-col :span="11">
<el-row> <el-row>
<el-col :span="8"><span class="key b24C">主治医师编码</span></el-col> <el-col :span="8"><span class="key b24C">主治医师编码</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b24C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b24C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-row> <el-row>
<el-col :span="9"><span class="key b25C">住院医师编码</span></el-col> <el-col :span="9"><span class="key b25C">住院医师编码</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b25C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b25C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -484,25 +597,33 @@ ...@@ -484,25 +597,33 @@
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key b28">实习医师</span></el-col> <el-col :span="10"><span class="key b28">实习医师</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b28') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b28") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key b27">进修医师</span></el-col> <el-col :span="10"><span class="key b27">进修医师</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b27') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b27") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key b26">责任护士</span></el-col> <el-col :span="10"><span class="key b26">责任护士</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b26') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b26") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="12"><span class="key b26C">责任护士编码</span></el-col> <el-col :span="12"><span class="key b26C">责任护士编码</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b26C') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b26C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
...@@ -511,35 +632,43 @@ ...@@ -511,35 +632,43 @@
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key b29">编码员</span></el-col> <el-col :span="8"><span class="key b29">编码员</span></el-col>
<el-col :span="12"><span class="values">{{ changeValue('b29') }}</span></el-col> <el-col :span="12"
><span class="values">{{ changeValue("b29") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key b30C">病案质量</span></el-col> <el-col :span="8"><span class="key b30C">病案质量</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b30C') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b30C") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="10"><span class="key b31">质控医师</span></el-col> <el-col :span="10"><span class="key b31">质控医师</span></el-col>
<el-col :span="14"><span class="values">{{ changeValue('b31') }}</span></el-col> <el-col :span="14"
><span class="values">{{ changeValue("b31") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-row> <el-row>
<el-col :span="8"><span class="key b32">质控护士</span></el-col> <el-col :span="8"><span class="key b32">质控护士</span></el-col>
<el-col :span="16"><span class="values">{{ changeValue('b32') }}</span></el-col> <el-col :span="16"
><span class="values">{{ changeValue("b32") }}</span></el-col
>
</el-row> </el-row>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="3"><span class="key b33">质控日期</span></el-col> <el-col :span="3"><span class="key b33">质控日期</span></el-col>
<el-col :span="15"><span class="values">{{ changeValue('b33') != '——' ? <el-col :span="15"
transformTime(changeValue('b33')) : changeValue('b33') ><span class="values">{{ changeValue("b33") != "——" ? transformTimestamp(changeValue("b33")) : changeValue("b33") }}</span></el-col
}}</span></el-col> >
</el-row> </el-row>
</div> </div>
...@@ -549,7 +678,7 @@ ...@@ -549,7 +678,7 @@
<el-table-column prop="opS_CODE" label="手术及操作编码"></el-table-column> <el-table-column prop="opS_CODE" label="手术及操作编码"></el-table-column>
<el-table-column prop="opS_TIME" label="手术及操作日期"> <el-table-column prop="opS_TIME" label="手术及操作日期">
<template #default="scope"> <template #default="scope">
{{ scope.row.opS_TIME ? transformTime(scope.row.opS_TIME) : '' }} {{ scope.row.opS_TIME ? transformTimestamp(scope.row.opS_TIME) : "" }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="opS_LEVEL" label="手术级别"></el-table-column> <el-table-column prop="opS_LEVEL" label="手术级别"></el-table-column>
...@@ -568,27 +697,35 @@ ...@@ -568,27 +697,35 @@
<el-row> <el-row>
<el-col :xl="3" :lg="3" :md="3"> <span class="key b34C"> 离院方式: </span></el-col> <el-col :xl="3" :lg="3" :md="3"> <span class="key b34C"> 离院方式: </span></el-col>
<el-col :xl="3" :lg="3" :md="3"> <el-col :xl="3" :lg="3" :md="3">
<span class="value"> {{ changeValue('b34C') }} </span> <span class="value"> {{ changeValue("b34C") }} </span>
</el-col> </el-col>
<el-col :xl="9" :lg="10" :md="12"><span class="value noBottomBoder b35">1.医嘱离院 2.医嘱转院,拟接收医疗机构名称: </span> <el-col :xl="9" :lg="10" :md="12"><span class="value noBottomBoder b35">1.医嘱离院 2.医嘱转院,拟接收医疗机构名称: </span> </el-col>
</el-col> <el-col :xl="8" :lg="8" :md="6"
<el-col :xl="8" :lg="8" :md="6"><span class="value"> {{ changeValue('b35') }}</span></el-col> ><span class="value"> {{ changeValue("b35") }}</span></el-col
>
</el-row> </el-row>
<el-row> <el-row>
<el-col :xl="12" :lg="13" :md="16"><span <el-col :xl="12" :lg="13" :md="16"
class="value noBottomBoder b35">3.医嘱转社区卫生服务机构/乡镇卫生院,拟接收医疗机构名称:</span></el-col> ><span class="value noBottomBoder b35">3.医嘱转社区卫生服务机构/乡镇卫生院,拟接收医疗机构名称:</span></el-col
<el-col :xl="4" :lg="4" :md="8"><span class="value"> {{ changeValue('b35') }}</span></el-col> >
<el-col :xl="4" :lg="4" :md="8"
><span class="value"> {{ changeValue("b35") }}</span></el-col
>
<el-col :xl="5" :lg="6" :md="7"><span class="value noBottomBoder">4.非医嘱离院5.死亡9.其他</span></el-col> <el-col :xl="5" :lg="6" :md="7"><span class="value noBottomBoder">4.非医嘱离院5.死亡9.其他</span></el-col>
</el-row> </el-row>
<hr /> <hr />
<el-row> <el-row>
<el-col :xl="6" :lg="6" :md="8"><span class="value noBottomBoder b36C">是否有出院31天内再住院计划</span></el-col> <el-col :xl="6" :lg="6" :md="8"><span class="value noBottomBoder b36C">是否有出院31天内再住院计划</span></el-col>
<el-col :xl="2" :lg="2" :md="2"><span class="value"> {{ changeValue('b36C') }}</span></el-col> <el-col :xl="2" :lg="2" :md="2"
><span class="value"> {{ changeValue("b36C") }}</span></el-col
>
<el-col :xl="2" :lg="2" :md="2"><span class="value noBottomBoder b37">目的:</span></el-col> <el-col :xl="2" :lg="2" :md="2"><span class="value noBottomBoder b37">目的:</span></el-col>
<el-col :xl="11" :lg="11" :md="11"><span class="value"> {{ changeValue('b37') }}</span></el-col> <el-col :xl="11" :lg="11" :md="11"
><span class="value"> {{ changeValue("b37") }}</span></el-col
>
</el-row> </el-row>
<hr /> <hr />
...@@ -598,30 +735,30 @@ ...@@ -598,30 +735,30 @@
<span class="value noBottomBoder c28 c29 c30"> 颅脑损伤患者昏迷时间:入院前</span> <span class="value noBottomBoder c28 c29 c30"> 颅脑损伤患者昏迷时间:入院前</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2"> <el-col :xl="1" :lg="1" :md="2">
<span class="value"> {{ changeValue('c28') }}</span> <span class="value"> {{ changeValue("c28") }}</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2"></el-col> <el-col :xl="1" :lg="1" :md="2"></el-col>
<el-col :xl="1" :lg="1" :md="2"> <el-col :xl="1" :lg="1" :md="2">
<span class="value"> {{ changeValue('c29') }}</span> <span class="value"> {{ changeValue("c29") }}</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2">小时</el-col> <el-col :xl="1" :lg="1" :md="2">小时</el-col>
<el-col :xl="1" :lg="1" :md="2"> <el-col :xl="1" :lg="1" :md="2">
<span class="value"> {{ changeValue('c30') }}</span> <span class="value"> {{ changeValue("c30") }}</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2">分钟</el-col> <el-col :xl="1" :lg="1" :md="2">分钟</el-col>
<el-col :xl="2" :lg="2" :md="2"> <el-col :xl="2" :lg="2" :md="2">
<span class="value noBottomBoder c31 c32 c33">入院后</span> <span class="value noBottomBoder c31 c32 c33">入院后</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2"> <el-col :xl="1" :lg="1" :md="2">
<span class="value"> {{ changeValue('c31') }}</span> <span class="value"> {{ changeValue("c31") }}</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2"></el-col> <el-col :xl="1" :lg="1" :md="2"></el-col>
<el-col :xl="1" :lg="1" :md="2"> <el-col :xl="1" :lg="1" :md="2">
<span class="value"> {{ changeValue('c32') }}</span> <span class="value"> {{ changeValue("c32") }}</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2">小时</el-col> <el-col :xl="1" :lg="1" :md="2">小时</el-col>
<el-col :xl="1" :lg="1" :md="2"> <el-col :xl="1" :lg="1" :md="2">
<span class="value"> {{ changeValue('c33') }}</span> <span class="value"> {{ changeValue("c33") }}</span>
</el-col> </el-col>
<el-col :xl="1" :lg="1" :md="2">分钟</el-col> <el-col :xl="1" :lg="1" :md="2">分钟</el-col>
</el-row> </el-row>
...@@ -633,13 +770,13 @@ ...@@ -633,13 +770,13 @@
<span class="key d01">住院费用(元):总费用</span> <span class="key d01">住院费用(元):总费用</span>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<span class="value">{{ decimal(changeValue('d01')) }}</span> <span class="value">{{ decimal(changeValue("d01")) }}</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value noBottomBoder d09">(自付金额:</span> <span class="value noBottomBoder d09">(自付金额:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d09')) }}</span> <span class="value">{{ decimal(changeValue("d09")) }}</span>
</el-col> </el-col>
<el-col :span="1"> <el-col :span="1">
<span class="value noBottomBoder">)</span> <span class="value noBottomBoder">)</span>
...@@ -654,13 +791,13 @@ ...@@ -654,13 +791,13 @@
<span class="value noBottomBoder d11">(1)一般医疗服务费:</span> <span class="value noBottomBoder d11">(1)一般医疗服务费:</span>
</el-col> </el-col>
<el-col :xl="3" :lg="3" :md="3"> <el-col :xl="3" :lg="3" :md="3">
<span class="value">{{ decimal(changeValue('d11')) }}</span> <span class="value">{{ decimal(changeValue("d11")) }}</span>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="5"> <el-col :xl="4" :lg="4" :md="5">
<span class="value noBottomBoder d12">(2)一般治疗操作费:</span> <span class="value noBottomBoder d12">(2)一般治疗操作费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d12')) }}</span> <span class="value">{{ decimal(changeValue("d12")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -669,13 +806,13 @@ ...@@ -669,13 +806,13 @@
<span class="value noBottomBoder d13">(3)护理费:</span> <span class="value noBottomBoder d13">(3)护理费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d13')) }}</span> <span class="value">{{ decimal(changeValue("d13")) }}</span>
</el-col> </el-col>
<el-col :xl="3" :lg="3" :md="4"> <el-col :xl="3" :lg="3" :md="4">
<span class="value noBottomBoder d14">(4)其他费用:</span> <span class="value noBottomBoder d14">(4)其他费用:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d14')) }}</span> <span class="value">{{ decimal(changeValue("d14")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -687,13 +824,13 @@ ...@@ -687,13 +824,13 @@
<span class="value noBottomBoder d15">(5)病理诊断费:</span> <span class="value noBottomBoder d15">(5)病理诊断费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d15')) }}</span> <span class="value">{{ decimal(changeValue("d15")) }}</span>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="5"> <el-col :xl="4" :lg="4" :md="5">
<span class="value noBottomBoder d16">(6)实验室诊断费:</span> <span class="value noBottomBoder d16">(6)实验室诊断费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d16')) }}</span> <span class="value">{{ decimal(changeValue("d16")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -702,13 +839,13 @@ ...@@ -702,13 +839,13 @@
<span class="value noBottomBoder d17">(7)影像学诊断费:</span> <span class="value noBottomBoder d17">(7)影像学诊断费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d17')) }}</span> <span class="value">{{ decimal(changeValue("d17")) }}</span>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="5"> <el-col :xl="4" :lg="4" :md="5">
<span class="value noBottomBoder d18">(8)临床诊断项目费:</span> <span class="value noBottomBoder d18">(8)临床诊断项目费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d18')) }}</span> <span class="value">{{ decimal(changeValue("d18")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -720,14 +857,14 @@ ...@@ -720,14 +857,14 @@
<span class="value noBottomBoder d19">(9)非手术治疗项目费:</span> <span class="value noBottomBoder d19">(9)非手术治疗项目费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d19')) }}</span> <span class="value">{{ decimal(changeValue("d19")) }}</span>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="5"> <el-col :xl="4" :lg="4" :md="5">
<span class="value noBottomBoder d19x01">(临床物理治疗费:</span> <span class="value noBottomBoder d19x01">(临床物理治疗费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d19x01')) }}</span> <span class="value">{{ decimal(changeValue("d19x01")) }}</span>
</el-col> </el-col>
<el-col :span="1"> <el-col :span="1">
<span class="value noBottomBoder">)</span> <span class="value noBottomBoder">)</span>
...@@ -739,20 +876,20 @@ ...@@ -739,20 +876,20 @@
<span class="value noBottomBoder d20">(9)手术治疗费:</span> <span class="value noBottomBoder d20">(9)手术治疗费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d20')) }}</span> <span class="value">{{ decimal(changeValue("d20")) }}</span>
</el-col> </el-col>
<el-col :xl="2" :lg="2" :md="3"> <el-col :xl="2" :lg="2" :md="3">
<span class="value noBottomBoder d20x01">(麻醉费:</span> <span class="value noBottomBoder d20x01">(麻醉费:</span>
</el-col> </el-col>
<el-col :span="2"> <el-col :span="2">
<span class="value">{{ decimal(changeValue('d20x01')) }}</span> <span class="value">{{ decimal(changeValue("d20x01")) }}</span>
</el-col> </el-col>
<el-col :span="2"> <el-col :span="2">
<span class="value noBottomBoder">手术费:</span> <span class="value noBottomBoder">手术费:</span>
</el-col> </el-col>
<el-col :span="2"> <el-col :span="2">
<span class="value">{{ decimal(changeValue('4')) }}</span> <span class="value">{{ decimal(changeValue("4")) }}</span>
</el-col> </el-col>
<el-col :span="1"> <el-col :span="1">
<span class="value noBottomBoder">)</span> <span class="value noBottomBoder">)</span>
...@@ -767,7 +904,7 @@ ...@@ -767,7 +904,7 @@
<span class="value noBottomBoder d21">(11)康复费:</span> <span class="value noBottomBoder d21">(11)康复费:</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="value">{{ decimal(changeValue('d21')) }}</span> <span class="value">{{ decimal(changeValue("d21")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -779,7 +916,7 @@ ...@@ -779,7 +916,7 @@
<span class="value noBottomBoder d22">(12)中医治疗费:</span> <span class="value noBottomBoder d22">(12)中医治疗费:</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="value">{{ decimal(changeValue('d22')) }}</span> <span class="value">{{ decimal(changeValue("d22")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -791,13 +928,13 @@ ...@@ -791,13 +928,13 @@
<span class="value noBottomBoder d23">(13)西药费:</span> <span class="value noBottomBoder d23">(13)西药费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d23')) }}</span> <span class="value">{{ decimal(changeValue("d23")) }}</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="value noBottomBoder d23x01">(抗菌药物费用:</span> <span class="value noBottomBoder d23x01">(抗菌药物费用:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d23x01')) }}</span> <span class="value">{{ decimal(changeValue("d23x01")) }}</span>
</el-col> </el-col>
<el-col :span="1"> <el-col :span="1">
<span class="value noBottomBoder">)</span> <span class="value noBottomBoder">)</span>
...@@ -812,13 +949,13 @@ ...@@ -812,13 +949,13 @@
<span class="value noBottomBoder d24">(14)中成药费:</span> <span class="value noBottomBoder d24">(14)中成药费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d24')) }}</span> <span class="value">{{ decimal(changeValue("d24")) }}</span>
</el-col> </el-col>
<el-col :xl="3" :lg="3" :md="4"> <el-col :xl="3" :lg="3" :md="4">
<span class="value noBottomBoder d25">(15)中草药费:</span> <span class="value noBottomBoder d25">(15)中草药费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d25')) }}</span> <span class="value">{{ decimal(changeValue("d25")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -830,19 +967,19 @@ ...@@ -830,19 +967,19 @@
<span class="value noBottomBoder d26">(16)血费:</span> <span class="value noBottomBoder d26">(16)血费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d26')) }}</span> <span class="value">{{ decimal(changeValue("d26")) }}</span>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="6"> <el-col :xl="4" :lg="4" :md="6">
<span class="value noBottomBoder d27">(17)白蛋白类制品费:</span> <span class="value noBottomBoder d27">(17)白蛋白类制品费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d27')) }}</span> <span class="value">{{ decimal(changeValue("d27")) }}</span>
</el-col> </el-col>
<el-col :xl="4" :lg="4" :md="6"> <el-col :xl="4" :lg="4" :md="6">
<span class="value noBottomBoder d28">(18)球蛋白类制品费:</span> <span class="value noBottomBoder d28">(18)球蛋白类制品费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d28')) }}</span> <span class="value">{{ decimal(changeValue("d28")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -851,13 +988,13 @@ ...@@ -851,13 +988,13 @@
<span class="value noBottomBoder d29">(19)凝血因子类制品费:</span> <span class="value noBottomBoder d29">(19)凝血因子类制品费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d29')) }}</span> <span class="value">{{ decimal(changeValue("d29")) }}</span>
</el-col> </el-col>
<el-col :xl="5" :lg="5" :md="6"> <el-col :xl="5" :lg="5" :md="6">
<span class="value noBottomBoder d30">(20)细胞因子类制品费:</span> <span class="value noBottomBoder d30">(20)细胞因子类制品费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d30')) }}</span> <span class="value">{{ decimal(changeValue("d30")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -869,13 +1006,13 @@ ...@@ -869,13 +1006,13 @@
<span class="value noBottomBoder d31">(21)检查用一次性医用材料费:</span> <span class="value noBottomBoder d31">(21)检查用一次性医用材料费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d31')) }}</span> <span class="value">{{ decimal(changeValue("d31")) }}</span>
</el-col> </el-col>
<el-col :xl="6" :lg="6" :md="8"> <el-col :xl="6" :lg="6" :md="8">
<span class="value noBottomBoder d32">(22)治疗用一次性医用材料费:</span> <span class="value noBottomBoder d32">(22)治疗用一次性医用材料费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d32')) }}</span> <span class="value">{{ decimal(changeValue("d32")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -884,7 +1021,7 @@ ...@@ -884,7 +1021,7 @@
<span class="value noBottomBoder d33">(23)术用一次性医用材料费:</span> <span class="value noBottomBoder d33">(23)术用一次性医用材料费:</span>
</el-col> </el-col>
<el-col :span="3"> <el-col :span="3">
<span class="value">{{ decimal(changeValue('d33')) }}</span> <span class="value">{{ decimal(changeValue("d33")) }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -896,13 +1033,13 @@ ...@@ -896,13 +1033,13 @@
<span class="value noBottomBoder d34">(24)其他费:</span> <span class="value noBottomBoder d34">(24)其他费:</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="value">{{ decimal(changeValue('d34')) }}</span> <span class="value">{{ decimal(changeValue("d34")) }}</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="value noBottomBoder b38">(25)是否为日间手术:</span> <span class="value noBottomBoder b38">(25)是否为日间手术:</span>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<span class="value">{{ changeValue('b38') }}</span> <span class="value">{{ changeValue("b38") }}</span>
</el-col> </el-col>
</el-row> </el-row>
...@@ -913,8 +1050,8 @@ ...@@ -913,8 +1050,8 @@
</el-col> </el-col>
<el-col :span="22"> <el-col :span="22">
<span class="value noBottomBoder" style="text-align: left">(一)医疗付费方式 1.城镇职工基本医疗保险 2.城镇居民基本医疗保险 <span class="value noBottomBoder" style="text-align: left"
3.新型农村合作医疗 4.贫困救助 5.商业医疗保险 6.全公费 7.全自费 >(一)医疗付费方式 1.城镇职工基本医疗保险 2.城镇居民基本医疗保险 3.新型农村合作医疗 4.贫困救助 5.商业医疗保险 6.全公费 7.全自费
8.其他社会保险 9.其他(二)凡可由医院信息系统提供住院费用清单的,住院病案首页中可不填写"住院费用"。 8.其他社会保险 9.其他(二)凡可由医院信息系统提供住院费用清单的,住院病案首页中可不填写"住院费用"。
</span> </span>
</el-col> </el-col>
...@@ -922,77 +1059,65 @@ ...@@ -922,77 +1059,65 @@
</div> </div>
</div> </div>
</template> </template>
<script > <script>
import { reactive, toRefs, computed, onMounted, nextTick } from '@vue/composition-api'; import { reactive, toRefs, computed, onMounted, nextTick } from "@vue/composition-api";
import { transformTimestamp } from '../../utils/formatTime'; import { transformTimestamp } from "../../utils/formatTime";
import { decimal } from '../../utils/decimal'; import { decimal } from "../../utils/decimal";
export default { export default {
props: { props: {
Object, //弹出层是否显示 Object, //弹出层是否显示
clicktitle: String, //点击的文本内容 clicktitle: String, //点击的文本内容
medicalrecord: Object, medicalrecord: Object,
}, },
setup(props, context) { data() {
const state = reactive({}); return {};
const transformTime = computed(() => { },
return transformTimestamp; mounted() {},
}); computed: {
// 添加表头calss diagnosis() {
const headerRowStyle = ({ row, column, rowIndex, columnIndex }) => { if (this.medicalrecord?.diagnosis) {
if (column.label == '手术及操作编码') { if (this.medicalrecord?.diagnosis.length < 4) {
return 'ops'; for (let i = this.medicalrecord.diagnosis.length; i <= 4; i++) {
} this.medicalrecord?.diagnosis.push({});
};
const diagnosisclass = ({ row, column, rowIndex, columnIndex }) => {
if (column.label == '出院诊断') {
return 'diagnosis';
}
};
const diagnosis = computed(() => {
if (props.medicalrecord.diagnosis) {
if (props.medicalrecord.diagnosis.length < 4) {
for (let i = props.medicalrecord.diagnosis.length; i <= 4; i++) {
props.medicalrecord.diagnosis.push({});
} }
} }
return props.medicalrecord.diagnosis; return this.medicalrecord?.diagnosis;
} }
},
}); ops() {
const ops = computed(() => { if (this.medicalrecord?.ops) {
if (props.medicalrecord.ops) { if (this.medicalrecord?.ops.length < 4) {
if (props.medicalrecord.ops.length < 4) { for (let i = this.medicalrecord?.ops.length; i <= 4; i++) {
for (let i = props.medicalrecord.ops.length; i <= 4; i++) { this.medicalrecord?.ops.push({});
props.medicalrecord.ops.push({});
} }
} }
return props.medicalrecord.ops; return this.medicalrecord?.ops;
} }
},
},
methods: {
transformTimestamp,
decimal,
// 添加表头calss
headerRowStyle({ row, column, rowIndex, columnIndex }) {
if (column.label == "手术及操作编码") {
return "ops";
}
},
}); diagnosisclass({ row, column, rowIndex, columnIndex }) {
function changeValue(str) { if (column.label == "出院诊断") {
let obj = props.medicalrecord; return "diagnosis";
}
},
changeValue(str) {
let obj = this.medicalrecord;
if (str && obj) { if (str && obj) {
return obj[str] ? obj[str] : '——'; return obj[str] ? obj[str] : "——";
} else { } else {
return '——'; return "——";
} }
} },
return {
...toRefs(state),
changeValue,
transformTime,
diagnosis,
ops,
decimal,
headerRowStyle,
diagnosisclass,
};
}, },
}; };
</script> </script>
...@@ -1011,7 +1136,7 @@ export default { ...@@ -1011,7 +1136,7 @@ export default {
th, th,
td { td {
border-color: #000 !important; border-color: #000 !important;
font-family: 'PingFang SC'; font-family: "PingFang SC";
color: #000; color: #000;
} }
...@@ -1037,7 +1162,7 @@ export default { ...@@ -1037,7 +1162,7 @@ export default {
.homePageTitle { .homePageTitle {
font-size: 25px; font-size: 25px;
font-weight: bold; font-weight: bold;
font-family: 'PingFang SC'; font-family: "PingFang SC";
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
...@@ -1066,20 +1191,20 @@ export default { ...@@ -1066,20 +1191,20 @@ export default {
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
font-family: 'PingFang SC'; font-family: "PingFang SC";
} }
.value { .value {
font-size: 14px; font-size: 14px;
border-bottom: 1px solid #000; border-bottom: 1px solid #000;
font-family: 'PingFang SC'; font-family: "PingFang SC";
display: block; display: block;
} }
.values { .values {
font-size: 14px; font-size: 14px;
border-bottom: 1px solid #000; border-bottom: 1px solid #000;
font-family: 'PingFang SC'; font-family: "PingFang SC";
display: block; display: block;
} }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* @Date: 2022-06-07 00:31:25 * @Date: 2022-06-07 00:31:25
* @LastEditors: ninglupeng * @LastEditors: ninglupeng
* @LastEditTime: 2022-06-07 14:16:26 * @LastEditTime: 2022-06-07 14:16:26
* @Description: * @Description:
*/ */
import Vue from "vue"; import Vue from "vue";
import Router from "vue-router"; import Router from "vue-router";
...@@ -18,7 +18,8 @@ Vue.use(Router); ...@@ -18,7 +18,8 @@ Vue.use(Router);
// const baseUrl = '/his/' // const baseUrl = '/his/'
const router = new Router({ const router = new Router({
// mode: baseUrl, // mode: baseUrl,
routes: [{ routes: [
{
path: "*", path: "*",
component: (resolve) => require(["@/components/404.vue"], resolve), component: (resolve) => require(["@/components/404.vue"], resolve),
}, },
...@@ -40,7 +41,13 @@ const router = new Router({ ...@@ -40,7 +41,13 @@ const router = new Router({
path: "/outHistorygrouping", path: "/outHistorygrouping",
name: "outHistorygrouping", name: "outHistorygrouping",
component: outHistorygrouping, component: outHistorygrouping,
} },
// 智能分组
{
path: "/medicalRecordImport",
name: "medicalRecordImport",
component: (resolve) => require(["@/views/medicalRecordImport.vue"], resolve),
},
], ],
// mode: 'history' /*hash*/ /*不显示路由中的#*/ // mode: 'history' /*hash*/ /*不显示路由中的#*/
}); });
...@@ -50,4 +57,4 @@ router.beforeEach((to, from, next) => { ...@@ -50,4 +57,4 @@ router.beforeEach((to, from, next) => {
next(); next();
}); });
export default router; export default router;
\ No newline at end of file
<template>
<!-- 病案导入 -->
<div class="medicalRecordImport">
<div class="medicalRecordImport_top"></div>
<div class="main">
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="医保反馈数据" name="1"
><iframe src="http://172.16.1.244:8050/#/report/view?workbookId=269" width="100%" height="100%" frameborder="0"></iframe>
</el-tab-pane>
<el-tab-pane label="月度分组数据" name="2"
><iframe src="http://172.16.1.244:8050/#/report/view?workbookId=268" width="100%" height="100%" frameborder="0"></iframe
></el-tab-pane>
<el-tab-pane label="年度结算数据" name="3"
><iframe src="http://172.16.1.244:8050/#/report/view?workbookId=267" width="100%" height="100%" frameborder="0"></iframe
></el-tab-pane>
</el-tabs>
</div>
</div>
</template>
<script>
export default {
name: "medicalRecordImport",
components: {},
data() {
return {
activeName: "1",
};
},
mounted() {
console.log(window.location.origin);
},
methods: {
handleClick(tab, event) {},
},
};
</script>
<style lang="scss">
.medicalRecordImport {
height: 100%;
background-color: white;
overflow: auto;
display: flex;
flex-flow: column;
&_top {
width: 100%;
height: 15px;
background-color: #2cabe3;
}
.main {
padding: 30px;
flex: 1;
.el-tabs__nav-wrap::after {
display: none;
}
.el-tabs {
height: 100%;
.el-tabs__content {
overflow: hidden;
position: relative;
height: calc(100% - 55px);
}
.el-tab-pane {
height: 100%;
}
}
}
}
</style>
...@@ -9,9 +9,12 @@ ...@@ -9,9 +9,12 @@
<!-- 智能分组 --> <!-- 智能分组 -->
<div class="outsetgrouping" id="setGroupingbox"> <div class="outsetgrouping" id="setGroupingbox">
<div class="outsetgrouping_button"> <div class="outsetgrouping_button">
<!-- <el-button class="outsetgrouping_button_GoBackbtn" size="mini" @click="goback"> <router-link target="_blank" :to="{ path: '/medicalRecordImport', query: { id: $route.query.id } }">
<span class="iconfont icon-daochu"></span> <span class="s2">返回</span> <el-button class="outsetgrouping_button_Submitbtn" size="mini" type="primary">
</el-button> --> <span class="iconfont icon-daochu"></span> <span class="s2">DRG历史分组结果查询</span>
</el-button></router-link
>
<el-button class="outsetgrouping_button_Submitbtn" size="mini" type="primary" @click="submit"> <el-button class="outsetgrouping_button_Submitbtn" size="mini" type="primary" @click="submit">
<span class="iconfont icon-ipr_tijiao"></span> <span class="iconfont icon-ipr_tijiao"></span>
<span class="s2">提交</span> <span class="s2">提交</span>
...@@ -150,16 +153,14 @@ ...@@ -150,16 +153,14 @@
</template> </template>
<script> <script>
import http from "../utils/http"; import http from "../utils/http";
import { reactive, toRefs, onMounted, nextTick, computed } from "@vue/composition-api";
import { decimal } from "../utils/decimal"; import { decimal } from "../utils/decimal";
import { Message } from "element-ui"; import { Message } from "element-ui";
import { useRoute, useRouter } from "../utils/useVueRouter";
import { initEcharts, categoryChart } from "../utils/echarts"; import { initEcharts, categoryChart } from "../utils/echarts";
export default { export default {
name: "outHistorygrouping", name: "outHistorygrouping",
setup() {
let state = reactive({ data() {
return {
abc: "", abc: "",
casehisObj: null, casehisObj: null,
searchForm: { searchForm: {
...@@ -181,103 +182,84 @@ export default { ...@@ -181,103 +182,84 @@ export default {
groupArr2: [], groupArr2: [],
diagMapList: null, //医保诊断编码集合 diagMapList: null, //医保诊断编码集合
opsMapList: null, //医保手术编码集合 opsMapList: null, //医保手术编码集合
});
//返回
const router = useRouter();
const goback = () => {
router.go(-1);
}; };
},
mounted() {
this.getCaseHis(this.$route.query.id);
if (this.searchForm.diagName.length > 0) {
this.getlist();
}
},
methods: {
decimal,
//获取基本数据 //获取基本数据
function getCaseHis(code) { getCaseHis(code) {
http.post(`/medical/Get/casehisData?id=${code}`, {}) http.post(`/medical/Get/casehisData?id=${code}`, {})
.then((data) => { .then((data) => {
state.casehisObj = data; this.casehisObj = data;
console.log("data", data); this.diagMapList = data.diagMapList;
state.diagMapList = data.diagMapList; this.opsMapList = data.opsMapList;
state.opsMapList = data.opsMapList; this.getlist();
getlist();
}) })
.catch((error) => {}); .catch((error) => {});
} },
//获取列表数据 //获取列表数据
const getlist = () => { getlist() {
http.post(`/medical/get/GetCorePercents`, { http.post(`/medical/get/GetCorePercents`, {
PageNumber: state.currentPage, PageNumber: this.currentPage,
Type: 1, Type: 1,
pageSize: state.pageSize, pageSize: this.pageSize,
DiagMapList: state.diagMapList, DiagMapList: this.diagMapList,
OpsMapList: state.opsMapList, OpsMapList: this.opsMapList,
id: route.value.query.id, id: this.$route.query.id,
}) })
.then((data) => { .then((data) => {
state.CorePercents = data.list; this.CorePercents = data.list;
state.totalCount = data.totalCount; this.totalCount = data.totalCount;
if (state.CorePercents.length == 0) { if (this.CorePercents.length == 0) {
state.nolistShow = true; this.nolistShow = true;
// state.nodataShow = false; // this.nodataShow = false;
} }
for (var i = 0; i < state.CorePercents.length; i++) { for (var i = 0; i < this.CorePercents.length; i++) {
initEcharts(categoryChart(state.CorePercents[i].drugPercent, "#2CABE3"), `indexChart${i}`); initEcharts(categoryChart(this.CorePercents[i].drugPercent, "#2CABE3"), `indexChart${i}`);
initEcharts(categoryChart(state.CorePercents[i].materialsPercent, "#71D875"), `indexCharttwo${i}`); initEcharts(categoryChart(this.CorePercents[i].materialsPercent, "#71D875"), `indexCharttwo${i}`);
initEcharts(categoryChart(state.CorePercents[i].inspectPercent, "#F35E77"), `indexCharttree${i}`); initEcharts(categoryChart(this.CorePercents[i].inspectPercent, "#F35E77"), `indexCharttree${i}`);
initEcharts(categoryChart(state.CorePercents[i].testPercent, "#FFB321"), `indexChartfore${i}`); initEcharts(categoryChart(this.CorePercents[i].testPercent, "#FFB321"), `indexChartfore${i}`);
initEcharts(categoryChart(state.CorePercents[i].otherPercent, "#C05EF3"), `indexChartfile${i}`); initEcharts(categoryChart(this.CorePercents[i].otherPercent, "#C05EF3"), `indexChartfile${i}`);
} }
}) })
.catch((error) => {}); .catch((error) => {});
}; },
//提交 //提交
const submit = () => { submit() {
if (state.radio == "") { if (this.radio == "") {
Message.warning({ Message.warning({
message: "请先选择要分组的病组", message: "请先选择要分组的病组",
type: "warning", type: "warning",
}); });
} else { } else {
http.post(`/medical/Update/casehisById?PatientId=${route.value.query.id}`, [state.radio]) http.post(`/medical/Update/casehisById?PatientId=${this.$route.query.id}`, [this.radio])
.then((data) => { .then((data) => {
Message.success({ Message.success({
message: `${data.message}`, message: `${data.message}`,
type: "success", type: "success",
}); });
this.getCaseHis(this.$route.query.id);
getCaseHis(route.value.query.id);
}) })
.catch((error) => {}); .catch((error) => {});
} }
}; },
/** /**
* 页码 * 页码
*/ */
const currentChange = (val) => { currentChange(val) {
state.currentPage = val; this.currentPage = val;
getlist(); this.getlist();
}; },
const sizeChange = (val) => { sizeChange(val) {
state.pageSize = val; this.pageSize = val;
getlist(); this.getlist();
}; },
var route = useRoute();
onMounted(() => {
getCaseHis(route.value.query.id);
if (state.searchForm.diagName.length > 0) {
getlist();
}
});
return {
...toRefs(state),
decimal,
getCaseHis,
currentChange,
sizeChange,
getlist,
submit,
goback,
};
}, },
}; };
</script> </script>
...@@ -286,9 +268,9 @@ export default { ...@@ -286,9 +268,9 @@ export default {
// @import '../styles/media/media/outHistorygrouping.scss'; // @import '../styles/media/media/outHistorygrouping.scss';
.outsetgrouping { .outsetgrouping {
height: 900px; height: calc(100% - 40px);
background-color: white; background-color: white;
padding: 0px 20px 20px 20px; padding: 20px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
...@@ -305,6 +287,7 @@ export default { ...@@ -305,6 +287,7 @@ export default {
&_Submitbtn { &_Submitbtn {
background-color: #2cabe3; background-color: #2cabe3;
color: #fff; color: #fff;
margin-right: 10px;
} }
} }
...@@ -586,7 +569,7 @@ export default { ...@@ -586,7 +569,7 @@ export default {
&_centent { &_centent {
background-color: #f1f5f8; background-color: #f1f5f8;
height: 66%; height: 70%;
overflow-y: auto; overflow-y: auto;
&_totalnum { &_totalnum {
......
...@@ -145,9 +145,7 @@ ...@@ -145,9 +145,7 @@
<script> <script>
import http from "../utils/http"; import http from "../utils/http";
import { reactive, toRefs, onMounted, nextTick, computed } from "@vue/composition-api";
import medicalRecordHomepage from "../components/medicalRecordHomepage/index.vue"; import medicalRecordHomepage from "../components/medicalRecordHomepage/index.vue";
import { useRoute, useRouter } from "../utils/useVueRouter";
import $ from "jquery"; import $ from "jquery";
import { setItem, getItem } from "../utils/auth"; import { setItem, getItem } from "../utils/auth";
import { Message } from "element-ui"; import { Message } from "element-ui";
...@@ -156,8 +154,8 @@ export default { ...@@ -156,8 +154,8 @@ export default {
medicalRecordHomepage, medicalRecordHomepage,
}, },
name: "outseeQualityControl", name: "outseeQualityControl",
setup() { data() {
let state = reactive({ return {
medicalrecord: null, medicalrecord: null,
ScoringDetails: null, ScoringDetails: null,
caseHistoryScoreData: null, caseHistoryScoreData: null,
...@@ -178,37 +176,44 @@ export default { ...@@ -178,37 +176,44 @@ export default {
splithtml3: "", //病房 splithtml3: "", //病房
keys: [], //获取所有的问卷key keys: [], //获取所有的问卷key
values: [], // values: [], //
}); loadingOption1: {
var route = useRoute(); // 加载loading
fullscreen: true,
onMounted(() => { text: "正在加载...",
console.log(route.value); spinner: "el-icon-loading",
}); background: "rgba(0, 0, 0, 0.5)",
},
};
},
mounted() {
if (this.$route.query.id) {
this.getHomePage(this.$route.query.id);
this.getScoringDetails(this.$route.query.id);
setItem("outpid", this.$route.query.id);
}
},
methods: {
//同步数据 //同步数据
const getSynchronous = (id) => { getSynchronous(id) {
http.post(`/medical/get/Synchronization?id=${route.value.query.id}`) http.post(`/medical/get/Synchronization?id=${this.$route.query.id}`)
.then((data) => { .then((data) => {
Message.success(data.message); Message.success(data.message);
}) })
.catch((error) => { .catch((error) => {
Message.error(error); Message.error(error);
}); });
}; },
//获取到点击的值 //获取到点击的值
const handleNodeClick = (data) => { handleNodeClick(data) {
let arr = document.getElementsByClassName(data.columnName); let arr = document.getElementsByClassName(data.columnName);
let dom = $("#medicalRecord").find("#clickColor"); let dom = $("#medicalRecord").find("#clickColor");
if (dom.length != 0) { if (dom.length != 0) {
dom.removeAttr("id"); dom.removeAttr("id");
} }
arr[0].setAttribute("id", "clickColor"); arr[0].setAttribute("id", "clickColor");
this.scrollTop();
scrollTop(); },
}; scrollTop() {
function scrollTop() {
if ($("#clickColor").position()) { if ($("#clickColor").position()) {
$(".outseeQualityControl_box_Content_left").animate( $(".outseeQualityControl_box_Content_left").animate(
{ {
...@@ -221,62 +226,39 @@ export default { ...@@ -221,62 +226,39 @@ export default {
500 500
); );
} }
} },
const loadingOption1 = {
// 加载loading
fullscreen: true,
text: "正在加载...",
spinner: "el-icon-loading",
background: "rgba(0, 0, 0, 0.5)",
};
// 获取病案首页数据 // 获取病案首页数据
function getHomePage(id) { getHomePage(id) {
http.post(`/medical/Get/HomeHisPage?id=${id}`, {}) http.post(`/medical/Get/HomeHisPage?id=${id}`, {})
.then((data) => { .then((data) => {
state.medicalrecord = data; this.medicalrecord = data;
state.keys = Object.keys(data); this.keys = Object.keys(data);
}) })
.catch((error) => {}); .catch((error) => {});
} },
//获取患者基本信息树形数据 //获取患者基本信息树形数据
function getScoringDetails(id) { getScoringDetails(id) {
http.post(`/medical/get/GetCaseHisRule?id=${id}`, {}) http.post(`/medical/get/GetCaseHisRule?id=${id}`, {})
.then((data) => { .then((data) => {
state.departmentTree = data[0].rulesLists; this.departmentTree = data[0].rulesLists;
state.rightdepartmentTree = data[1].rulesLists; this.rightdepartmentTree = data[1].rulesLists;
state.fruleCount = data[0].ruleCount; this.fruleCount = data[0].ruleCount;
state.ruleCount = data[1].ruleCount; this.ruleCount = data[1].ruleCount;
if (state.fruleCount == 0 || state.ruleCount == 0) { if (this.fruleCount == 0 || this.ruleCount == 0) {
state.isnodataShow = true; this.isnodataShow = true;
} }
}) })
.catch((error) => {}); .catch((error) => {});
} },
//点击非编码问题 //点击非编码问题
const leftcode = () => { leftcode() {
state.isleftcodeShow = true; this.isleftcodeShow = true;
}; },
//点击编码问题 //点击编码问题
const rightcode = () => { rightcode() {
state.isleftcodeShow = false; this.isleftcodeShow = false;
}; },
onMounted(() => {
if (route.value.query.id) {
getHomePage(route.value.query.id);
getScoringDetails(route.value.query.id);
setItem("outpid", route.value.query.id);
}
});
return {
...toRefs(state),
handleNodeClick,
leftcode,
rightcode,
getSynchronous,
};
}, },
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment