血透系统pad前端

OrdersDialog.vue 49KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505
  1. <template>
  2. <div>
  3. <div class="Dialog" v-show="index==0" style="width: 11.8rem;">
  4. <div class="DialogTit" @click="$emit('orderDialog')">
  5. <span class="iconfont">&#xe6e9;</span>
  6. <h1 class="name">临时医嘱</h1>
  7. <span class="success">&nbsp;</span>
  8. </div>
  9. <div class="yzNav" style="width:100%;">
  10. <span
  11. @click="openNewAdvice"
  12. :class="{ forbid: this.$store.getters.user.user.user_type == 3 }"
  13. >新增医嘱</span>
  14. <span
  15. v-if="isShowExce"
  16. @click="execAdvice"
  17. :class="{ forbid: (current_advice&& current_advice.parent_id > 0)||(this.$store.getters.user.user.user_type == 2 && !isPremission) }"
  18. >执行医嘱</span>
  19. <span
  20. v-if="isShowMofifyExce"
  21. @click="modifyExecAdvice"
  22. :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
  23. >修改执行医嘱</span>
  24. <span
  25. v-if="template_id != 6"
  26. @click="checkAdvice"
  27. :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || (this.$store.getters.user.user.user_type == 2 && !isPremission) }"
  28. >医嘱核对</span>
  29. <span
  30. @click="openNewChild"
  31. :class="{ forbid: current_advice == null || current_advice.parent_id > 0 || currentAdvices.length != 1 || this.$store.getters.user.user.user_type == 3 }"
  32. >添加子药</span>
  33. <span
  34. v-if="currentSubAdvices.length <= 0"
  35. @click="modifyAdviceAction"
  36. :class="{ forbid: current_group_index < 0 || currentAdvices.length != 1 }"
  37. >修改医嘱</span>
  38. <span
  39. v-if="currentSubAdvices.length <= 0"
  40. @click="deleteAdviceAction"
  41. :class="{ forbid: current_group_index < 0 || currentAdvices.length <= 0 }"
  42. >删除医嘱</span>
  43. <span v-if="currentSubAdvices.length > 0" @click="modifySubdviceAction">修改子医嘱</span>
  44. <span v-if="currentSubAdvices.length > 0" @click="deleteSubAdviceAction">删除子医嘱</span>
  45. </div>
  46. <div class="DialogContent choose" id="dialogTop" style="height:6.5rem;">
  47. <div class="content clearfix">
  48. <table class="table">
  49. <tr @click="cancelAdviceSelect">
  50. <th width="8%">开嘱医生</th>
  51. <th width="10%">开始时间</th>
  52. <th width="40%">医嘱内容</th>
  53. <th width="10%">执行时间</th>
  54. <th width="10%">执行护士</th>
  55. <th v-if="template_id != 6" width="10%">核对人员</th>
  56. </tr>
  57. <template v-for="(group, group_index) in advice_groups">
  58. <tr
  59. v-for="(advice, advice_index) in group.advices"
  60. :key="advice.id"
  61. :class="{ 'row-class-active': current_group_index == group_index && current_advice_index < 0 }"
  62. >
  63. <td
  64. v-if="advice_index == 0"
  65. :rowspan="group.advices.length"
  66. @click="selectGroupAdviceAction(group_index, -1, null,group)"
  67. >
  68. <span v-if="advice.parent_id==0">{{getXuserName(advice.advice_doctor)}}</span>
  69. <span v-else></span>
  70. </td>
  71. <td
  72. v-if="advice_index == 0"
  73. :rowspan="group.advices.length"
  74. @click="selectGroupAdviceAction(group_index, -1, null,group)"
  75. >
  76. <span>{{uParseTime(advice.start_time, '{m}-{d} {h}:{i}')}}</span>
  77. </td>
  78. <td
  79. :class="{ 'advice_content': advice.parent_id == 0, 'subadvice_content': advice.parent_id > 0, 'td-active':current_group_index == group_index && advice.is_selected == 1 }"
  80. @click="selectAdviceAction(group_index, advice_index, advice)"
  81. >
  82. <div class="txt">
  83. <span>{{advice.advice_name }}</span>
  84. <span
  85. v-if="advice.advice_desc"
  86. >({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
  87. <span
  88. v-if="advice.prescribing_number"
  89. >&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}})</span>
  90. <span
  91. v-if="advice.single_dose && template_id != 6"
  92. >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
  93. <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
  94. <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
  95. <span
  96. v-if="advice.parent_id == 0 && advice.remark.length > 0"
  97. >({{advice.remark}})</span>
  98. </div>
  99. </td>
  100. <td
  101. :class="{'td-active':current_group_index == group_index && advice.is_selected == 1}"
  102. @click="selectAdviceAction(group_index,advice_index, advice)"
  103. >{{uParseTime(advice.execution_time, '{m}-{d} {h}:{i}')}}</td>
  104. <td
  105. :class="{'td-active':current_group_index == group_index && advice.is_selected == 1}"
  106. @click="selectAdviceAction(group_index,advice_index, advice)"
  107. >{{getXuserName(advice.execution_staff)}}</td>
  108. <td
  109. :class="{'td-active':current_group_index == group_index && advice.is_selected == 1}"
  110. @click="selectAdviceAction(group_index,advice_index, advice)"
  111. >{{getXuserName(advice.checker)}}</td>
  112. </tr>
  113. </template>
  114. </table>
  115. </div>
  116. </div>
  117. </div>
  118. <add-new-order-dialog
  119. v-show="index==1&&isShowDialog"
  120. @back-action="index = 0"
  121. :patient_id="patient.id"
  122. :drug_spec_unit_options="unitsOption"
  123. :delivery_way_options="deliveryWayOptions"
  124. :execution_frequency_options="executionFrequencyOptions"
  125. :single_dose_unit_options="unitsOption"
  126. :prescribing_number_unit_options="unitsOption"
  127. :advice_templates="adviceTemplates"
  128. @did-create-advices="didCreateAdvices"
  129. ></add-new-order-dialog>
  130. <advice-form
  131. ref="subdrug_form"
  132. @back="index = 0"
  133. @did-create-subdrug="didAddSubdrug"
  134. :single_dose_unit_options="unitsOption"
  135. :prescribing_number_unit_options="unitsOption"
  136. :drug_spec_unit_options="unitsOption"
  137. ></advice-form>
  138. <modify-advice-form
  139. ref="modify_advice_form"
  140. @back="index = 0"
  141. @did-modify="didModifyAdvice"
  142. :drug_spec_unit_options="unitsOption"
  143. :delivery_way_options="deliveryWayOptions"
  144. :execution_frequency_options="executionFrequencyOptions"
  145. :single_dose_unit_options="unitsOption"
  146. :prescribing_number_unit_options="unitsOption"
  147. ></modify-advice-form>
  148. <modify-advice-group-dialog
  149. ref="modify_advice_group"
  150. @back="index = 0"
  151. :patient_id="patient.id"
  152. :delivery_way_options="deliveryWayOptions"
  153. :execution_frequency_options="executionFrequencyOptions"
  154. :single_dose_unit_options="unitsOption"
  155. :drug_spec_unit_options="unitsOption"
  156. :prescribing_number_unit_options="unitsOption"
  157. :advice_templates="adviceTemplates"
  158. @did-create-advices="didCreateAdvices"
  159. ></modify-advice-group-dialog>
  160. <mt-datetime-picker
  161. ref="exec_time"
  162. type="datetime"
  163. @confirm="handleExecTime"
  164. v-model="nowExecTime"
  165. ></mt-datetime-picker>
  166. <mt-datetime-picker
  167. ref="mofify_exec_time"
  168. type="datetime"
  169. @confirm="handleModifyExecTime"
  170. v-model="nowExecTime"
  171. ></mt-datetime-picker>
  172. </div>
  173. </template>
  174. <script>
  175. import { Dialog, Toast } from "vant";
  176. import {
  177. CheckDoctorAdvice,
  178. CreateDoctorAdvice,
  179. DeleteDoctorAdviceNew,
  180. DeleteSubDoctorAdvice,
  181. EditDoctorAdvice,
  182. ExecDoctorAdvice,
  183. getAdviceConfig,
  184. ModifyExecDoctorAdvice
  185. } from "@/api/advice";
  186. import { uParseTime } from "@/utils/tools";
  187. import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
  188. import { getDataConfig } from "@/utils/data";
  189. import AddNewOrderDialog from "./new_order/AddNewOrders";
  190. import AdviceForm from "./new_order/order_form";
  191. import ModifyAdviceForm from "./modify_order/modify_order_form";
  192. import ModifyAdviceGroupDialog from "./modify_order/ModifyAdviceGroup";
  193. export default {
  194. name: "OrdersDialog",
  195. components: {
  196. CheckBoxSubMenu,
  197. AddNewOrderDialog,
  198. AdviceForm,
  199. ModifyAdviceForm,
  200. ModifyAdviceGroupDialog
  201. },
  202. props: {
  203. advice_groups: {
  204. type: Array,
  205. default: () => {
  206. return [];
  207. }
  208. },
  209. patient_prop: {
  210. type: Object
  211. },
  212. advice_list_prop: {
  213. type: Array
  214. },
  215. admin_users_prop: {
  216. type: Array
  217. },
  218. special_premission: {
  219. type: Array
  220. }
  221. },
  222. data() {
  223. return {
  224. isShowDialog: true,
  225. template_id: 0,
  226. isShowExce: true,
  227. isShowMofifyExce: false,
  228. title: "临时医嘱",
  229. index: 0,
  230. doctor: "",
  231. adviceTemplates: [],
  232. drugOptions: {},
  233. deliveryWayOptions: [],
  234. executionFrequencyOptions: [],
  235. unitsOption: [],
  236. unitsObj: [],
  237. record_date: "",
  238. nowExecTime: new Date(),
  239. patient: {
  240. id: 0
  241. },
  242. admin_users: [],
  243. adviceList: [],
  244. parent_id: 0,
  245. current_select_object: -1,
  246. current_group_index: -1,
  247. current_advice_index: -1,
  248. current_advice: null,
  249. currentAdviceIdsStr: "",
  250. currentAdvices: [],
  251. currentSubAdvices: [],
  252. isPremission: false
  253. };
  254. },
  255. created() {
  256. this.template_id = this.$store.getters.user.template_info.template_id;
  257. var date = this.$route.query && this.$route.query.date;
  258. date *= 1000;
  259. var newDate = new Date(date);
  260. var y = newDate.getFullYear();
  261. var m = newDate.getMonth() + 1;
  262. var d = newDate.getDate();
  263. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  264. newDate = new Date();
  265. y = newDate.getFullYear();
  266. m = newDate.getMonth() + 1;
  267. d = newDate.getDate();
  268. }
  269. this.record_date =
  270. y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  271. this.patient = this.patient_prop;
  272. this.adviceList = this.advice_list_prop;
  273. this.admin_users = this.admin_users_prop;
  274. this.doctor = this.$store.getters.user.user.user_name;
  275. this.getAdviceConfig();
  276. this.unitsOption = getDataConfig("hemodialysis", "units");
  277. for (var index in this.unitsOption) {
  278. this.unitsObj[this.unitsOption[index].id] = this.unitsOption[index];
  279. }
  280. for (let i = 0; i < this.special_premission.length; i++) {
  281. if (
  282. this.$store.getters.user.user.id ==
  283. this.special_premission[i].admin_user_id
  284. ) {
  285. this.isPremission = true;
  286. }
  287. }
  288. },
  289. watch: {
  290. advice_groups: function() {},
  291. currentAdvices: function(currentAdvices) {
  292. if (currentAdvices.length == 0) {
  293. this.isShowExce = true;
  294. this.isShowMofifyExce = false;
  295. } else {
  296. let a = 0;
  297. for (let i = 0; i < currentAdvices.length; i++) {
  298. if (currentAdvices[i].execution_state == 1) {
  299. a = a + 1;
  300. }
  301. }
  302. if (a == currentAdvices.length) {
  303. this.isShowExce = false;
  304. this.isShowMofifyExce = true;
  305. } else {
  306. this.isShowExce = true;
  307. this.isShowMofifyExce = false;
  308. }
  309. }
  310. }
  311. },
  312. methods: {
  313. modifyExecAdvice: function() {
  314. // if(!this.isPremission){
  315. // Toast.fail('你没有权限修改医嘱!')
  316. // }else{
  317. this.nowExecTime = new Date(this.currentAdvices[0].start_time * 1000);
  318. this.$refs.mofify_exec_time.open();
  319. // }
  320. },
  321. didCreateAdvices: function(advices) {
  322. if (advices.length == 0) {
  323. return;
  324. }
  325. for (let i = 0; i < advices.length; i++) {
  326. advices[i]["is_selected"] = 0;
  327. }
  328. var new_group = Object.assign(
  329. {},
  330. {
  331. group_no: 0,
  332. start_time: 0,
  333. advices: []
  334. }
  335. );
  336. new_group.group_no = advices[0].groupno;
  337. new_group.start_time = advices[0].start_time;
  338. new_group.advices.push(...advices);
  339. var insertIndex = -1;
  340. for (let index = 0; index < this.advice_groups.length; index++) {
  341. const group = this.advice_groups[index];
  342. if (group.start_time < new_group.start_time) {
  343. insertIndex = index;
  344. break;
  345. }
  346. }
  347. if (insertIndex < 0) {
  348. this.advice_groups.push(new_group);
  349. } else {
  350. this.advice_groups.splice(insertIndex, 0, new_group);
  351. }
  352. this.index = 0;
  353. this.advice_groups.sort((a, b) => a.start_time - b.start_time);
  354. },
  355. didModifyAdvice: function(advice) {
  356. Toast.loading({ forbidClick: true, duration: 0 });
  357. EditDoctorAdvice(advice.id, {
  358. advice_name: advice.title,
  359. advice_desc: advice.advice_desc,
  360. remark: advice.remark,
  361. start_time: advice.start_time,
  362. drug_spec: String(advice.drug_spec),
  363. drug_spec_unit: advice.drug_spec_unit,
  364. delivery_way: advice.delivery_way,
  365. execution_frequency: advice.execution_frequency,
  366. single_dose: String(advice.single_dose),
  367. single_dose_unit: advice.single_dose_unit,
  368. prescribing_number: String(advice.prescribing_number),
  369. prescribing_number_unit: advice.prescribing_number_unit
  370. })
  371. .then(rs => {
  372. if (rs.data.state == 1) {
  373. var resp_advice = rs.data.data.advice;
  374. if (!rs.data.data.isChange) {
  375. var group = this.advice_groups[this.current_group_index];
  376. for (let index = 0; index < group.advices.length; index++) {
  377. const advice = group.advices[index];
  378. if (advice.id == resp_advice.id) {
  379. advice.advice_name = resp_advice.advice_name;
  380. advice.advice_desc = resp_advice.advice_desc;
  381. advice.remark = resp_advice.remark;
  382. advice.start_time = resp_advice.start_time;
  383. advice.drug_spec = resp_advice.drug_spec;
  384. (advice.drug_spec_unit = resp_advice.drug_spec_unit),
  385. (advice.delivery_way = resp_advice.delivery_way),
  386. (advice.execution_frequency =
  387. resp_advice.execution_frequency),
  388. (advice.single_dose = resp_advice.single_dose),
  389. (advice.single_dose_unit = resp_advice.single_dose_unit),
  390. (advice.prescribing_number =
  391. resp_advice.prescribing_number),
  392. (advice.prescribing_number_unit =
  393. resp_advice.prescribing_number_unit);
  394. break;
  395. }
  396. }
  397. } else {
  398. // var group = this.advice_groups[this.current_group_index]
  399. //先删除旧数据,再插入新数据
  400. var adviceArr = this.advice_groups[this.current_group_index]
  401. .advices;
  402. for (let y = resp_advice.length - 1; y >= 0; y--) {
  403. for (let i = adviceArr.length - 1; i >= 0; i--) {
  404. if (
  405. adviceArr[i].id == resp_advice[y].id ||
  406. adviceArr[i].parent_id == resp_advice[y].id
  407. ) {
  408. adviceArr.splice(i, 1);
  409. }
  410. }
  411. }
  412. var newAdvice = {};
  413. newAdvice["advices"] = resp_advice;
  414. newAdvice["group_no"] = resp_advice[0].groupno;
  415. this.advice_groups.push(newAdvice);
  416. }
  417. this.currentAdvices = [];
  418. this.currentSubAdvices = [];
  419. for (let i = 0; i < this.advice_groups.length; i++) {
  420. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  421. var advices = this.advice_groups[i].advices[y];
  422. advices.is_selected = 0;
  423. }
  424. }
  425. console.log(this.advice_groups);
  426. this.advice_groups.sort(
  427. (a, b) => a.advices[0].start_time - b.advices[0].start_time
  428. );
  429. this.$refs.modify_advice_form.dismiss();
  430. Toast.clear();
  431. this.index = 0;
  432. } else {
  433. Toast.fail(rs.data.msg);
  434. }
  435. })
  436. .catch(err => {
  437. Toast.fail(err);
  438. });
  439. },
  440. uParseTime(time, format) {
  441. if (time == 0) {
  442. return "";
  443. }
  444. return uParseTime(time, format);
  445. },
  446. getXuserName(id) {
  447. if (id <= 0) {
  448. return "";
  449. }
  450. var name = "";
  451. if (
  452. this.admin_users == null ||
  453. typeof this.admin_users.length == "undefined"
  454. ) {
  455. return name;
  456. }
  457. var leng = this.admin_users.length;
  458. if (leng == 0) {
  459. return name;
  460. }
  461. for (let index = 0; index < leng; index++) {
  462. if (this.admin_users[index].id == id) {
  463. name = this.admin_users[index].name;
  464. break;
  465. }
  466. }
  467. return name;
  468. },
  469. didAddSubdrug: function(subdrug) {
  470. Toast.loading({ forbidClick: true, duration: 0 });
  471. CreateDoctorAdvice(this.patient.id, {
  472. parent_id: subdrug.parent_id,
  473. advice_type: 2,
  474. advice_date: subdrug.record_time,
  475. start_time: subdrug.start_time,
  476. advice_name: subdrug.title,
  477. advice_desc: subdrug.advice_desc,
  478. drug_spec: String(subdrug.drug_spec),
  479. drug_spec_unit: subdrug.drug_spec_unit,
  480. single_dose: String(subdrug.single_dose),
  481. single_dose_unit: subdrug.single_dose_unit,
  482. prescribing_number: String(subdrug.prescribing_number),
  483. prescribing_number_unit: subdrug.prescribing_number_unit
  484. // delivery_way: subdrug.delivery_way,
  485. // execution_frequency: subdrug.execution_frequency
  486. })
  487. .then(response => {
  488. if (response.data.state == 0) {
  489. Toast.fail(response.data.msg);
  490. return false;
  491. } else {
  492. Toast.success("添加成功");
  493. var resp_advice = response.data.data.advice;
  494. var group_index = this.current_group_index;
  495. var adviceArr = this.advice_groups[this.current_group_index]
  496. .advices;
  497. for (let i = 0; i < adviceArr.length; i++) {
  498. if (
  499. adviceArr[i].id == this.currentAdvices[0].id &&
  500. adviceArr[i].is_selected == 1
  501. ) {
  502. var advice_index = i;
  503. }
  504. }
  505. var group = this.advice_groups[group_index];
  506. var insert_index = -1;
  507. var last_child_index = -1;
  508. for (
  509. let index = advice_index + 1;
  510. index < group.advices.length;
  511. index++
  512. ) {
  513. const advice = group.advices[index];
  514. if (resp_advice.parent_id != advice.parent_id) {
  515. insert_index = index;
  516. break;
  517. } else {
  518. last_child_index = index;
  519. }
  520. }
  521. if (insert_index < 0) {
  522. if (last_child_index < 0) {
  523. group.advices.splice(advice_index + 1, 0, resp_advice);
  524. } else {
  525. group.advices.splice(last_child_index + 1, 0, resp_advice);
  526. }
  527. } else {
  528. group.advices.splice(insert_index, 0, resp_advice);
  529. }
  530. this.cancelAdviceSelect();
  531. this.$refs.subdrug_form.dismiss();
  532. this.index = 0;
  533. // this.$emit("new_create", response.data.data.advice);
  534. this.currentAdvices = [];
  535. this.currentSubAdvices = [];
  536. for (let i = 0; i < this.advice_groups.length; i++) {
  537. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  538. var advices = this.advice_groups[i].advices[y];
  539. advices.is_selected = 0;
  540. }
  541. }
  542. return false;
  543. }
  544. })
  545. .catch(err => {
  546. Toast.fail(err);
  547. });
  548. },
  549. getAdviceConfig() {
  550. getAdviceConfig().then(response => {
  551. if (response.data.state == 1) {
  552. this.deliveryWayOptions =
  553. response.data.data.drugways === null
  554. ? []
  555. : response.data.data.drugways;
  556. this.executionFrequencyOptions =
  557. response.data.data.efs === null ? [] : response.data.data.efs;
  558. this.adviceTemplates =
  559. response.data.data.advice_templates === null
  560. ? []
  561. : response.data.data.advice_templates;
  562. }
  563. });
  564. },
  565. handleModifyExecTime(time) {
  566. var exceTime = this.handleTime(time);
  567. var currentAdviceIdArr = [];
  568. var exceParams = null;
  569. for (let i = 0; i < this.currentAdvices.length; i++) {
  570. if (this.currentAdvices[i].execution_state == 1) {
  571. currentAdviceIdArr.push(this.currentAdvices[i].id);
  572. }
  573. }
  574. this.currentAdviceIdsStr = currentAdviceIdArr.join(",");
  575. if (this.current_select_object == 1) {
  576. exceParams = {
  577. groupno: 0,
  578. advice_id: this.currentAdviceIdsStr,
  579. execution_time: exceTime
  580. };
  581. } else {
  582. var group = this.advice_groups[this.current_group_index];
  583. exceParams = {
  584. groupno: group.group_no <= 0 ? 0 : group.group_no,
  585. advice_id: group.group_no <= 0 ? group.advices[0].id : 0,
  586. execution_time: exceTime
  587. };
  588. }
  589. ModifyExecDoctorAdvice(exceParams)
  590. .then(response => {
  591. if (response.data.state == 0) {
  592. Toast.fail(response.data.msg);
  593. return false;
  594. } else {
  595. Toast.success("执行成功!");
  596. var advice = response.data.data.advice;
  597. if (this.current_select_object == 1) {
  598. var ids = this.currentAdviceIdsStr.split(",");
  599. var adviceArr = this.advice_groups[this.current_group_index]
  600. .advices;
  601. for (let i = 0; i < adviceArr.length; i++) {
  602. for (let a = 0; a < ids.length; a++) {
  603. if (
  604. (adviceArr[i].execution_state == 1 &&
  605. adviceArr[i].id == ids[a]) ||
  606. (adviceArr[i].execution_state == 1 &&
  607. adviceArr[i].parent_id == ids[a])
  608. ) {
  609. adviceArr[i].execution_time = advice.execution_time;
  610. }
  611. }
  612. }
  613. } else {
  614. for (let index = 0; index < group.advices.length; index++) {
  615. const adv = group.advices[index];
  616. if (adv.execution_state == 1) {
  617. adv.execution_time = advice.execution_time;
  618. }
  619. }
  620. }
  621. }
  622. })
  623. .catch(err => {
  624. Toast.fail(err);
  625. return false;
  626. });
  627. },
  628. handleExecTime(time) {
  629. var exceTime = this.handleTime(time);
  630. var exceParams = null;
  631. if (this.current_select_object == 1) {
  632. exceParams = {
  633. groupno: 0,
  634. advice_id: this.currentAdviceIdsStr,
  635. execution_time: exceTime
  636. };
  637. } else {
  638. var group = this.advice_groups[this.current_group_index];
  639. exceParams = {
  640. groupno: group.group_no <= 0 ? 0 : group.group_no,
  641. advice_id: group.group_no <= 0 ? group.advices[0].id : 0,
  642. execution_time: exceTime
  643. };
  644. }
  645. Toast.loading({ forbidClick: true, duration: 0 });
  646. ExecDoctorAdvice(exceParams)
  647. .then(response => {
  648. if (response.data.state == 0) {
  649. Toast.fail(response.data.msg);
  650. return false;
  651. } else {
  652. Toast.success("执行成功!");
  653. var advice = response.data.data.advice;
  654. if (this.current_select_object == 1) {
  655. var ids = this.currentAdviceIdsStr.split(",");
  656. var adviceArr = this.advice_groups[this.current_group_index]
  657. .advices;
  658. for (let i = 0; i < adviceArr.length; i++) {
  659. for (let a = 0; a < ids.length; a++) {
  660. if (
  661. (adviceArr[i].execution_state == 2 &&
  662. adviceArr[i].id == ids[a]) ||
  663. (adviceArr[i].execution_state == 2 &&
  664. adviceArr[i].parent_id == ids[a])
  665. ) {
  666. adviceArr[i].execution_staff = advice.execution_staff;
  667. adviceArr[i].execution_time = advice.execution_time;
  668. adviceArr[i].execution_state = advice.execution_state;
  669. }
  670. }
  671. }
  672. } else {
  673. for (let index = 0; index < group.advices.length; index++) {
  674. const adv = group.advices[index];
  675. if (adv.execution_state == 2) {
  676. adv.execution_staff = advice.execution_staff;
  677. adv.execution_time = advice.execution_time;
  678. adv.execution_state = advice.execution_state;
  679. }
  680. }
  681. }
  682. }
  683. })
  684. .catch(err => {
  685. Toast.fail(err);
  686. return false;
  687. });
  688. },
  689. handleTime(time) {
  690. var year = time.getFullYear();
  691. var month = time.getMonth() + 1;
  692. var day = time.getDate();
  693. var hour = time.getHours();
  694. var minute = time.getMinutes();
  695. if (month < 10) {
  696. month = "0" + month;
  697. }
  698. if (day < 10) {
  699. day = "0" + day;
  700. }
  701. if (hour < 10) {
  702. hour = "0" + hour;
  703. }
  704. if (minute < 10) {
  705. minute = "0" + minute;
  706. }
  707. return year + "-" + month + "-" + day + " " + hour + ":" + minute + ":00";
  708. },
  709. deleteSubAdviceAction: function() {
  710. if (this.currentSubAdvices.length <= 0) {
  711. return;
  712. }
  713. Dialog.confirm({
  714. title: "删除医嘱",
  715. message: "确认删除医嘱吗?"
  716. }).then(() => {
  717. Toast.loading({ forbidClick: true, duration: 0 });
  718. DeleteSubDoctorAdvice(this.currentSubAdvices[0].id)
  719. .then(rs => {
  720. if (rs.data.state == 1) {
  721. Toast.success("删除成功");
  722. var adviceArr = this.advice_groups[this.current_group_index]
  723. .advices;
  724. for (let i = adviceArr.length - 1; i >= 0; i--) {
  725. if (adviceArr[i].id == this.currentSubAdvices[0].id) {
  726. adviceArr.splice(i, 1);
  727. }
  728. }
  729. this.currentSubAdvices = [];
  730. this.currentAdvices = [];
  731. for (let i = 0; i < this.advice_groups.length; i++) {
  732. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  733. var advices = this.advice_groups[i].advices[y];
  734. advices.is_selected = 0;
  735. }
  736. }
  737. } else {
  738. Toast.fail(rs.data.msg);
  739. }
  740. })
  741. .catch(err => {
  742. Toast.fail(err);
  743. });
  744. });
  745. },
  746. deleteAdviceAction: function() {
  747. if (this.current_select_object == 1) {
  748. if (this.currentAdvices.length <= 0) {
  749. return;
  750. }
  751. Dialog.confirm({
  752. title: "删除医嘱",
  753. message: "确认删除医嘱吗?"
  754. }).then(() => {
  755. Toast.loading({ forbidClick: true, duration: 0 });
  756. var group_no = 0;
  757. var advice_id = this.currentAdvices.join(",");
  758. var ids = [];
  759. for (let i = 0; i < this.currentAdvices.length; i++) {
  760. ids.push(this.currentAdvices[i].id);
  761. }
  762. advice_id = ids.join(",");
  763. DeleteDoctorAdviceNew(group_no, advice_id)
  764. .then(rs => {
  765. if (rs.data.state == 1) {
  766. Toast.success("删除成功");
  767. var adviceArr = this.advice_groups[this.current_group_index]
  768. .advices;
  769. for (let y = ids.length - 1; y >= 0; y--) {
  770. for (let i = adviceArr.length - 1; i >= 0; i--) {
  771. if (
  772. adviceArr[i].id == ids[y] ||
  773. adviceArr[i].parent_id == ids[y]
  774. ) {
  775. adviceArr.splice(i, 1);
  776. }
  777. }
  778. }
  779. this.currentSubAdvices = [];
  780. this.currentAdvices = [];
  781. for (let i = 0; i < this.advice_groups.length; i++) {
  782. for (
  783. let y = 0;
  784. y < this.advice_groups[i].advices.length;
  785. y++
  786. ) {
  787. var advices = this.advice_groups[i].advices[y];
  788. advices.is_selected = 0;
  789. }
  790. }
  791. } else {
  792. Toast.fail(rs.data.msg);
  793. }
  794. })
  795. .catch(err => {
  796. Toast.fail(err);
  797. });
  798. });
  799. } else {
  800. if (this.current_group_index < 0) {
  801. return;
  802. }
  803. var group = this.advice_groups[this.current_group_index];
  804. Dialog.confirm({
  805. title: "删除医嘱",
  806. message: "确认删除这组医嘱吗?"
  807. }).then(() => {
  808. Toast.loading({ forbidClick: true, duration: 0 });
  809. var group_no = group.group_no <= 0 ? 0 : group.group_no;
  810. var advice_id = 0;
  811. if (group.group_no <= 0) {
  812. advice_id = group.advices[0].id;
  813. } else if (this.current_advice != null) {
  814. group_no = 0;
  815. advice_id = this.current_advice.id;
  816. }
  817. DeleteDoctorAdviceNew(group_no, advice_id)
  818. .then(rs => {
  819. if (rs.data.state == 1) {
  820. Toast.success("删除成功");
  821. // if (group.group_no <= 0) {
  822. // this.advice_groups.splice(this.current_group_index, 1);
  823. // } else {
  824. if (this.current_advice_index >= 0) {
  825. // if (group.advices.length <= 1) {
  826. // this.advice_groups.splice(this.current_group_index, 1);
  827. // } else {
  828. var advice = group.advices[this.current_advice_index];
  829. if (advice.parent_id > 0) {
  830. group.advices.splice(this.current_advice_index, 1);
  831. } else {
  832. var child_count = 0;
  833. for (
  834. let index = this.current_advice_index + 1;
  835. index < group.advices.length;
  836. index++
  837. ) {
  838. const adv = group.advices[index];
  839. if (adv.parent_id == advice.id) {
  840. child_count++;
  841. }
  842. }
  843. group.advices.splice(
  844. this.current_advice_index,
  845. child_count + 1
  846. );
  847. }
  848. if (group.advices.length == 0) {
  849. this.advice_groups.splice(this.current_group_index, 1);
  850. }
  851. // }
  852. } else {
  853. this.advice_groups.splice(this.current_group_index, 1);
  854. }
  855. // }
  856. this.cancelAdviceSelect();
  857. } else {
  858. Toast.fail(rs.data.msg);
  859. }
  860. })
  861. .catch(err => {
  862. Toast.fail(err);
  863. });
  864. });
  865. }
  866. },
  867. checkAdvice() {
  868. if (this.currentAdvices.length <= 0) {
  869. return;
  870. }
  871. if (this.current_select_object == 1) {
  872. var isCheck = true;
  873. var adviceArr = this.advice_groups[this.current_group_index].advices;
  874. for (let i = 0; i < adviceArr.length; i++) {
  875. if (adviceArr[i].check_state == 0 && adviceArr[i].is_selected == 1) {
  876. isCheck = false;
  877. }
  878. }
  879. if (isCheck) {
  880. Toast.fail("所选医嘱已核对");
  881. return false;
  882. }
  883. for (let i = 0; i < adviceArr.length; i++) {
  884. if (
  885. adviceArr[i].is_selected == 1 &&
  886. adviceArr[i].execution_staff > 0 &&
  887. adviceArr[i].execution_staff == this.$store.getters.user.user.id
  888. ) {
  889. Toast.fail("核对与执行不能是同一人");
  890. return false;
  891. }
  892. }
  893. var currentAdviceIdArr = [];
  894. for (let i = 0; i < adviceArr.length; i++) {
  895. if (adviceArr[i].is_selected == 1) {
  896. currentAdviceIdArr.push(adviceArr[i].id);
  897. }
  898. }
  899. this.currentAdviceIdsStr = currentAdviceIdArr.join(",");
  900. } else {
  901. if (!(this.current_group_index >= 0 && this.current_advice_index < 0)) {
  902. return;
  903. }
  904. var isCheck = true;
  905. var group_top_advice = this.advice_groups[this.current_group_index]
  906. .advices[0];
  907. var adviceArr = this.advice_groups[this.current_group_index].advices;
  908. var advice = null;
  909. for (let i = 0; i < adviceArr.length; i++) {
  910. if (adviceArr[i].check_state == 0) {
  911. isCheck = false;
  912. }
  913. }
  914. if (isCheck) {
  915. Toast.fail("所选医嘱已核对");
  916. return false;
  917. }
  918. for (let i = 0; i < adviceArr.length; i++) {
  919. if (
  920. adviceArr[i].is_selected == 1 &&
  921. adviceArr[i].execution_staff > 0 &&
  922. adviceArr[i].execution_staff == this.$store.getters.user.user.id
  923. ) {
  924. Toast.fail("核对与执行不能是同一人");
  925. return false;
  926. }
  927. }
  928. // if (
  929. // group_top_advice.execution_staff > 0 &&
  930. // group_top_advice.execution_staff == this.$store.getters.user.user.id
  931. // ) {
  932. // Toast.fail('核对与执行不能是同一人')
  933. // return false
  934. // }
  935. }
  936. Dialog.confirm({
  937. title: "医嘱核对",
  938. message: "确认提交核对?"
  939. }).then(() => {
  940. var params = null;
  941. Toast.loading({ forbidClick: true, duration: 0 });
  942. if (this.current_select_object == 1) {
  943. params = {
  944. groupno: 0,
  945. advice_id: this.currentAdviceIdsStr
  946. };
  947. } else {
  948. var group = this.advice_groups[this.current_group_index];
  949. params = {
  950. groupno: group.group_no <= 0 ? 0 : group.group_no,
  951. advice_id: group.group_no <= 0 ? group.advices[0].id : 0
  952. };
  953. }
  954. CheckDoctorAdvice(params)
  955. .then(response => {
  956. if (response.data.state == 0) {
  957. return false;
  958. } else {
  959. Toast.success("核对成功!");
  960. var advice = response.data.data.advice;
  961. if (this.current_select_object == 1) {
  962. var ids = this.currentAdviceIdsStr.split(",");
  963. var adviceArr = this.advice_groups[this.current_group_index]
  964. .advices;
  965. for (let i = 0; i < adviceArr.length; i++) {
  966. for (let a = 0; a < ids.length; a++) {
  967. if (
  968. (adviceArr[i].check_state == 0 &&
  969. adviceArr[i].id == ids[a]) ||
  970. (adviceArr[i].check_state == 0 &&
  971. adviceArr[i].parent_id == ids[a])
  972. ) {
  973. adviceArr[i].checker = advice.checker;
  974. adviceArr[i].check_time = advice.check_time;
  975. adviceArr[i].check_state = advice.check_state;
  976. }
  977. }
  978. }
  979. } else {
  980. for (let index = 0; index < group.advices.length; index++) {
  981. const adv = group.advices[index];
  982. adv.checker = advice.checker;
  983. adv.check_time = advice.check_time;
  984. adv.check_state = advice.check_state;
  985. }
  986. }
  987. }
  988. })
  989. .catch(err => {
  990. Toast.fail(err);
  991. });
  992. });
  993. // .catch(err => {
  994. // Toast.fail(err);
  995. // });
  996. },
  997. execAdvice() {
  998. if (this.currentAdvices.length <= 0) {
  999. return;
  1000. }
  1001. if (this.current_select_object == 1) {
  1002. var isExecution = true;
  1003. var adviceArr = this.advice_groups[this.current_group_index].advices;
  1004. for (let i = 0; i < adviceArr.length; i++) {
  1005. if (
  1006. adviceArr[i].execution_state == 2 &&
  1007. adviceArr[i].is_selected == 1
  1008. ) {
  1009. isExecution = false;
  1010. }
  1011. }
  1012. if (isExecution) {
  1013. Toast.fail("所选医嘱已停止或执行");
  1014. return false;
  1015. }
  1016. for (let i = 0; i < adviceArr.length; i++) {
  1017. if (
  1018. adviceArr[i].is_selected == 1 &&
  1019. adviceArr[i].checker > 0 &&
  1020. adviceArr[i].checker == this.$store.getters.user.user.id
  1021. ) {
  1022. Toast.fail("核对与执行不能是同一人");
  1023. return false;
  1024. }
  1025. }
  1026. var currentAdviceIdArr = [];
  1027. for (let i = 0; i < adviceArr.length; i++) {
  1028. if (adviceArr[i].is_selected == 1) {
  1029. currentAdviceIdArr.push(adviceArr[i].id);
  1030. }
  1031. }
  1032. this.currentAdviceIdsStr = currentAdviceIdArr.join(",");
  1033. this.nowExecTime = new Date(adviceArr[0].start_time * 1000);
  1034. } else {
  1035. if (!(this.current_group_index >= 0 && this.current_advice_index < 0)) {
  1036. return;
  1037. }
  1038. var isExecution = true;
  1039. var group_top_advice = this.advice_groups[this.current_group_index]
  1040. .advices[0];
  1041. var adviceArr = this.advice_groups[this.current_group_index].advices;
  1042. for (let i = 0; i < adviceArr.length; i++) {
  1043. if (
  1044. adviceArr[i].is_selected == 1 &&
  1045. adviceArr[i].execution_state == 2
  1046. ) {
  1047. isExecution = false;
  1048. }
  1049. }
  1050. if (isExecution) {
  1051. Toast.fail("所选医嘱已停止或执行");
  1052. return false;
  1053. }
  1054. for (let i = 0; i < adviceArr.length; i++) {
  1055. if (
  1056. adviceArr[i].is_selected == 1 &&
  1057. adviceArr[i].checker > 0 &&
  1058. adviceArr[i].checker == this.$store.getters.user.user.id
  1059. ) {
  1060. Toast.fail("核对与执行不能是同一人");
  1061. return false;
  1062. }
  1063. }
  1064. this.nowExecTime = new Date(group_top_advice.start_time * 1000);
  1065. }
  1066. this.$refs.exec_time.open();
  1067. },
  1068. openNewChild() {
  1069. if (this.$store.getters.user.user.user_type == 3) {
  1070. Toast.fail("你没有权限添加子药!");
  1071. return;
  1072. }
  1073. if (this.currentAdvices.length == 0) {
  1074. 0;
  1075. return false;
  1076. }
  1077. this.current_advice = this.currentAdvices[0];
  1078. if (
  1079. this.current_advice.stop_state == 1 ||
  1080. this.current_advice.execution_state == 1 ||
  1081. this.current_advice.check_state == 1
  1082. ) {
  1083. Toast.fail("所选医嘱已停止或执行或核对");
  1084. return false;
  1085. }
  1086. this.index = 2;
  1087. var start_time = uParseTime(
  1088. this.current_advice.start_time,
  1089. "{y}-{m}-{d} {h}:{i}"
  1090. );
  1091. this.$refs.subdrug_form.showWithNewSubDrug(
  1092. this.current_advice.id,
  1093. this.record_date,
  1094. start_time,
  1095. this.current_advice.delivery_way,
  1096. this.current_advice.execution_frequency
  1097. );
  1098. return;
  1099. },
  1100. openNewAdvice() {
  1101. if (this.$store.getters.user.user.user_type == 3) {
  1102. Toast.fail("你没有权限新增医嘱!");
  1103. return;
  1104. }
  1105. this.currentAdvices = [];
  1106. this.currentSubAdvices = [];
  1107. for (let i = 0; i < this.advice_groups.length; i++) {
  1108. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1109. var advices = this.advice_groups[i].advices[y];
  1110. advices.is_selected = 0;
  1111. }
  1112. }
  1113. this.index = 1;
  1114. this.current_group_index = -1;
  1115. this.current_advice_index = -1;
  1116. this.current_advice = null;
  1117. },
  1118. modifySubdviceAction: function() {
  1119. if (this.currentSubAdvices.length <= 0) {
  1120. return;
  1121. }
  1122. if (this.current_advice_index >= 0) {
  1123. this.index = 3;
  1124. var advice = this.currentSubAdvices[0];
  1125. this.$refs.modify_advice_form.showWithModify({
  1126. id: advice.id,
  1127. parent_id: advice.parent_id,
  1128. title: advice.advice_name,
  1129. advice_desc: advice.advice_desc,
  1130. remark: advice.remark,
  1131. drug_spec: advice.drug_spec,
  1132. drug_spec_unit: advice.drug_spec_unit,
  1133. delivery_way: advice.delivery_way,
  1134. execution_frequency: advice.execution_frequency,
  1135. single_dose: advice.single_dose,
  1136. single_dose_unit: advice.single_dose_unit,
  1137. prescribing_number: advice.prescribing_number,
  1138. prescribing_number_unit: advice.prescribing_number_unit
  1139. });
  1140. }
  1141. },
  1142. modifyAdviceAction: function() {
  1143. if (this.current_group_index < 0) {
  1144. return;
  1145. }
  1146. var group = this.advice_groups[this.current_group_index];
  1147. if (this.current_advice_index >= 0) {
  1148. this.index = 3;
  1149. var advice = this.currentAdvices[0];
  1150. this.$refs.modify_advice_form.showWithModify({
  1151. id: advice.id,
  1152. parent_id: advice.parent_id,
  1153. title: advice.advice_name,
  1154. advice_desc: advice.advice_desc,
  1155. remark: advice.remark,
  1156. start_time: advice.start_time,
  1157. drug_spec: advice.drug_spec,
  1158. drug_spec_unit: advice.drug_spec_unit,
  1159. delivery_way: advice.delivery_way,
  1160. execution_frequency: advice.execution_frequency,
  1161. single_dose: advice.single_dose,
  1162. single_dose_unit: advice.single_dose_unit,
  1163. prescribing_number: advice.prescribing_number,
  1164. prescribing_number_unit: advice.prescribing_number_unit
  1165. });
  1166. } else {
  1167. if (group.group_no <= 0) {
  1168. this.index = 3;
  1169. var advice = group.advices[0];
  1170. this.$refs.modify_advice_form.showWithModify({
  1171. id: advice.id,
  1172. parent_id: advice.parent_id,
  1173. title: advice.advice_name,
  1174. advice_desc: advice.advice_desc,
  1175. remark: advice.remark,
  1176. drug_spec: advice.drug_spec,
  1177. drug_spec_unit: advice.drug_spec_unit,
  1178. delivery_way: advice.delivery_way,
  1179. execution_frequency: advice.execution_frequency,
  1180. single_dose: advice.single_dose,
  1181. single_dose_unit: advice.single_dose_unit,
  1182. prescribing_number: advice.prescribing_number,
  1183. prescribing_number_unit: advice.prescribing_number_unit
  1184. });
  1185. } else {
  1186. this.index = 4;
  1187. this.$refs.modify_advice_group.show(group.group_no, group.advices);
  1188. }
  1189. }
  1190. },
  1191. cancelAdviceSelect: function() {
  1192. this.current_group_index = -1;
  1193. this.current_advice_index = -1;
  1194. this.current_advice = null;
  1195. },
  1196. selectAdviceAction: function(group_index, advice_index, advice) {
  1197. console.log(this.current_group_index);
  1198. console.log(group_index);
  1199. console.log(advice.parent_id);
  1200. if (
  1201. (this.current_group_index != -1 &&
  1202. this.current_group_index != group_index) ||
  1203. advice.parent_id > 0
  1204. ) {
  1205. //选择其他组,将原来的组选择状态清除
  1206. this.currentAdvices = [];
  1207. this.currentSubAdvices = [];
  1208. for (let i = 0; i < this.advice_groups.length; i++) {
  1209. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1210. var advices = this.advice_groups[i].advices[y];
  1211. advices.is_selected = 0;
  1212. }
  1213. }
  1214. }
  1215. for (let i = 0; i < this.advice_groups.length; i++) {
  1216. //选择子医嘱,将已经选择的医嘱选择状态清除
  1217. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1218. var advices = this.advice_groups[i].advices[y];
  1219. if (advices.parent_id > 0) {
  1220. advices.is_selected = 0;
  1221. }
  1222. }
  1223. }
  1224. for (let i = 0; i < this.advice_groups.length; i++) {
  1225. //设置选择状态
  1226. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1227. var advices = this.advice_groups[i].advices[y];
  1228. if (advices.id == advice.id) {
  1229. if (advice.is_selected == 1) {
  1230. advice.is_selected = 0;
  1231. for (let a = this.currentAdvices.length - 1; a >= 0; a--) {
  1232. if (this.currentAdvices[a].id == advice.id) {
  1233. this.currentAdvices.splice(a, 1);
  1234. }
  1235. }
  1236. } else {
  1237. advice.is_selected = 1;
  1238. if (advice.parent_id == 0) {
  1239. this.currentAdvices.push(advice);
  1240. }
  1241. }
  1242. }
  1243. }
  1244. }
  1245. if (advice.parent_id == 0) {
  1246. this.currentSubAdvices = [];
  1247. } else {
  1248. this.currentSubAdvices.push(advice);
  1249. }
  1250. this.current_select_object = 1; //单条医嘱
  1251. this.current_group_index = group_index;
  1252. this.current_advice_index = advice_index;
  1253. this.current_advice = advice;
  1254. },
  1255. selectGroupAdviceAction: function(
  1256. group_index,
  1257. advice_index,
  1258. advice,
  1259. group
  1260. ) {
  1261. if (
  1262. this.current_group_index != -1 &&
  1263. this.current_group_index != group_index
  1264. ) {
  1265. //选择其他组,将原来的组选择状态清除
  1266. this.currentAdvices = [];
  1267. this.currentSubAdvices = [];
  1268. for (let i = 0; i < this.advice_groups.length; i++) {
  1269. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1270. var advices = this.advice_groups[i].advices[y];
  1271. advices.is_selected = 0;
  1272. }
  1273. }
  1274. }
  1275. for (let i = 0; i < this.advice_groups.length; i++) {
  1276. //选择子医嘱,将已经选择的医嘱选择状态清除
  1277. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1278. var advices = this.advice_groups[i].advices[y];
  1279. if (advices.parent_id > 0) {
  1280. advices.is_selected = 0;
  1281. }
  1282. }
  1283. }
  1284. for (let i = 0; i < this.advice_groups.length; i++) {
  1285. for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
  1286. var advices = this.advice_groups[i].advices[y];
  1287. if (advices.groupno == group.group_no) {
  1288. advices.is_selected = 1;
  1289. this.currentAdvices.push(advices);
  1290. }
  1291. }
  1292. }
  1293. this.current_select_object = 2; //单组医嘱
  1294. this.current_group_index = group_index;
  1295. this.current_advice_index = advice_index;
  1296. this.current_advice = advice;
  1297. }
  1298. }
  1299. };
  1300. </script>
  1301. <style style="stylesheet/scss" lang="scss" scoped>
  1302. .DialogContent {
  1303. .content {
  1304. .yzNav {
  1305. position: fixed;
  1306. top: 0.16rem;
  1307. }
  1308. }
  1309. }
  1310. .table {
  1311. width: 100%;
  1312. tr {
  1313. th {
  1314. background: $main-color;
  1315. color: #fff;
  1316. height: 0.88rem;
  1317. line-height: 0.88rem;
  1318. }
  1319. td {
  1320. line-height: 0.4rem;
  1321. .txt {
  1322. // float: left;
  1323. padding: 0 10px 0 10px;
  1324. // width: 75%;
  1325. text-align: left;
  1326. }
  1327. .ico {
  1328. float: right;
  1329. width: 60px;
  1330. text-align: right;
  1331. padding-right: 3px;
  1332. }
  1333. .iconfont {
  1334. font-size: 20px;
  1335. padding: 0 2px;
  1336. color: #7b8a97;
  1337. }
  1338. .handle {
  1339. color: #409eff;
  1340. // padding: 0 7px;
  1341. }
  1342. }
  1343. .advice_content {
  1344. // background: #eff6fc;
  1345. }
  1346. .subadvice_content {
  1347. // background: #fafcfe;
  1348. padding-left: 20px;
  1349. }
  1350. .td-active {
  1351. background: #badcff !important;
  1352. }
  1353. }
  1354. .row-class-active {
  1355. td {
  1356. background: #badcff;
  1357. }
  1358. }
  1359. }
  1360. .content {
  1361. .cell {
  1362. float: left;
  1363. width: 3.42rem;
  1364. margin: 0.35rem 0.3rem 0 0.4rem;
  1365. label {
  1366. display: block;
  1367. height: 0.55rem;
  1368. line-height: 0.55rem;
  1369. color: $pgh-color;
  1370. }
  1371. select {
  1372. width: 100%;
  1373. padding: 0.2rem 0;
  1374. border: 1px $border-color solid;
  1375. border-radius: 2px;
  1376. padding-left: 5px;
  1377. }
  1378. .inputBox {
  1379. border: 1px $border-color solid;
  1380. border-radius: 2px;
  1381. padding: 0.18rem 0;
  1382. padding-left: 5px;
  1383. }
  1384. .textarea {
  1385. width: 100%;
  1386. height: 1.22rem;
  1387. border: 1px $border-color solid;
  1388. border-radius: 2px;
  1389. padding-left: 5px;
  1390. }
  1391. }
  1392. .width {
  1393. width: 90%;
  1394. @include box-sizing;
  1395. margin-top: 1rem;
  1396. label {
  1397. display: inline-block;
  1398. }
  1399. button {
  1400. background: $main-color;
  1401. color: #fff;
  1402. border-radius: 6px;
  1403. width: 3rem;
  1404. height: 0.9rem;
  1405. line-height: 0.9rem;
  1406. text-align: center;
  1407. margin: 0 0.1rem 0.6rem 0.1rem;
  1408. border: 1px $main-color solid;
  1409. &.smt-danger {
  1410. background: #fff;
  1411. color: $main-color;
  1412. }
  1413. }
  1414. }
  1415. .center {
  1416. text-align: center;
  1417. }
  1418. }
  1419. .yzNav {
  1420. display: flex;
  1421. flex-wrap: wrap;
  1422. span {
  1423. width: 16%;
  1424. @media only screen and (max-width: 415px) {
  1425. padding: 0;
  1426. }
  1427. // @media only screen and (min-width: 666px) and (max-width: 737px) {
  1428. // width: 16% !important;
  1429. // }
  1430. }
  1431. }
  1432. </style>