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

chargeMonthPrescriptionTable.vue 7.5KB

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