血透系统pad前端

medicalOrder.vue 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. <template>
  2. <div class="popup-content" style="min-height:320px;">
  3. <h2 class="title">
  4. <span class="line"></span>
  5. <p>{{title}}</p>
  6. <span class="line"></span>
  7. </h2>
  8. <div class="content" v-show="index==0" >
  9. <div class="yzNav" style="width:80%">
  10. <span @click="openNewAdvice">新增医嘱</span>
  11. <span @click="deleteAdvice">删除医嘱</span>
  12. <span @click="execAdvice">执行医嘱</span>
  13. <span @click="openNewChild">添加子药</span>
  14. </div>
  15. <table class="table" >
  16. <tr @click="selectRow(-1, null)" >
  17. <th width="10.5%">开嘱医生</th>
  18. <th width="15.6%">开始时间</th>
  19. <th width="26.6%">医嘱内容</th>
  20. <th width="16%">执行时间</th>
  21. <th width="10%">执行护士</th>
  22. <th width="10%">核对人员</th>
  23. </tr>
  24. <tr v-for="(advice,index) in adviceList" :key="index" :value="advice.advice_name" @click="selectRow(index, advice)" :class="index==currentIndex?rowClass:''">
  25. <td>
  26. <span v-if="advice.parent_id==0">{{getXuserName(advice.advice_doctor)}}</span>
  27. <span v-else></span>
  28. </td>
  29. <td>
  30. <span v-if="advice.parent_id==0">{{ uParseTime(advice.start_time, "{y}-{m}-{d} {h}:{i}")}}</span>
  31. <span v-else></span>
  32. </td>
  33. <td>
  34. <span >{{advice.advice_name }}</span>
  35. <span >{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
  36. <span v-if="advice.single_dose">{{advice.single_dose}}{{advice.single_dose_unit}}</span>
  37. <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
  38. <span >{{advice.delivery_way}}</span>
  39. <span >{{advice.execution_frequency}}</span>
  40. </td>
  41. <td><span v-if="advice.execution_time!=0" >{{ uParseTime(advice.execution_time, "{y}-{m}-{d} {h}:{i}")}}</span>
  42. </td>
  43. <td><span v-if="advice.parent_id==0" >{{getXuserName(advice.execution_staff)}}</span>
  44. </td>
  45. <td></td>
  46. </tr>
  47. </table>
  48. </div>
  49. <div class="content" v-show="index==1">
  50. <div >
  51. <div class="cell">
  52. <label>医嘱类型</label>
  53. <input type="text" class="inputBox" disabled value="临时">
  54. </div>
  55. <div class="cell">
  56. <label>开嘱时间</label>
  57. <input type="text" class="inputBox" v-model="adviceForm.created_time" readonly>
  58. </div>
  59. <div class="cell">
  60. <label>开始时间</label>
  61. <input type="text" class="inputBox" v-model="adviceForm.start_time" readonly @click="chooseTime">
  62. </div>
  63. <div class="cell">
  64. <label>开嘱医生</label>
  65. <span>{{ doctor }}</span>
  66. </div>
  67. <!--<div class="cell width">-->
  68. <!--<label>开嘱医生:</label>-->
  69. <!--<span>{{doctor}}</span>-->
  70. <!--</div>-->
  71. <!---->
  72. <div class="cell">
  73. <label>医嘱内容</label>
  74. <el-select v-model="adviceForm.advice_name" @change="changeAdviceName" filterable placeholder="请选择(输入可搜索)" >
  75. <el-option
  76. v-for="item in drugOptions"
  77. :key="item.id"
  78. :label="item.name"
  79. :value="item.id"
  80. >
  81. <span >{{ item.name }}</span>
  82. <span >{{ item.spec }}</span>
  83. </el-option>
  84. </el-select>
  85. </div>
  86. <div class="cell">
  87. <label>给药途径</label>
  88. <el-select v-model="adviceForm.delivery_way" :disabled="adviceForm.parent_id==0?false:true" filterable placeholder="请选择(输入可搜索)" >
  89. <el-option
  90. v-for="item in deliveryWayOptions"
  91. :key="item.id"
  92. :label="item.name "
  93. :value="item.name">
  94. </el-option>
  95. </el-select>
  96. </div>
  97. <div class="cell">
  98. <label>执行频率</label>
  99. <el-select v-model="adviceForm.execution_frequency" :disabled="adviceForm.parent_id==0?false:true" filterable placeholder="请选择(输入可搜索)" >
  100. <el-option
  101. v-for="item in executionFrequencyOptions"
  102. :key="item.id"
  103. :label="item.name "
  104. :value="item.name">
  105. </el-option>
  106. </el-select>
  107. </div>
  108. <div class="cell">
  109. <label>医嘱描述</label>
  110. <input type="text" class="inputBox" v-model="adviceForm.advice_desc">
  111. </div>
  112. <div class="cell">
  113. <label>单次用量</label>
  114. <input type="text" class="inputBox" style="width:62.5%" v-model="adviceForm.single_dose" >
  115. <input type="text" class="inputBox" style="width:35%" v-model="adviceForm.single_dose_unit" >
  116. </div>
  117. <div class="cell">
  118. <label>开药数量</label>
  119. <input type="text" class="inputBox" style="width:62.5%" v-model="adviceForm.prescribing_number" >
  120. <input type="text" class="inputBox" style="width:35%" v-model="adviceForm.prescribing_number_unit" >
  121. </div>
  122. <div class="cell width center">
  123. <button class="smt-danger" @click="index=0">返回</button>
  124. <button @click="submitNewAdvice">提交</button>
  125. </div>
  126. </div>
  127. </div>
  128. <mt-datetime-picker
  129. ref="picker"
  130. type="datetime"
  131. @confirm="handleConfirm">
  132. </mt-datetime-picker>
  133. <mt-datetime-picker
  134. ref="exec_time"
  135. type="datetime"
  136. @confirm="handleExecTime">
  137. </mt-datetime-picker>
  138. </div>
  139. </template>
  140. <script>
  141. import { Dialog,DatetimePicker,Toast } from 'vant';
  142. import { getAdviceConfig,CreateDoctorAdvice,DeleteDoctorAdvice,ExecDoctorAdvice } from "@/api/advice";
  143. import {uParseTime} from "@/utils/tools";
  144. export default {
  145. name: "MedicalOrder",
  146. data() {
  147. return {
  148. rowClass:'row-class-active',
  149. currentIndex:-1,
  150. currentRow:null,
  151. title: "临时医嘱",
  152. index:0,
  153. doctor:'',
  154. drugOptions:{},
  155. deliveryWayOptions:[],
  156. executionFrequencyOptions:[],
  157. record_date:'',
  158. patient:{
  159. id:0
  160. },
  161. admin_users:[],
  162. adviceForm:{
  163. id:0,
  164. advice_type:2,
  165. advice_date:"",
  166. start_time:"",
  167. advice_name:"",
  168. advice_desc:"",
  169. single_dose:"",
  170. single_dose_unit:"",
  171. prescribing_number:"",
  172. prescribing_number_unit:"",
  173. delivery_way:"",
  174. execution_frequency:"",
  175. advice_doctor:"",
  176. remark:"",
  177. parent_id:0,
  178. },
  179. adviceList: [],
  180. parent_id : 0,
  181. };
  182. },
  183. methods:{
  184. selectRow(index, row) {
  185. this.currentIndex = index;
  186. this.currentRow = row;
  187. },
  188. uParseTime(time, format){
  189. return uParseTime(time, format);
  190. },
  191. getXuserName(id){
  192. if (id<=0) {
  193. return "";
  194. }
  195. var name = "";
  196. if (this.admin_users==null || typeof(this.admin_users.length) == "undefined") {
  197. return name;
  198. }
  199. var leng = this.admin_users.length;
  200. if (leng==0) {
  201. return name;
  202. }
  203. for (let index = 0; index < leng; index++) {
  204. if (this.admin_users[index].id == id) {
  205. name = this.admin_users[index].name;
  206. break;
  207. }
  208. }
  209. return name;
  210. },
  211. submitNewAdvice(){
  212. CreateDoctorAdvice(this.patient.id, this.adviceForm).then(response=>{
  213. if (response.data.state==0) {
  214. Toast(response.data.msg);
  215. return false;
  216. }else {
  217. Toast('添加成功');
  218. if (this.adviceForm.parent_id > 0) {
  219. var spliceIndex = -1;
  220. for (let index = this.adviceList.length-1; ; index--) {
  221. if(this.adviceList[index].parent_id === this.adviceForm.parent_id) {
  222. spliceIndex = index;
  223. break;
  224. }else if (this.adviceList[index].id === this.adviceForm.parent_id) {
  225. spliceIndex = index;
  226. break;
  227. }
  228. }
  229. if (spliceIndex > -1) {
  230. spliceIndex += 1;
  231. if (spliceIndex === this.adviceList.length) {
  232. this.adviceList.push(response.data.data.advice);
  233. }else {
  234. var swapData = this.adviceList.splice(spliceIndex);
  235. this.adviceList.push(response.data.data.advice);
  236. this.adviceList = this.adviceList.concat(swapData);
  237. }
  238. }
  239. }else {
  240. this.adviceList.unshift(response.data.data.advice);
  241. }
  242. this.currentIndex = -1;
  243. this.currentRow = null;
  244. this.index = 0;
  245. this.$emit("new_create", response.data.data.advice);
  246. return false;
  247. }
  248. });
  249. },
  250. chooseTime(){
  251. this.$refs.picker.open();
  252. },
  253. changeAdviceName(change){
  254. this.adviceForm.advice_name = this.drugOptions[change].name;
  255. this.adviceForm.advice_desc = this.drugOptions[change].spec;
  256. this.adviceForm.single_dose_unit = this.drugOptions[change].spec_unit;
  257. this.adviceForm.prescribing_number_unit = this.drugOptions[change].form_unit;
  258. },
  259. getAdviceConfig() {
  260. getAdviceConfig().then(response => {
  261. if (response.data.state == 1) {
  262. this.deliveryWayOptions = response.data.data.drugways;
  263. this.executionFrequencyOptions = response.data.data.efs;
  264. var druglist = {};
  265. var durglength = response.data.data.drugs.length;
  266. for (let index = 0; index < durglength; index++) {
  267. druglist[response.data.data.drugs[index].id] = response.data.data.drugs[index];
  268. }
  269. this.drugOptions = druglist;
  270. }
  271. });
  272. },
  273. handleConfirm(time){
  274. this.adviceForm.start_time =this.handleTime(time);
  275. },
  276. handleExecTime(time) {
  277. var exceTime = this.handleTime(time);
  278. console.log(exceTime)
  279. var exceParams = {
  280. id: this.currentRow.id,
  281. patient: this.patient.id,
  282. parent_id: this.currentRow.parent_id,
  283. execution_time: exceTime,
  284. };
  285. ExecDoctorAdvice(exceParams).then(response=>{
  286. if (response.data.state == 0) {
  287. Toast(response.data.msg);
  288. return false
  289. }else {
  290. Toast('执行成功!');
  291. var exid = exceParams.id
  292. if (exceParams.parent_id>0) {
  293. exid = exceParams.parent_id;
  294. }
  295. var alen = this.adviceList.length;
  296. for (let index = 0; index < alen; index++) {
  297. if (this.adviceList[index].id== exid) {
  298. console.log(exid,this.adviceList[index].id,response.data.data.advice);
  299. this.adviceList[index].execution_state = 1;
  300. this.adviceList[index].execution_staff = response.data.data.advice.execution_staff;
  301. this.adviceList[index].execution_time = Math.round(time.getTime()/1000);
  302. this.adviceList[index].checker = response.data.data.advice.checker;
  303. this.$emit('execution', this.adviceList[index]);
  304. break;
  305. }
  306. }
  307. return false
  308. }
  309. });
  310. },
  311. handleTime(time) {
  312. var year = time.getFullYear();
  313. var month = time.getMonth() + 1;
  314. var day = time.getDate();
  315. var hour = time.getHours();
  316. var minute = time.getMinutes();
  317. if (month<10) {
  318. month = "0" + month;
  319. }
  320. if (day<10) {
  321. day = "0" + day;
  322. }
  323. if (hour<10) {
  324. hour = "0" + hour;
  325. }
  326. if (minute<10) {
  327. minute = "0" + minute;
  328. }
  329. return year + "-" + month + "-" + day + " " + hour + ":" + minute + ":00";
  330. },
  331. deleteAdvice(){
  332. if (this.currentIndex < 0 || this.currentRow == null) {
  333. Toast('请先选择要删除的医嘱!');
  334. return false;
  335. }
  336. Dialog.confirm({
  337. title: '医嘱删除',
  338. message: '确认删除些条医嘱?'
  339. }).then(() => {
  340. DeleteDoctorAdvice(this.currentRow.id).then(response=>{
  341. if(response.data.state==0) {
  342. Toast(response.data.msg);
  343. return false;
  344. }else {
  345. Toast("医嘱已经删除");
  346. this.deleteResetData(this.currentIndex, this.currentRow);
  347. this.$emit('delete', this.adviceList[this.currentIndex]);
  348. this.currentIndex = -1;
  349. this.currentRow = null;
  350. }
  351. });
  352. }).catch(() => {
  353. // on cancel
  354. });
  355. },
  356. deleteResetData(index, row) {
  357. if (row.parent_id>0) {
  358. this.adviceList.splice(index,1);
  359. }else {
  360. var resetTableData = this.adviceList;
  361. this.adviceList = [];
  362. var that = this;
  363. var rslen = resetTableData.length;
  364. for (let i = 0; i < rslen; i++) {
  365. if (resetTableData[i].id != row.id && resetTableData[i].parent_id != row.id) {
  366. that.adviceList.push(resetTableData[i]);
  367. }
  368. }
  369. }
  370. },
  371. execAdvice(){
  372. if (this.currentIndex < 0 || this.currentRow == null) {
  373. Toast('请先选择要执行的医嘱!');
  374. return false;
  375. }
  376. this.$refs.exec_time.open();
  377. },
  378. openNewChild(){
  379. if (this.currentIndex < 0 || this.currentRow == null) {
  380. Toast('请先选择要添加子药的医嘱!');
  381. return false;
  382. }
  383. this.index = 1;
  384. this.adviceForm={
  385. id:0,
  386. advice_type:2,
  387. advice_date:this.record_date,
  388. start_time:uParseTime(this.currentRow.start_time, "{y}-{m}-{d} {h}:{i}"),
  389. advice_name:"",
  390. advice_desc:"",
  391. single_dose:"",
  392. single_dose_unit:"",
  393. prescribing_number:"",
  394. prescribing_number_unit:"",
  395. delivery_way:this.currentRow.delivery_way,
  396. execution_frequency:this.currentRow.execution_frequency,
  397. advice_doctor:"",
  398. remark:"",
  399. parent_id:this.currentRow.id,
  400. }
  401. },
  402. openNewAdvice(){
  403. this.index=1;
  404. this.currentIndex = -1;
  405. this.currentRow = null;
  406. this.adviceForm={
  407. id:0,
  408. advice_type:2,
  409. advice_date:this.record_date,
  410. start_time:"",
  411. advice_name:"",
  412. advice_desc:"",
  413. single_dose:"",
  414. single_dose_unit:"",
  415. prescribing_number:"",
  416. prescribing_number_unit:"",
  417. delivery_way:"",
  418. execution_frequency:"",
  419. advice_doctor:"",
  420. remark:"",
  421. parent_id:0,
  422. }
  423. }
  424. },
  425. props: {
  426. patient_prop: {
  427. type: Object,
  428. },
  429. advice_list_prop: {
  430. type: Array,
  431. },
  432. admin_users_prop:{
  433. type:Array,
  434. }
  435. },
  436. created(){
  437. var date = this.$route.query && this.$route.query.date;
  438. date *= 1000;
  439. var newDate = new Date(date);
  440. var y = newDate.getFullYear();
  441. var m = newDate.getMonth() + 1;
  442. var d = newDate.getDate();
  443. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  444. newDate = new Date();
  445. y = newDate.getFullYear();
  446. m = newDate.getMonth() + 1;
  447. d = newDate.getDate();
  448. }
  449. this.record_date = y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  450. this.patient = this.patient_prop;
  451. this.adviceList = this.advice_list_prop;
  452. this.admin_users = this.admin_users_prop;
  453. this.doctor = this.$store.getters.user.user.user_name;
  454. this.adviceForm.advice_date = this.record_date;
  455. this.getAdviceConfig();
  456. }
  457. };
  458. </script>
  459. <style rel="stylesheet/scss" lang="scss" scoped>
  460. .smt-danger {
  461. color: #000 !important;
  462. background-color: #fff !important;
  463. border: 1px solid #000;
  464. }
  465. .table {
  466. width: 100%;
  467. overflow: hidden;
  468. font-size: 0.3rem;
  469. text-align: center;
  470. border: $border-color;
  471. background: $text-color;
  472. padding: 0 0 0.28rem 0;
  473. tr {
  474. padding: 0;
  475. margin: 0;
  476. padding: 0.1rem 0;
  477. th {
  478. background: $main-color;
  479. border: none;
  480. color: #fff;
  481. padding: 0;
  482. margin: 0;
  483. height: 0.88rem;
  484. line-height: 0.88rem;
  485. font-weight: normal;
  486. }
  487. }
  488. .row-class-active>td{
  489. background: #badcff;
  490. }
  491. }
  492. </style>