Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

patientDoctorAdvice.vue 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. </div>
  6. <div class="app-container">
  7. <div class="filter-container">
  8. <el-form :inline="true" :model="listQuery">
  9. <el-form-item label>
  10. <!-- <el-autocomplete
  11. class="checkSearch"
  12. popper-class="my-autocomplete"
  13. v-model.trim="listQuery.search"
  14. :fetch-suggestions="querySearchAsync"
  15. :trigger-on-focus="false"
  16. placeholder="病人透析号/姓名"
  17. @select="handleSelect"
  18. style="width:160px;"
  19. >
  20. <i class="el-icon-search el-input__icon" slot="suffix"></i>
  21. <template slot-scope="{ item }">
  22. <div class="name">{{ item.name }}</div>
  23. </template>
  24. </el-autocomplete> -->
  25. <el-input v-model="listQuery.search" style="width: 200px;" placeholder="请输入患者姓名或透析号"></el-input>
  26. <el-button type="primary" size="small" @click="toSeach">搜索</el-button>
  27. </el-form-item>
  28. </el-form>
  29. <label class="title" style="text-align:left;">
  30. <span class="name">日期查询</span> :
  31. </label>
  32. <el-date-picker
  33. v-model="listQuery.start_time"
  34. prefix-icon="el-icon-date"
  35. @change="changeTime"
  36. :editable="false"
  37. style="width: 196px;"
  38. type="date"
  39. placeholder="选择日期时间"
  40. align="right"
  41. format="yyyy-MM-dd"
  42. value-format="yyyy-MM-dd"
  43. ></el-date-picker>
  44. <span class>-</span>
  45. <el-date-picker
  46. v-model="listQuery.end_time"
  47. prefix-icon="el-icon-date"
  48. @change="changeEndTime"
  49. :editable="false"
  50. style="width: 196px;"
  51. type="date"
  52. placeholder="选择日期时间"
  53. align="right"
  54. format="yyyy-MM-dd"
  55. value-format="yyyy-MM-dd"
  56. ></el-date-picker>
  57. <el-container>
  58. <div style="width:160px">
  59. <div class="tableTitle" style="margin-bottom: 10px;">患者列表</div>
  60. <el-table :data="patientsData" border style="width: 100%;" height="500" :row-style="{ color: '#303133' }"
  61. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  62. highlight-current-row
  63. @current-change="handleChange"
  64. ref="singleTable"
  65. >
  66. <el-table-column prop="dialysis_no" label="透析号" width="70">
  67. <template slot-scope="scope">{{scope.row.dialysis_no}}</template>
  68. </el-table-column>
  69. <el-table-column prop="name" label="姓名" width="90">
  70. <template slot-scope="scope">{{ scope.row.name }}</template>
  71. </el-table-column>
  72. </el-table>
  73. </div>
  74. <div style="padding-left:10px;flex:1">
  75. <div class="tableTitle" style="margin-top: 10px;margin-bottom: 10px;">统计表</div>
  76. <div>
  77. <el-button type="primary" @click="exportList" style="margin-bottom: 10px;">导出</el-button>
  78. <el-table
  79. :data="DialysisData" style="width: 100%" border :row-style="{ color: '#303133' }"
  80. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  81. highlight-current-row
  82. >
  83. <el-table-column label="医嘱名称" min-width="200" align="center">
  84. <template slot-scope="scope">
  85. {{ scope.row.advice_name }}
  86. </template>
  87. </el-table-column>
  88. <!-- <el-table-column label="生产厂家" width="140">
  89. <template slot-scope="scope">
  90. </template>
  91. </el-table-column> -->
  92. <el-table-column label="规格" min-width="200" align="center">
  93. <template slot-scope="scope">
  94. {{ scope.row.specification_name }}
  95. </template>
  96. </el-table-column>
  97. <el-table-column label="数量" min-width="200" align="center">
  98. <template slot-scope="scope">
  99. {{ getCount(scope.row.child) }}
  100. </template>
  101. </el-table-column>
  102. </el-table>
  103. <el-pagination
  104. align="right"
  105. @size-change="handleSizeChange"
  106. @current-change="handleCurrentChange"
  107. :current-page="listQuery.page"
  108. :page-sizes="[20, 40, 60, 80, 100,200,300,500,1000]"
  109. :page-size="10"
  110. background
  111. style="margin-top:20px;"
  112. layout="total, sizes, prev, pager, next, jumper"
  113. :total="total"
  114. ></el-pagination>
  115. </div>
  116. </div>
  117. </el-container>
  118. </div>
  119. </div>
  120. </div>
  121. </template>
  122. <script>
  123. import {getPatientsByName,getDocAdviceByPatientId} from '@/api/advice'
  124. import BreadCrumb from "@/xt_pages/components/bread-crumb";
  125. export default {
  126. components: {
  127. BreadCrumb
  128. },
  129. data(){
  130. return{
  131. crumbs: [
  132. { path: false, name: "透析管理" },
  133. { path: false, name: "药品统计" }
  134. ],
  135. listQuery:{
  136. search:"",
  137. start_time:"",
  138. end_time:"",
  139. page:1,
  140. limit:10,
  141. },
  142. patientsData:[],
  143. DialysisData:[],
  144. total:0,
  145. patient_id:0
  146. }
  147. },
  148. created(){
  149. var nowDate = new Date();
  150. var nowYear = nowDate.getFullYear();
  151. var nowMonth = nowDate.getMonth() + 1;
  152. var nowDay = nowDate.getDate();
  153. this.listQuery.end_time = nowYear +"-" +(nowMonth < 10 ? "0" + nowMonth : nowMonth) +"-" +(nowDay < 10 ? "0" + nowDay : nowDay);
  154. nowDate.setMonth(nowDate.getMonth() - 1);
  155. nowYear = nowDate.getFullYear();
  156. nowMonth = nowDate.getMonth() + 1;
  157. nowDay = nowDate.getDate();
  158. this.listQuery.start_time = nowYear + "-" + (nowMonth < 10 ? "0" + nowMonth : nowMonth) +"-" +(nowDay < 10 ? "0" + nowDay : nowDay);
  159. //获取该机构下的所有患者
  160. this.getPatientsByName()
  161. },
  162. methods:{
  163. getPatientsByName(){
  164. var keyword = this.listQuery.search
  165. var params = {
  166. keyword:keyword,
  167. }
  168. getPatientsByName(params).then(response=>{
  169. if(response.data.state == 1){
  170. var patients = response.data.data.patients
  171. this.patientsData = patients
  172. this.$nextTick(()=>{
  173. // 别忘了标签上定义ref 这里的 myTable就说获取的标签上的ref命的名
  174. this.$refs.singleTable.setCurrentRow(this.patientsData[0])
  175. })
  176. }
  177. })
  178. },
  179. handleSelect(){
  180. },
  181. changeTime(){
  182. this.handleChange(this.patient_id)
  183. },
  184. changeEndTime(){
  185. this.handleChange(this.patient_id)
  186. },
  187. handleSizeChange(){
  188. },
  189. handleCurrentChange(){
  190. },
  191. exportList(){
  192. var params = {
  193. patient_id:0,
  194. start_time:this.listQuery.start_time,
  195. end_time:this.listQuery.end_time,
  196. limit:this.listQuery.limit,
  197. page:this.listQuery.page,
  198. }
  199. console.log("paramswowowoow",params)
  200. getDocAdviceByPatientId(params).then(response=>{
  201. if(response.data.state == 1){
  202. var list = response.data.data.list
  203. var tableData = []
  204. if(list!=null && list.length>0){
  205. let dataInfo = {}
  206. list.forEach((item, index) => {
  207. let { patient_id } = item
  208. if (!dataInfo[patient_id]) {
  209. dataInfo[patient_id] = {
  210. patient_id:item.patient_id,
  211. child: [],
  212. }
  213. }
  214. })
  215. let arr = Object.values(dataInfo)
  216. if(arr!=null && arr.length>0){
  217. for(let i=0;i<list.length;i++){
  218. for(let j=0;j<arr.length;j++){
  219. if(list[i].patient_id == arr[j].patient_id){
  220. arr[j].child.push(list[i])
  221. }
  222. }
  223. }
  224. }
  225. console.log("arrwowoowowo",arr)
  226. if(arr!=null && arr.length>0){
  227. for(let i=0;i<arr.length;i++){
  228. let dataInfo = {}
  229. arr[i].child.forEach((item, index) => {
  230. let { advice_name} = item
  231. if (!dataInfo[advice_name]) {
  232. dataInfo[advice_name] = {
  233. advice_name:item.advice_name,
  234. childOne: [],
  235. count:0,
  236. specification_name:item.advice_desc +item.drug_spec_unit,
  237. patient_id:item.patient_id,
  238. }
  239. }
  240. })
  241. let newArr = Object.values(dataInfo)
  242. console.log("newArrwoowow",newArr)
  243. if(newArr!=null && newArr.length>0){
  244. for(let z=0;z<arr[i].child.length;z++){
  245. for(let y=0;y<newArr.length;y++){
  246. if(arr[i].child[z].advice_name == newArr[y].advice_name){
  247. newArr[y].childOne.push(arr[i].child[z])
  248. }
  249. }
  250. }
  251. }
  252. console.log("newArrwoowow",newArr)
  253. tableData.push(...newArr)
  254. }
  255. }
  256. console.log("tableDatawpwwwoow",tableData)
  257. for(let i=0;i<tableData.length;i++){
  258. tableData[i].index = i+1
  259. tableData[i].count_name = this.getCount(tableData[i].childOne)
  260. tableData[i].specification_name =tableData[i].specification_name
  261. tableData[i].query_date = this.listQuery.start_time + "~" + this.listQuery.end_time
  262. tableData[i].patient_name = this.getPatientName(tableData[i].patient_id)
  263. }
  264. import('@/vendor/Export2Excel').then(excel => {
  265. const tHeader = ['序号','患者姓名','查询日期','药品名称','规格&单位','数量']
  266. const filterVal = ['index','patient_name','query_date','advice_name','specification_name','count_name']
  267. const data = this.formatJson(filterVal,tableData)
  268. excel.export_json_to_excel({
  269. header: tHeader,
  270. data,
  271. filename: '患者药品使用查询表'
  272. })
  273. })
  274. }
  275. }
  276. })
  277. },
  278. formatJson(filterVal, jsonData) {
  279. return jsonData.map(v => filterVal.map(j => v[j]))
  280. },
  281. getPatientName(id){
  282. var patient_name = ""
  283. for(let i=0;i<this.patientsData.length;i++){
  284. if(id == this.patientsData[i].id){
  285. patient_name = this.patientsData[i].name
  286. }
  287. }
  288. return patient_name
  289. },
  290. handleChange(val){
  291. console.log("valwoowowowwo",val)
  292. this.patient_id =val.id
  293. var params = {
  294. patient_id:val.id,
  295. start_time:this.listQuery.start_time,
  296. end_time:this.listQuery.end_time,
  297. limit:this.listQuery.limit,
  298. page:this.listQuery.page,
  299. }
  300. console.log("paramswowowoow",params)
  301. getDocAdviceByPatientId(params).then(response=>{
  302. if(response.data.state == 1){
  303. var list = response.data.data.list
  304. if(list!=null && list.length>0){
  305. let dataInfo = {}
  306. list.forEach((item, index) => {
  307. let { advice_name } = item
  308. if (!dataInfo[advice_name]) {
  309. dataInfo[advice_name] = {
  310. advice_name:item.advice_name,
  311. child: [],
  312. count:0,
  313. specification_name:item.advice_desc +item.drug_spec_unit,
  314. patient_id:item.patient_id,
  315. }
  316. }
  317. })
  318. let arr = Object.values(dataInfo)
  319. if(arr!=null && arr.length>0){
  320. for(let i=0;i<list.length;i++){
  321. for(let j=0;j<arr.length;j++){
  322. if(list[i].advice_name == arr[j].advice_name){
  323. arr[j].child.push(list[i])
  324. }
  325. }
  326. }
  327. }
  328. this.DialysisData= []
  329. this.DialysisData = arr
  330. console.log("arrwoowowowowo",arr)
  331. }
  332. }
  333. })
  334. },
  335. toSeach(){
  336. this.getPatientsByName()
  337. },
  338. getCount(val){
  339. var count =0
  340. if(val!=null && val.length>0){
  341. for(let i=0;i<val.length;i++){
  342. count+=val[i].prescribing_number
  343. }
  344. }
  345. return count
  346. }
  347. }
  348. }
  349. </script>
  350. <style lang="scss" scoped>
  351. .tableTitle {
  352. font-size: 16px;
  353. color: #000;
  354. font-weight: bold;
  355. margin-bottom: 10px;
  356. }
  357. </style>
  358. <style lang="scss">
  359. .page_timePersonal {
  360. .cell {
  361. text-align: center;
  362. }
  363. }
  364. </style>