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

pruritus_history.vue 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <!-- 瘙痒 -->
  2. <template>
  3. <div class="patient-container">
  4. <div class="patient-app-containers advice-container app-container">
  5. <div style="display: flex;margin-bottom: 20px;">
  6. <div style="width: 50%;">
  7. <el-button type="text" icon="el-icon-arrow-left" style="font-size: 18px;" @click="fanhui">返回</el-button>
  8. <div class="history">历史评分</div>
  9. </div>
  10. <div style="margin-left: 30%;">
  11. <el-button type="primary">打印评分</el-button>
  12. <el-button type="primary">打印明细</el-button>
  13. </div>
  14. </div>
  15. <div>
  16. <el-table
  17. ref="multipleTable"
  18. :data="tableData"
  19. border
  20. tooltip-effect="dark"
  21. :header-cell-style="{
  22. background:'#4579c5',
  23. color:'#fff'
  24. }"
  25. style="width: 100%"
  26. @selection-change="handleSelectionChange">
  27. <el-table-column
  28. type="selection"
  29. width="55"
  30. align="center">
  31. </el-table-column>
  32. <el-table-column
  33. label="评估日期"
  34. width="180"
  35. align="center">
  36. <template slot-scope="scope">{{ scope.row.date }}</template>
  37. </el-table-column>
  38. <el-table-column
  39. prop="name"
  40. label="痒的部位"
  41. width="130"
  42. align="center">
  43. </el-table-column>
  44. <el-table-column
  45. prop="name"
  46. label="痒的程度"
  47. width=""
  48. align="center">
  49. </el-table-column>
  50. <el-table-column
  51. prop="name"
  52. label="痒的频率"
  53. width="160"
  54. align="center">
  55. </el-table-column>
  56. <el-table-column
  57. prop="name"
  58. label="痒对睡眠的影响"
  59. width=""
  60. align="center">
  61. </el-table-column>
  62. <el-table-column
  63. prop="name"
  64. label="总分"
  65. width=""
  66. align="center">
  67. </el-table-column>
  68. <el-table-column
  69. prop="name"
  70. label="评估护士"
  71. width=""
  72. align="center">
  73. </el-table-column>
  74. <el-table-column
  75. prop="address"
  76. label="操作"
  77. width=""
  78. align="center"
  79. show-overflow-tooltip>
  80. <template slot-scope="scope">
  81. <el-button type="primary" icon="el-icon-edit-outline"></el-button>
  82. <el-button type="primary" icon="el-icon-delete"></el-button>
  83. </template>
  84. </el-table-column>
  85. </el-table>
  86. </div>
  87. </div>
  88. </div>
  89. </template>
  90. <script>
  91. export default{
  92. data(){
  93. return{
  94. tableData:[],
  95. multipleSelection:''
  96. }
  97. },
  98. methods:{
  99. fanhui(){
  100. window.history.go(-1);
  101. },
  102. handleSelectionChange(val) {
  103. this.multipleSelection = val;
  104. }
  105. }
  106. }
  107. </script>
  108. <style lang="scss" scoped>
  109. .patient-app-containers {
  110. margin-left: 10px;
  111. margin-right: 10px;
  112. background: #fff;
  113. }
  114. .history{
  115. display: inline-block;
  116. border-left:2px solid gray ;
  117. padding: 0 10px;
  118. margin-left:10px;
  119. color: gray;
  120. font-size: 18px;
  121. }
  122. </style>