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

nextOrLastPrescription.vue 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. <template>
  2. <el-dialog
  3. :title="name"
  4. :visible.sync="isLastOrNextVisible"
  5. @close="hide"
  6. width="1010px"
  7. :modal-append-to-body="false"
  8. class="isLastOrNext"
  9. >
  10. <div class="txsj" style="text-align:center;">
  11. <el-button
  12. round
  13. @click="openLast(3)"
  14. >上一方
  15. </el-button>
  16. <el-button
  17. round
  18. @click="openNext(4)"
  19. >下一方
  20. </el-button>
  21. </div>
  22. <div v-for="(item,index) in allPrescription" :key="index">
  23. <div class="quote">引用 {{getTime(item.record_date, '{y}年{m}月{d}日')}} 的处方</div>
  24. <el-checkbox-group v-model="item.check_group">
  25. <div v-for="(subItem,index2) in item.prescriptions" :key="index2">
  26. <el-checkbox style="margin:10px 0;" :label="subItem.id">{{'处方' + (index2+ 1)}}</el-checkbox>
  27. <el-table v-if="subItem.type == 1" :data="subItem.doctor_advice" border style="width: 99%;"
  28. :row-style="{ color: '#303133' }"
  29. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
  30. <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
  31. <el-table-column align="center" prop="drug_name" width="160" label="名称">
  32. <template slot-scope="scope">
  33. <span>{{ scope.row.advice_name }}</span>
  34. </template>
  35. </el-table-column>
  36. <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
  37. <template slot-scope="scope">
  38. <div>{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</div>
  39. </template>
  40. </el-table-column>
  41. <el-table-column align="center" prop="delivery_way" width="100" label="用法">
  42. <template slot-scope="scope">
  43. {{scope.row.delivery_way}}
  44. </template>
  45. </el-table-column>
  46. <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
  47. <template slot-scope="scope">
  48. {{scope.row.execution_frequency}}
  49. </template>
  50. </el-table-column>
  51. <el-table-column align="center" prop="day" width="60" label="天数">
  52. <template slot-scope="scope">
  53. {{scope.row.day}}
  54. </template>
  55. </el-table-column>
  56. <el-table-column align="center" prop="prescribing_number" width="100" label="总量">
  57. <template slot-scope="scope">
  58. <div>{{scope.row.prescribing_number}} {{scope.row.prescribing_number_unit}}</div>
  59. </template>
  60. </el-table-column>
  61. <el-table-column align="center" prop="retail_price" width="80" label="单价">
  62. <template slot-scope="scope">
  63. <div>{{scope.row.retail_price}}</div>
  64. </template>
  65. </el-table-column>
  66. <el-table-column align="center" prop="remark" label="备注">
  67. <template slot-scope="scope">
  68. <div>{{scope.row.remark}}</div>
  69. </template>
  70. </el-table-column>
  71. </el-table>
  72. <el-table v-if="subItem.type == 2" :data="subItem.project" border style="width: 99%;"
  73. :row-style="{ color: '#303133' }"
  74. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
  75. <el-table-column align="center" type="index" width="60" label="序号"></el-table-column>
  76. <el-table-column align="center" prop="project_name" width="160" label="名称">
  77. <template slot-scope="scope">
  78. <span>{{ scope.row.type == 2 ?scope.row.project.project_name:scope.row.good_info.good_name}}</span>
  79. </template>
  80. </el-table-column>
  81. <el-table-column align="center" prop="statistical_classification" width="100" label="组">
  82. <template slot-scope="scope">{{ scope.row.type == 2 ?getGroup(scope.row.statistical_classification):"耗材"}}</template>
  83. </el-table-column>
  84. <el-table-column align="center" prop="single_dose" width="90" label="单次用量">
  85. <template slot-scope="scope">
  86. <!--<el-input v-model="scope.row.single_dose" placeholder=""></el-input>-->
  87. <span>{{ scope.row.single_dose }}</span>
  88. </template>
  89. </el-table-column>
  90. <el-table-column align="center" prop="delivery_way" width="100" label="用法">
  91. <template slot-scope="scope">
  92. <!--<el-input v-model="scope.row.delivery_way" placeholder=""></el-input>-->
  93. <span>{{ scope.row.delivery_way }}</span>
  94. </template>
  95. </el-table-column>
  96. <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
  97. <template slot-scope="scope">
  98. <!--<el-input v-model="scope.row.execution_frequency" placeholder=""></el-input>-->
  99. <span>{{ scope.row.execution_frequency }}</span>
  100. </template>
  101. </el-table-column>
  102. <el-table-column align="center" prop="number_days" width="70" label="天数">
  103. <template slot-scope="scope">
  104. <!--<el-input v-model="scope.row.number_days" placeholder=""></el-input>-->
  105. <span>{{ scope.row.number_days }}</span>
  106. </template>
  107. </el-table-column>
  108. <el-table-column align="center" prop="total" width="70" label="总量">
  109. <template slot-scope="scope">
  110. <div>{{ scope.row.total }}{{scope.row.unit}}</div>
  111. </template>
  112. </el-table-column>
  113. <el-table-column align="center" prop="name" width="60" label="单价">
  114. <template slot-scope="scope">
  115. <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
  116. <span>{{ scope.row.price }}</span>
  117. </template>
  118. </el-table-column>
  119. <el-table-column align="center" prop="name" label="备注">
  120. <template slot-scope="scope">
  121. <!--<el-input v-model="scope.row.remark" :title="scope.row.remark"></el-input>-->
  122. <span>{{ scope.row.remark }}</span>
  123. </template>
  124. </el-table-column>
  125. </el-table>
  126. </div>
  127. </el-checkbox-group>
  128. </div>
  129. <div slot="footer" class="dialog-footer">
  130. <el-button @click="isLastOrNextVisible = false">取 消</el-button>
  131. <el-button type="primary" @click="save">保存</el-button>
  132. </div>
  133. </el-dialog>
  134. </template>
  135. <script>
  136. import { uParseTime } from '@/utils/tools'
  137. import { getDictionaryDataConfig} from "@/utils/data";
  138. import {
  139. getNextOrLastHisPrescription
  140. } from '@/api/his/his'
  141. export default {
  142. name: "nextOrLastPrescription",
  143. data() {
  144. return {
  145. srcPrescriptions:[],
  146. name:"",
  147. request_record_date:'',
  148. patient_id:0,
  149. allPrescription: [
  150. {
  151. check_group: [],
  152. prescriptions: [
  153. {
  154. id: 5,
  155. type: 1,
  156. doctor_advice: [],
  157. project: [],
  158. },
  159. {
  160. id: 8,
  161. type: 1,
  162. doctor_advice: [],
  163. project: [],
  164. },
  165. {
  166. id: 6,
  167. type: 2,
  168. doctor_advice: [],
  169. project: [],
  170. },
  171. {
  172. id: 7,
  173. type: 2,
  174. doctor_advice: [],
  175. project: [],
  176. },
  177. ],
  178. }, {
  179. check_group: [],
  180. prescriptions: [
  181. {
  182. id: 1,
  183. type: 2,
  184. doctor_advice: [],
  185. project: [],
  186. },
  187. {
  188. id: 2,
  189. type: 2,
  190. doctor_advice: [],
  191. project: [],
  192. },
  193. {
  194. id: 3,
  195. type: 1,
  196. doctor_advice: [],
  197. project: [],
  198. },
  199. {
  200. id: 4,
  201. type: 1,
  202. doctor_advice: [],
  203. project: [],
  204. },
  205. ],
  206. }
  207. ],
  208. isLastOrNextVisible: false,
  209. }
  210. }, methods: {
  211. openLast(val) {
  212. if (val == 3) {
  213. let params = {
  214. patient_id: this.patient_id,
  215. record_time: this.request_record_date,
  216. type: 1,
  217. p_type:1,
  218. };
  219. this.GetNextOrLastHisPrescription(params)
  220. }
  221. },
  222. openNext(val) {
  223. if (val == 4) {
  224. let params = {
  225. patient_id: this.patient_id,
  226. record_time: this.request_record_date,
  227. type: 2,
  228. p_type:1,
  229. };
  230. this.GetNextOrLastHisPrescription(params)
  231. }
  232. },
  233. GetNextOrLastHisPrescription(params){
  234. getNextOrLastHisPrescription(params).then(response => {
  235. if (response.data.state == 1) {
  236. this.allPrescription = response.data.data.prescriptions;
  237. for (let i = 0; i < this.allPrescription.length; i++){
  238. this.allPrescription[i].check_group = []
  239. }
  240. this.request_record_date = uParseTime(response.data.data.prescriptions[0].record_date, '{y}-{m}-{d}')
  241. } else {
  242. this.$message.error(response.data.msg)
  243. }
  244. })
  245. },
  246. save() {
  247. let replace_one = [];
  248. let replace_two = [];
  249. let checkGroup = [];
  250. let allPrescriptions = [];
  251. let targetPrescriptions = [];
  252. let prescriptions = [];
  253. for (let i = 0; i < this.allPrescription.length; i++) {
  254. for (let a = 0; a < this.allPrescription[i].check_group.length; a++) {
  255. checkGroup.push(this.allPrescription[i].check_group[a])
  256. }
  257. for (let a = 0; a < this.allPrescription[i].prescriptions.length; a++) {
  258. allPrescriptions.push(this.allPrescription[i].prescriptions[a])
  259. }
  260. }
  261. for (let i = 0; i < allPrescriptions.length; i++){
  262. for (let a = 0; a < checkGroup.length; a++){
  263. if(allPrescriptions[i].id == checkGroup[a]){
  264. targetPrescriptions.push(allPrescriptions[i])
  265. }
  266. }
  267. }
  268. if (targetPrescriptions.length > 0) {
  269. for (let i = 0; i < targetPrescriptions.length; i++) {
  270. var prescription = targetPrescriptions[i];
  271. let tempAdvice = [];
  272. let tempProject = [];
  273. let tempAddition = [];
  274. for (let b = 0; b < prescription.doctor_advice.length; b++) {
  275. let obj = {
  276. advice_id: 0,
  277. drug_name: prescription.doctor_advice[b].advice_name,
  278. single_dose: prescription.doctor_advice[b].single_dose,
  279. delivery_way: prescription.doctor_advice[b].delivery_way,
  280. execution_frequency: prescription.doctor_advice[b].execution_frequency,
  281. retail_price: prescription.doctor_advice[b].price.toString(),
  282. remark: prescription.doctor_advice[b].remark,
  283. day:prescription.doctor_advice[b].day,
  284. prescribing_number:prescription.doctor_advice[b].prescribing_number.toString(),
  285. single_dose_unit:prescription.doctor_advice[b].single_dose_unit,
  286. prescribing_number_unit:prescription.doctor_advice[b].prescribing_number_unit,
  287. medical_insurance_number:prescription.doctor_advice[b].med_list_codg,
  288. id:prescription.doctor_advice[b].drug_id
  289. };
  290. tempAdvice.push(obj)
  291. }
  292. for (let b = 0; b < prescription.project.length; b++) {
  293. let obj = {
  294. id: 0,
  295. project_id: prescription.project[b].project_id,
  296. // project_name: prescription.project[b].project.project_name,
  297. // statistical_classification: prescription.project[b].project.statistical_classification,
  298. single_dose: prescription.project[b].single_dose,
  299. delivery_way: prescription.project[b].delivery_way,
  300. execution_frequency: prescription.project[b].execution_frequency,
  301. number_days: prescription.project[b].day,
  302. total:prescription.project[b].count.toString(),
  303. price:prescription.project[b].price,
  304. remark:prescription.project[b].remark,
  305. unit: prescription.project[b].unit,
  306. type: prescription.project[b].type,
  307. // medical_code:prescription.project[b].project.medical_code,
  308. };
  309. if(prescription.project[b].type == 2){
  310. obj['statistical_classification'] = prescription.project[b].project.statistical_classification
  311. obj['medical_code'] = prescription.project[b].project.medical_code
  312. obj['project_name'] = prescription.project[b].project.project_name
  313. }else if(prescription.project[b].type == 3){
  314. obj['statistical_classification'] = ""
  315. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  316. obj['project_name'] = prescription.project[b].good_info.good_name
  317. }
  318. tempProject.push(obj)
  319. }
  320. let obj = {
  321. id: 0,
  322. advices: tempAdvice,
  323. project: tempProject,
  324. addition:tempAddition,
  325. order_status:0,
  326. // type: type,
  327. };
  328. prescriptions.push(obj)
  329. }
  330. }
  331. console.log(this.srcPrescriptions);
  332. if(this.srcPrescriptions.length == 1){
  333. if(this.srcPrescriptions[0].advices.length == 0 && this.srcPrescriptions[0].project.length == 0){
  334. this.srcPrescriptions = [];
  335. this.srcPrescriptions = prescriptions;
  336. this.$emit('save', this.srcPrescriptions)
  337. }else{
  338. this.srcPrescriptions = this.srcPrescriptions.concat(prescriptions);
  339. this.$emit('save', this.srcPrescriptions)
  340. }
  341. }else{
  342. this.srcPrescriptions = this.srcPrescriptions.concat(prescriptions);
  343. this.$emit('save', this.srcPrescriptions)
  344. }
  345. },show(prescriptions,name,id,srcPrescriptions){
  346. this.srcPrescriptions = srcPrescriptions;
  347. this.patient_id = id;
  348. this.request_record_date = uParseTime(prescriptions[0].record_date, '{y}-{m}-{d}');
  349. this.name = name;
  350. this.allPrescription = prescriptions;
  351. for (let i = 0; i < this.allPrescription.length; i++){
  352. this.allPrescription[i].check_group = []
  353. }
  354. console.log(this.allPrescription);
  355. this.isLastOrNextVisible = true
  356. },close(){
  357. this.isLastOrNextVisible = false
  358. },hide(){
  359. this.$emit('cancel')
  360. },getTime(time, template){
  361. return uParseTime(time,template)
  362. }, getGroup(id){
  363. var name = "";
  364. var statistics_category = getDictionaryDataConfig('system','statistics_category');
  365. for(let i=0;i<statistics_category.length;i++){
  366. if(id == statistics_category[i].id){
  367. name = statistics_category[i].name
  368. }
  369. }
  370. return name
  371. }, getDictionaryDataConfig(module, filed_name) {
  372. return getDictionaryDataConfig(module, filed_name)
  373. },
  374. }
  375. }
  376. </script>
  377. <style lang="scss">
  378. .isLastOrNext{
  379. .el-dialog__body{
  380. padding:0px 20px 30px;
  381. }
  382. .quote{
  383. margin-top: 10px;
  384. font-size: 14px;
  385. }
  386. }
  387. </style>