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

newPrescriptionTable.vue 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <div class="prescriptionTable">
  3. <el-table v-if="prescription.type == 1" :data="prescription.advices" border style="width: 100%;"
  4. :row-style="{ color: '#303133' }"
  5. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
  6. <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
  7. <el-table-column align="center" prop="name" label="名称">
  8. <template slot-scope="scope">{{ scope.row.drug_name }}</template>
  9. </el-table-column>
  10. <el-table-column align="center" prop="name" width="100" label="单次用量">
  11. <template slot-scope="scope">
  12. <div>{{ scope.row.single_dose }} &nbsp;&nbsp; {{scope.row.single_dose_unit}}</div>
  13. </template>
  14. </el-table-column>
  15. <el-table-column align="center" prop="name" width="90" label="用法">
  16. <template slot-scope="scope">
  17. <!--<el-input v-model="scope.row.delivery_way" readonly></el-input>-->
  18. <div> {{scope.row.delivery_way}}</div>
  19. </template>
  20. </el-table-column>
  21. <el-table-column align="center" prop="name" width="90" label="频率">
  22. <template slot-scope="scope">
  23. <!--<el-input v-model="scope.row.execution_frequency" readonly></el-input>-->
  24. <div> {{scope.row.execution_frequency}}</div>
  25. </template>
  26. </el-table-column>
  27. <el-table-column align="center" prop="day" width="50" label="天数">
  28. <template slot-scope="scope">
  29. <div>{{ scope.row.day }}天</div>
  30. </template>
  31. </el-table-column>
  32. <el-table-column align="center" prop="name" width="100" label="总量">
  33. <template slot-scope="scope">
  34. <div>{{scope.row.prescribing_number}} {{scope.row.prescribing_number_unit}}</div>
  35. </template>
  36. </el-table-column>
  37. <el-table-column align="center" prop="name" width="80" label="单价">
  38. <template slot-scope="scope">
  39. <div> {{scope.row.retail_price}}元</div>
  40. <!--<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>-->
  41. </template>
  42. </el-table-column>
  43. <el-table-column align="center" prop="name" width="80" label="备注">
  44. <template slot-scope="scope">
  45. <!--<el-input v-model="scope.row.remark" style="width:50%" placeholder="" readonly></el-input>-->
  46. <div> {{scope.row.remark}}</div>
  47. </template>
  48. </el-table-column>
  49. </el-table>
  50. <el-table v-if="prescription.type == 2" :data="prescription.project" border style="width: 99%;"
  51. :row-style="{ color: '#303133' }"
  52. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
  53. <el-table-column align="center" prop="project_name" label="名称">
  54. <template slot-scope="scope">{{ scope.row.project_name }}</template>
  55. </el-table-column>
  56. <el-table-column align="center" prop="statistical_classification" width="100" label="组">
  57. <template slot-scope="scope">
  58. <div>{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</div>
  59. </template>
  60. </el-table-column>
  61. <el-table-column align="center" prop="single_dose" width="100" label="单次用量">
  62. <template slot-scope="scope">
  63. <!--<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>-->
  64. <div> {{scope.row.single_dose}}{{scope.row.unit}}</div>
  65. </template>
  66. </el-table-column>
  67. <el-table-column align="center" prop="delivery_way" width="130" label="用法">
  68. <template slot-scope="scope">
  69. <!--<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>-->
  70. <div> {{scope.row.delivery_way}}</div>
  71. </template>
  72. </el-table-column>
  73. <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
  74. <template slot-scope="scope">
  75. <!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
  76. <div> {{scope.row.execution_frequency}}</div>
  77. </template>
  78. </el-table-column>
  79. <el-table-column align="center" prop="number_days" width="100" label="天数">
  80. <template slot-scope="scope">
  81. <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
  82. <div> {{scope.row.number_days}}天</div>
  83. </template>
  84. </el-table-column>
  85. <el-table-column align="center" prop="total" width="80" label="总量">
  86. <template slot-scope="scope">
  87. <div> {{scope.row.total}}{{scope.row.unit}}</div>
  88. </template>
  89. </el-table-column>
  90. <el-table-column align="center" prop="name" width="70" label="单价">
  91. <template slot-scope="scope">
  92. <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
  93. <div> {{scope.row.price}}元</div>
  94. </template>
  95. </el-table-column>
  96. <el-table-column align="center" prop="name" width="120" label="备注">
  97. <template slot-scope="scope">
  98. <!--<el-input v-model="scope.row.remark" readonly></el-input>-->
  99. <div> {{scope.row.remark}}</div>
  100. </template>
  101. </el-table-column>
  102. </el-table>
  103. </div>
  104. </template>
  105. <script>
  106. import { getInitData } from '@/api/his/his'
  107. import { getDictionaryDataConfig} from "@/utils/data";
  108. export default {
  109. props: {
  110. prescription: Object
  111. },
  112. data() {
  113. return {
  114. drugways: [],
  115. efs: []
  116. }
  117. }, mounted() {
  118. getInitData().then(response => {
  119. if (response.data.state == 0) {
  120. this.$message.error(response.data.msg);
  121. return false
  122. } else {
  123. this.drugways = response.data.data.drugways;
  124. this.efs = response.data.data.efs
  125. }
  126. })
  127. }, methods: {
  128. getGroup(id){
  129. var name = "";
  130. var statistics_category = getDictionaryDataConfig('system','statistics_category');
  131. console.log("2235",statistics_category);
  132. for(let i=0;i<statistics_category.length;i++){
  133. if(id == statistics_category[i].id){
  134. name = statistics_category[i].name
  135. }
  136. }
  137. return name
  138. },
  139. }
  140. }
  141. </script>
  142. <style lang="scss">
  143. .prescriptionTable{
  144. .additionalBox{
  145. margin-top: 20px;
  146. display: flex;
  147. flex-wrap: wrap;
  148. .additionalOne{
  149. margin-right:20px;
  150. margin-bottom:10px;
  151. display: flex;
  152. align-items: center;
  153. >span{
  154. white-space: nowrap;
  155. overflow: hidden;
  156. text-overflow: ellipsis;
  157. width:60px;
  158. display: inline-block;
  159. font-size: 14px;
  160. }
  161. }
  162. .deleteIcon{
  163. color:red;
  164. margin-left:5px;
  165. }
  166. }
  167. .el-table th .cell, .el-table td .cell{
  168. padding: 0 2px;
  169. white-space: pre-line;
  170. }
  171. .el-icon-delete{
  172. color:red;
  173. }
  174. }
  175. </style>