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

DoctorAdviceDialog.vue 90KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  1. <template>
  2. <div class="doctor-advice-box">
  3. <el-dialog
  4. :title="add_title"
  5. :visible.sync="isLastOrNextVisible"
  6. width="1010px"
  7. @close="resetDialog"
  8. :modal = 'false'
  9. :close-on-click-modal="false"
  10. >
  11. <div class="txsj">
  12. <el-button
  13. round
  14. @click="openLast(3)"
  15. >上一方
  16. </el-button>
  17. <el-button
  18. round
  19. @click="openNext(4)"
  20. >下一方
  21. </el-button>
  22. </div>
  23. <el-form
  24. ref="adForm"
  25. :rules="adRules"
  26. :model="adForm"
  27. label-width="90px"
  28. >
  29. <el-row>
  30. <el-col :span="12">
  31. <el-form-item
  32. label="开始时间 :"
  33. required
  34. prop="other_start_time"
  35. style="width:100%;"
  36. >
  37. <el-date-picker
  38. type="datetime"
  39. format="yyyy-MM-dd HH:mm"
  40. value-format="yyyy-MM-dd HH:mm"
  41. placeholder="选择时间"
  42. v-model="adForm.other_start_time"
  43. style="width:100%;"
  44. ></el-date-picker>
  45. </el-form-item>
  46. </el-col>
  47. </el-row>
  48. </el-form>
  49. <div style='margin-bottom:20px;'>
  50. {{getContent()}}
  51. </div>
  52. <el-table
  53. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  54. :data="other_doctor_advices"
  55. border
  56. style="width: 100%"
  57. ref="advices_list"
  58. >
  59. <el-table-column
  60. label="医嘱内容"
  61. property="advice_name"
  62. style="word-break: keep-all;white-space:nowrap;"
  63. align="center"
  64. ></el-table-column>
  65. <el-table-column label="药品规格" align="center">
  66. <template slot-scope="scope">
  67. <span v-if="scope.row.advice_desc">{{ scope.row.advice_desc}}{{ scope.row.drug_spec_unit }}</span>
  68. </template>
  69. </el-table-column>
  70. <el-table-column
  71. label="开药数量"
  72. min-width="80"
  73. property="prescribing_number"
  74. align="center"
  75. >
  76. <template slot-scope="scope">
  77. <span v-if="scope.row.prescribing_number != 0">{{ scope.row.prescribing_number}}{{ scope.row.prescribing_number_unit }}</span>
  78. </template>
  79. </el-table-column>
  80. <el-table-column
  81. label="单次用量"
  82. min-width="80"
  83. property="single_dose"
  84. align="center"
  85. >
  86. <template slot-scope="scope">
  87. <span v-if="scope.row.single_dose != 0">{{ scope.row.single_dose}}{{ scope.row.single_dose_unit }}</span>
  88. </template>
  89. </el-table-column>
  90. <el-table-column
  91. label="给药途径"
  92. min-width="80"
  93. property="delivery_way"
  94. align="center"
  95. >
  96. <template slot-scope="scope">
  97. <span v-if="scope.row.parent_row == 0">{{scope.row.delivery_way}}</span>
  98. </template>
  99. </el-table-column>
  100. <el-table-column
  101. label="执行频率"
  102. min-width="80"
  103. property="execution_frequency"
  104. align="center"
  105. >
  106. <template slot-scope="scope">
  107. <span v-if="scope.row.parent_row == 0">{{scope.row.execution_frequency}}</span>
  108. </template>
  109. </el-table-column>
  110. </el-table>
  111. <div slot="footer" class="dialog-footer">
  112. <el-button @click="isLastOrNextVisible = false">取 消</el-button>
  113. <el-button type="primary" @click="AddNewAdvice('adForm')">设为本次临嘱</el-button>
  114. </div>
  115. </el-dialog>
  116. <el-dialog
  117. :title="title"
  118. :visible.sync="isVisibility"
  119. width="1010px"
  120. @close="resetDialog"
  121. :modal = 'false'
  122. :close-on-click-modal="false"
  123. >
  124. <div class="txsj">
  125. <el-button
  126. round
  127. v-if="his_is_open != 1 || is_advice_open == 1"
  128. @click="openLast(1)"
  129. >上一方
  130. </el-button>
  131. <el-button
  132. round
  133. v-if="his_is_open != 1 || is_advice_open == 1"
  134. @click="openNext(2)"
  135. >下一方
  136. </el-button>
  137. </div>
  138. <div class="txsj" v-show="showAdvicePanel">
  139. <el-button
  140. round
  141. @click="openGroupFrom"
  142. :loading="deleLoading"
  143. v-if="his_is_open != 1 || is_advice_open == 1"
  144. :disabled="!is_has_create"
  145. >新增医嘱
  146. </el-button>
  147. <el-button
  148. v-if="currentRow != null"
  149. round
  150. :disabled="!is_has_exce"
  151. @click="execAdvice"
  152. :loading="deleLoading"
  153. >执行医嘱
  154. </el-button>
  155. <el-button v-else disabled round @click="execAdvice" :loading="deleLoading">执行医嘱</el-button>
  156. <el-button
  157. v-if="currentRow != null"
  158. round
  159. :disabled="!is_has_check"
  160. @click="checkAdvice"
  161. :loading="deleLoading"
  162. >医嘱核对
  163. </el-button>
  164. <el-button v-else disabled round @click="checkAdvice" :loading="deleLoading">医嘱核对</el-button>
  165. <el-button
  166. v-if="groupSelectRow != null || his_is_open != 1"
  167. :disabled="!is_has_modify && !is_has_modify_other"
  168. round
  169. @click="openEditGroupAdvice"
  170. :loading="deleLoading"
  171. >修改医嘱
  172. </el-button>
  173. <el-button v-else disabled round @click="openEditGroupAdvice" :loading="deleLoading">修改医嘱</el-button>
  174. <el-button
  175. v-if="groupSelectRow != null || his_is_open != 1"
  176. :disabled="!is_has_del && !is_has_del_other"
  177. round
  178. @click="openDeleteGroupAdvice"
  179. :loading="deleLoading"
  180. >删除医嘱
  181. </el-button>
  182. <el-button v-else disabled round @click="openDeleteGroupAdvice" :loading="deleLoading">删除医嘱</el-button>
  183. <!-- <el-button @click="lili">调试</el-button>-->
  184. <!-- <el-button @click="lili" >调试</el-button>-->
  185. <!--<el-button round @click="openNewChild" :loading="deleLoading">新增子药</el-button>-->
  186. </div>
  187. <!-- 医嘱列表 -->
  188. <!-- @row-click="cellMouseEnter" -->
  189. <!--&lt;!&ndash;:header-cell-style="{ backgroundColor: 'rgb(64, 158, 255)', color: 'white'}"&ndash;&gt;@current-change="selectRow"-->
  190. <el-table
  191. v-if="his_is_open !=1 && is_advice_open!=1"
  192. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  193. :data="doctor_advices"
  194. border
  195. style="width: 100%"
  196. v-show="showAdvicePanel"
  197. ref="advices_list"
  198. @row-click="cellMouseEnter"
  199. :row-class-name="tableRowClassName"
  200. :span-method="objectSpanMethod"
  201. :cell-class-name="adviceNameShow"
  202. :modal-append-to-body="false"
  203. highlight-current-row
  204. >
  205. <!-- @selection-change="handleSelectionChange" -->
  206. <!-- <el-table-column type="selection" width="55"></el-table-column> -->
  207. <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
  208. <template slot-scope="scope">
  209. <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
  210. </template>
  211. </el-table-column>
  212. <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
  213. <template slot-scope="scope">
  214. <span>
  215. {{scope.row.start_time | parseTime('{y}-{m}-{d} {h}:{i}')}}
  216. </span>
  217. </template>
  218. </el-table-column>
  219. <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
  220. <template slot-scope="scope">
  221. <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
  222. <span class="el-dropdown-link">
  223. {{ getAdviceContent(scope.row, 1)}}
  224. <i class="el-icon-arrow-down el-icon--right"></i>
  225. </span>
  226. <el-dropdown-menu slot="dropdown">
  227. <el-dropdown-item v-if=" his_is_open != 1" @click.native="openEdit(scope.$index, scope.row)">修改医嘱</el-dropdown-item>
  228. <el-dropdown-item v-if=" his_is_open != 1 " @click.native="openDelete(scope.$index, scope.row)">删除医嘱</el-dropdown-item>
  229. <el-dropdown-item v-if=" his_is_open != 1 " @click.native="openNewChildTwo(scope.$index, scope.row)">新增子药</el-dropdown-item>
  230. </el-dropdown-menu>
  231. </el-dropdown>
  232. <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
  233. <span class="el-dropdown-link">
  234. &emsp;{{ getAdviceContent(scope.row, 2)}}
  235. <i class="el-icon-arrow-down el-icon--right"></i>
  236. </span>
  237. <el-dropdown-menu slot="dropdown">
  238. <el-dropdown-item v-if=" his_is_open != 1" @click.native="openEdit(scope.$index, scope.row)">修改子药</el-dropdown-item>
  239. <el-dropdown-item v-if=" his_is_open != 1" @click.native="openDelete(scope.$index, scope.row)">删除子药</el-dropdown-item>
  240. </el-dropdown-menu>
  241. </el-dropdown>
  242. </template>
  243. </el-table-column>
  244. <el-table-column
  245. prop="execution_time"
  246. align="center"
  247. min-width="30px"
  248. label="执行时间"
  249. sortable
  250. >
  251. <template slot-scope="scope">
  252. <span v-if="scope.row.execution_time != 0">
  253. {{scope.row.execution_time | parseTime('{m}-{d} {h}:{i}')}}
  254. </span>
  255. <span v-else></span>
  256. </template>
  257. </el-table-column>
  258. <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士"><!--bug642-->
  259. <template slot-scope="scope">
  260. <span>
  261. {{getXuserName(scope.row.execution_staff)}}
  262. </span>
  263. </template>
  264. </el-table-column>
  265. <el-table-column
  266. v-if="(template_id != 6 && org_id!=10223 && org_id!=10445) || org_id == 10460"
  267. prop="checker"
  268. min-width="30px"
  269. align="center"
  270. label="核对人员"
  271. >
  272. <template slot-scope="scope">
  273. <span>
  274. {{getXuserName(scope.row.checker)}}
  275. </span>
  276. </template>
  277. </el-table-column>
  278. </el-table>
  279. <el-table
  280. v-if="his_is_open == 1 || is_advice_open == 1"
  281. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  282. :data="doctor_advices"
  283. border
  284. style="width: 100%"
  285. v-show="showAdvicePanel"
  286. ref="advices_list"
  287. @row-click="cellMouseEnter"
  288. :row-class-name="tableRowClassName"
  289. :cell-class-name="adviceNameShow"
  290. :modal-append-to-body="false"
  291. highlight-current-row
  292. >
  293. <!-- <el-table-column type="selection" width="55"></el-table-column> -->
  294. <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
  295. <template slot-scope="scope">
  296. <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
  297. </template>
  298. </el-table-column>
  299. <!--===================================-->
  300. <!-- <el-table-column prop="date" label="调试" align="center" min-width="26px">-->
  301. <!-- <template slot-scope="scope">-->
  302. <!-- <span @click="lili(scope.$index,scope.row)">{{ scope.row.parent_id }}</span>-->
  303. <!-- </template>-->
  304. <!-- </el-table-column>-->
  305. <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
  306. <template slot-scope="scope">
  307. <span>
  308. {{scope.row.start_time | parseTime('{y}-{m}-{d} {h}:{i}')}}
  309. </span>
  310. </template>
  311. </el-table-column>
  312. <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
  313. <template slot-scope="scope">
  314. <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
  315. <span class="el-dropdown-link">
  316. {{ getAdviceContent(scope.row, 1)}}<!--修改这里医嘱内容s-->
  317. <i class="el-icon-arrow-down el-icon--right"></i>
  318. </span>
  319. <el-dropdown-menu slot="dropdown">
  320. <el-dropdown-item v-if=" his_is_open == 1 && scope.row.origin == 1 " @click.native="openEdit(scope.$index, scope.row)">修改医嘱</el-dropdown-item>
  321. <el-dropdown-item v-if=" his_is_open == 1 && scope.row.origin == 1" @click.native="openDelete(scope.$index, scope.row)">删除医嘱</el-dropdown-item>
  322. <el-dropdown-item v-if=" his_is_open == 1 && scope.row.origin == 1" @click.native="openNewChildTwo(scope.$index, scope.row)">新增子药</el-dropdown-item>
  323. </el-dropdown-menu>
  324. </el-dropdown>
  325. <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
  326. <span class="el-dropdown-link">
  327. &emsp;{{ getAdviceContent(scope.row, 2)}}
  328. <i class="el-icon-arrow-down el-icon--right"></i>
  329. </span>
  330. <el-dropdown-menu slot="dropdown">
  331. <el-dropdown-item v-if=" his_is_open == 1 && scope.row.origin == 1" @click.native="openEdit(scope.$index, scope.row)">修改子药</el-dropdown-item>
  332. <el-dropdown-item v-if=" his_is_open == 1 && scope.row.origin == 1" @click.native="openDelete(scope.$index, scope.row)">删除子药</el-dropdown-item>
  333. </el-dropdown-menu>
  334. </el-dropdown>
  335. </template>
  336. </el-table-column>
  337. <el-table-column
  338. prop="execution_time"
  339. align="center"
  340. min-width="30px"
  341. label="执行时间"
  342. sortable
  343. >
  344. <template slot-scope="scope">
  345. <span v-if="scope.row.execution_time != 0">
  346. {{scope.row.execution_time | parseTime('{m}-{d} {h}:{i}')}}
  347. </span>
  348. <span v-else></span>
  349. </template>
  350. </el-table-column>
  351. <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士">
  352. <template slot-scope="scope">
  353. <span>
  354. {{getXuserName(scope.row.execution_staff)}}
  355. </span>
  356. <!-- <span v-else>{{getXuserName(scope.row.execution_staff)}}</span> -->
  357. </template>
  358. </el-table-column>
  359. <el-table-column
  360. v-if="template_id != 6"
  361. prop="checker"
  362. min-width="30px"
  363. align="center"
  364. label="核对人员"
  365. >
  366. <template slot-scope="scope">
  367. <span v-if="scope.row.parent_id == 0">
  368. {{getXuserName(scope.row.checker)}}
  369. </span>
  370. <span v-else>{{getXuserName(scope.row.checker)}}</span>
  371. </template>
  372. </el-table-column>
  373. </el-table>
  374. <!-- 新增医嘱(子药)表单 || 新增子药表单 -->
  375. <!-- 医嘱表单 -->
  376. <el-form ref="form" :model="form" label-width="100px" v-show="showAdviceForm">
  377. <el-row :gutter="20">
  378. <el-col :span="8">
  379. <el-form-item label="开始时间:">
  380. <el-date-picker
  381. format="yyyy-MM-dd HH:mm"
  382. value-format="yyyy-MM-dd HH:mm"
  383. type="datetime"
  384. :disabled="form.parent_id == 0 ? false : true"
  385. placeholder="选择日期"
  386. v-model="form.start_time"
  387. style="width: 100%;"
  388. ></el-date-picker>
  389. </el-form-item>
  390. </el-col>
  391. <el-col :span="8">
  392. <el-form-item label="医嘱名称:">
  393. <el-autocomplete
  394. style="width:100%;"
  395. class="inline-input"
  396. v-model="form.advice_name"
  397. :fetch-suggestions="querySearch"
  398. placeholder="请输入内容"
  399. @select="handleSelect"
  400. @input="changeDrugName"
  401. ></el-autocomplete>
  402. </el-form-item>
  403. </el-col>
  404. <el-col :span="8">
  405. <el-form-item label="药品规格:"><!--li-->
  406. <el-autocomplete
  407. style="width:100px;"
  408. class="inline-input"
  409. v-model="form.advice_desc"
  410. :fetch-suggestions="querySearch1"
  411. placeholder="请输入内容"
  412. @input="changeDrugDesc"
  413. ></el-autocomplete>
  414. <el-select
  415. v-model="form.drug_spec_unit"
  416. style="width: 100px;"
  417. filterable
  418. placeholder="选择"
  419. >
  420. <el-option
  421. v-for="item in unitsOption"
  422. :key="item.id"
  423. :label="item.name"
  424. :value="item.name"
  425. ></el-option>
  426. </el-select>
  427. </el-form-item>
  428. </el-col>
  429. </el-row>
  430. <el-row :gutter="20">
  431. <el-col :span="8">
  432. <el-form-item label="开药数量:">
  433. <el-input v-model="form.prescribing_number" style="width: 40%;"></el-input>
  434. <el-select
  435. v-model="form.prescribing_number_unit"
  436. style="width: 56%;"
  437. filterable
  438. placeholder="选择"
  439. >
  440. <el-option
  441. v-for="item in unitsOption"
  442. :key="item.id"
  443. :label="item.name"
  444. :value="item.name"
  445. ></el-option>
  446. </el-select>
  447. </el-form-item>
  448. </el-col>
  449. <el-col :span="8">
  450. <el-form-item label="单次用量:">
  451. <el-input v-model="form.single_dose" style="width: 40%;"></el-input>
  452. <el-select
  453. v-model="form.single_dose_unit"
  454. style="width: 56%;"
  455. filterable
  456. placeholder="选择"
  457. >
  458. <el-option
  459. v-for="item in unitsOption"
  460. :key="item.id"
  461. :label="item.name"
  462. :value="item.id"
  463. ></el-option>
  464. </el-select>
  465. </el-form-item>
  466. </el-col>
  467. <el-col :span="8">
  468. <el-form-item label="给药途径:">
  469. <el-select
  470. v-model="form.delivery_way"
  471. :disabled="form.parent_id == 0 ? false : true"
  472. filterable
  473. placeholder="请选择(输入可搜索)"
  474. >
  475. <el-option
  476. v-for="item in deliveryWayOptions"
  477. :key="item.id"
  478. :label="item.name"
  479. :value="item.name"
  480. ></el-option>
  481. </el-select>
  482. </el-form-item>
  483. </el-col>
  484. </el-row>
  485. <el-row :gutter="20">
  486. <el-col :span="8">
  487. <el-form-item label="执行频率:">
  488. <el-select
  489. v-model="form.execution_frequency"
  490. :disabled="form.parent_id == 0 ? false : true"
  491. filterable
  492. placeholder="请选择(输入可搜索)"
  493. >
  494. <el-option
  495. v-for="item in executionFrequencyOptions"
  496. :key="item.id"
  497. :label="item.name"
  498. :value="item.name"
  499. ></el-option>
  500. </el-select>
  501. </el-form-item>
  502. </el-col>
  503. </el-row>
  504. </el-form>
  505. <div slot="footer" class="dialog-footer" v-show="showAdviceForm">
  506. <el-button @click="hideForm">取 消</el-button>
  507. <el-button type="primary" v-if="form.id == 0" @click="submitAdvice" :loading="loading">保 存</el-button><!--新增子药保存按钮(选择医嘱名称前)保 存1-->
  508. <el-button type="primary" v-else @click="submitEditAdvice" :loading="loading">保 存</el-button><!--新增子药保存按钮(编辑医嘱存2-->
  509. </div>
  510. <!-- 医嘱表单 end -->
  511. </el-dialog>
  512. <el-dialog
  513. title="选择执行时间"
  514. :visible.sync="execTimeDialogVisible"
  515. width="400px"
  516. @close="closeTimePanel"
  517. :show-close="isClose"
  518. :close-on-click-modal="isClose"
  519. :close-on-press-escape="isClose"
  520. ::modal = 'false'
  521. >
  522. <el-date-picker
  523. v-model="execTime"
  524. format="yyyy-MM-dd HH:mm:00"
  525. value-format="yyyy-MM-dd HH:mm:00"
  526. type="datetime"
  527. placeholder="选择执行时间"
  528. style="width:100%"
  529. ></el-date-picker>
  530. <span slot="footer" class="dialog-footer">
  531. <el-button @click="closeTimePanel" :loading="exceLoading">取 消</el-button>
  532. <el-button type="primary" @click="submitExce" :loading="exceLoading">保 存</el-button>
  533. </span>
  534. </el-dialog>
  535. <add-group-advice
  536. :predialysis="predialysis"
  537. :adviceTemplates="adviceTemplates"
  538. :executionFrequencyOptions="executionFrequencyOptions"
  539. :unitsOption="unitsOption"
  540. :deliveryWayOptions="deliveryWayOptions"
  541. :adviceTemplateMaps="adviceTemplateMaps"
  542. :patientID="patient.id"
  543. :adviceTableData="doctor_advices"
  544. :recordDate="record_date"
  545. :schedulePatient="schedulePatient"
  546. ref="addGroupForm"
  547. ></add-group-advice>
  548. <edit-group-advice
  549. :adviceTemplates="adviceTemplates"
  550. :executionFrequencyOptions="executionFrequencyOptions"
  551. :unitsOption="unitsOption"
  552. :deliveryWayOptions="deliveryWayOptions"
  553. :adviceTemplateMaps="adviceTemplateMaps"
  554. :patientID="patient.id"
  555. :adviceTableData="doctor_advices"
  556. :recordDate="record_date"
  557. ref="editGroupForm"
  558. v-on:add-new-order="addNewOrder"
  559. :admin_users="admin_users"
  560. ></edit-group-advice>
  561. </div>
  562. </template>
  563. <script>
  564. import AddGroupAdvice from './adviceDialog/AddGroupAdvice'
  565. import EditGroupAdvice from './adviceDialog/EditGroupAdvice'
  566. import { uParseTime } from '@/utils/tools'
  567. import {
  568. CheckDoctorAdvice,
  569. CreateDoctorAdvice,
  570. CreateGroupAdvice,
  571. DeleteDoctorAdvice,
  572. DeleteGroupAdvice,
  573. EditDoctorAdvice,
  574. ExecDoctorAdvice,
  575. getAdviceConfig,
  576. GetLastOrNextDoctorAdvice,
  577. getPatientSchedule
  578. } from '@/api/advice'
  579. import { getDataConfig } from '@/utils/data'
  580. import { saveInformation } from '@/api/dialysis'
  581. import request from '@/utils/request'
  582. import { getDialysisScheduleDetail } from '@/api/dialysis_record'
  583. import { getSelfMedicalList } from "@/api/drug/drug"
  584. export default {
  585. name: 'DoctorAdviceDialog',
  586. props: {
  587. dialysis_order: {
  588. // 透析记录
  589. type: Object,
  590. default: () => {
  591. return { id: 0 }
  592. }
  593. },
  594. patient: {
  595. // 患者信息
  596. type: Object,
  597. default: () => {
  598. return { id: 0 }
  599. }
  600. },
  601. doctor_advices: {
  602. type: Array
  603. },
  604. admin_users: {
  605. // 系统用户列表
  606. type: Array,
  607. default: () => {
  608. return []
  609. }
  610. },
  611. predialysis: {
  612. type: Object,
  613. default: () => {
  614. return { id: 0 }
  615. }
  616. },
  617. },
  618. data() {
  619. return {
  620. adRules: {
  621. start_time: [{ required: true, message: '请选择开始时间' }]
  622. },
  623. adForm: {
  624. other_start_time: ''
  625. },
  626. request_record_date: '',
  627. isLastOrNextVisible: false,
  628. other_doctor_advices: [],
  629. sch: null,
  630. is_has_create: true,
  631. is_has_exce: true,
  632. is_has_check: true,
  633. is_has_modify_exce: true,
  634. is_has_modify: true,
  635. is_has_modify_other: true,
  636. is_has_del: true,
  637. is_has_del_other: true,
  638. tempArr: [],
  639. execTimeDialogVisible: false,
  640. currentBoxClass: 'current-box-class',
  641. isClose: false,
  642. isShow: false,
  643. loading: false,
  644. sameRowArr: [],
  645. hoverOrderArr: [],
  646. isVisibility: false,
  647. record_date: '',
  648. template_id: 0,
  649. deleLoading: false,
  650. exceLoading: false,
  651. execTime: '',
  652. current_group_index: -1,
  653. title: '临时医嘱',
  654. add_title: '新增医嘱',
  655. his_is_open:0,
  656. is_advice_open:0,
  657. showAdviceForm: false,
  658. showAdvicePanel: true,
  659. showNameForm: false,
  660. showGroupForm: false,
  661. showTemplateForm: false,
  662. current_template_id: -1,
  663. adviceTemplates: [],
  664. adviceTemplateMaps: {},
  665. deliveryWayOptions: [],
  666. executionFrequencyOptions: [],
  667. unitsOption: [],
  668. // admin_users: [],
  669. templateRules: {
  670. id: [{ required: true, message: '请选择医嘱模板' }]
  671. },
  672. nameRules: {
  673. advice_name: [{ required: true, message: '请填写医嘱内容' }]
  674. },
  675. form: {
  676. id: 0,
  677. advice_type: 2,
  678. advice_date: '',
  679. start_time: '',
  680. advice_name: '',
  681. advice_desc: '',
  682. single_dose: '',
  683. single_dose_unit: '',
  684. prescribing_number: '',
  685. prescribing_number_unit: '',
  686. delivery_way: '',
  687. execution_frequency: '',
  688. advice_doctor: '',
  689. remark: '',
  690. parent_id: 0,
  691. drug_id:0,
  692. drug_name_id:0,
  693. way:0,
  694. },
  695. nameForm: {
  696. advice_name: '',
  697. single_dose: '',
  698. single_dose_unit: '',
  699. drug_spec: '',
  700. drug_spec_unit: '',
  701. prescribing_number: '',
  702. prescribing_number_unit: '',
  703. delivery_way: '',
  704. execution_frequency: '',
  705. isEdit: 0,
  706. index: 0
  707. },
  708. groupForm: {
  709. advice_type: 2,
  710. advice_date: '',
  711. start_time: '',
  712. adviceNames: [],
  713. advice_doctor: '',
  714. remark: '',
  715. parent_id: 0
  716. },
  717. adviceList: [],
  718. currentIndex: -1,
  719. currentRow: null,
  720. groupSelectRow: null,
  721. templateForm: { id: '' },
  722. doctorAdvices: [],
  723. patientid: '',
  724. drugSpec:[],
  725. medicals:[],
  726. all_drug:[],
  727. current_drug_name:"",
  728. current_drug_spec: "",
  729. drug_id: 0,
  730. src_type:"",
  731. org_id:0,
  732. schedulePatient:{},
  733. tempArrOne:[],
  734. }
  735. },
  736. watch: {
  737. 'assessment_after_dislysis.id': function() {
  738. if (this.assessment_after_dislysis.id > 0) {
  739. for (var index in this.form) {
  740. this.form[index] = this.assessment_after_dislysis[index]
  741. }
  742. }
  743. },
  744. 'dialysis_order.id': function() {
  745. this.form['dialysis_order_id'] = this.dialysis_order.id
  746. },
  747. 'doctor_advices': function() {
  748. this.handleSpanTempArrOne();
  749. },
  750. },
  751. methods: {
  752. handleSpanTempArrOne() {
  753. this.tempArrOne = [];
  754. for (let i = 0; i < this.doctor_advices.length; i++) {
  755. if (i === 0) {
  756. this.tempArrOne.push(1);
  757. this.pos = 0;
  758. } else {
  759. // 判断当前元素与上一个元素是否相同
  760. if (
  761. this.doctor_advices[i].groupno ===
  762. this.doctor_advices[i - 1].groupno
  763. ) {
  764. this.tempArrOne[this.pos] += 1;
  765. this.tempArrOne.push(0);
  766. } else {
  767. this.tempArrOne.push(1);
  768. this.pos = i;
  769. }
  770. }
  771. }
  772. },
  773. handleSelectionChange(){
  774. },
  775. //调试
  776. lili(index,row){
  777. // console.log("==index==",index)
  778. // console.log("==row==",row)
  779. console.log("==doctor_advices==",this.doctor_advices)
  780. console.log("==this.form==",this.form)
  781. },
  782. getContent: function() {
  783. if (this.sch != null) {
  784. var date = uParseTime(this.sch.schedule_date, '{y}-{m}-{d}')
  785. var week = ''
  786. var sch_type = ''
  787. switch (this.sch.schedule_week) {
  788. case 1:
  789. week = '周一'
  790. break
  791. case 2:
  792. week = '周二'
  793. break
  794. case 3:
  795. week = '周三'
  796. break
  797. case 4:
  798. week = '周四'
  799. break
  800. case 5:
  801. week = '周五'
  802. break
  803. case 6:
  804. week = '周六'
  805. break
  806. case 7:
  807. week = '周日'
  808. break
  809. }
  810. switch (this.sch.schedule_type) {
  811. case 1:
  812. sch_type = '上午'
  813. break
  814. case 2:
  815. sch_type = '下午'
  816. break
  817. case 3:
  818. sch_type = '晚上'
  819. break
  820. }
  821. return date + '(' + week + '/' + sch_type + ')'
  822. } else {
  823. return ''
  824. }
  825. },
  826. // 上一方
  827. AddNewAdvice(name) {
  828. for(let i=0;i<this.other_doctor_advices.length;i++){
  829. this.other_doctor_advices[i].single_dose = this.other_doctor_advices[i].single_dose.toString()
  830. this.other_doctor_advices[i].prescribing_number = this.other_doctor_advices[i].prescribing_number.toString()
  831. }
  832. this.$refs[name].validate(valid => {
  833. if (valid) {
  834. var submitForm = {
  835. advice_type: 2,
  836. advice_date: this.record_date,
  837. start_time: this.adForm.other_start_time,
  838. adviceNames: this.other_doctor_advices,
  839. remark: ''
  840. }
  841. let mode = '1'
  842. CreateGroupAdvice(this.patientid, 0, submitForm, mode).then(
  843. response => {
  844. if (response.data.state == 0) {
  845. this.$message.error(response.data.msg);
  846. if(response.data.code == 600000008){
  847. this.infoDialogVisible = true
  848. }
  849. return false;
  850. } else {
  851. this.$notify({
  852. title: "成功",
  853. message: "新增成功",
  854. type: "success",
  855. duration: 2000
  856. });
  857. this.$refs[name].resetFields();
  858. this.isLastOrNextVisible = false;
  859. this.$parent.$parent.getScheduleDetail()
  860. return false;
  861. }
  862. }
  863. );
  864. }
  865. });
  866. },
  867. // isPermission () {
  868. // if(this.$store.getters.xt_user.user.user_type == 3 ) {
  869. // return false
  870. // } else {
  871. // return true
  872. // }
  873. // },
  874. adviceNameShow({ row, column, rowIndex, columnIndex }) {
  875. if (columnIndex == 2) {
  876. return 'dialysisadvicenamedisplay'
  877. } else {
  878. return ''
  879. }
  880. },
  881. submitEditAdvice() {
  882. // console.log()
  883. console.log("保存22222222222222")
  884. console.log("==this.src_type==",this.src_type)
  885. if (this.form.advice_name.length == 0) {
  886. this.$message.error('请填写医嘱名称')
  887. return
  888. }
  889. if (this.form.start_time.length == 0) {
  890. this.$message.error('请选择开始时间')
  891. return
  892. }
  893. if (!(this.patient.id > 0)) {
  894. this.$message.error('没有选择患者')
  895. return false
  896. }
  897. let mode = '2'
  898. if (this.form.advice_doctor != this.$store.getters.xt_user.user.id) {
  899. mode = '3'
  900. }
  901. EditDoctorAdvice(this.patient.id, this.form.id, this.form, mode).then(
  902. response => {
  903. if (response.data.state == 0) {
  904. this.$message.error(response.data.msg)
  905. if(response.data.code == 600000008){
  906. this.infoDialogVisible = true
  907. }
  908. return false
  909. } else {
  910. this.$notify({
  911. title: '成功',
  912. message: '修改医嘱成功',
  913. type: 'success',
  914. duration: 2000
  915. })
  916. this.showAdviceForm = false
  917. this.showAdvicePanel = true
  918. var advice = response.data.data.advice
  919. var single_dose_unit = ""
  920. if(advice.single_dose_unit > 0){
  921. single_dose_unit = this.getUnit(advice.single_dose_unit)
  922. }else{
  923. single_dose_unit = advice.single_dose_unit
  924. }
  925. this.doctor_advices[this.currentIndex].drug_spec = advice.drug_spec
  926. this.doctor_advices[this.currentIndex].drug_spec_unit =
  927. advice.drug_spec_unit
  928. this.doctor_advices[this.currentIndex].start_time =
  929. advice.start_time
  930. this.doctor_advices[this.currentIndex].advice_name =
  931. advice.advice_name
  932. this.doctor_advices[this.currentIndex].advice_desc =
  933. advice.advice_desc
  934. this.doctor_advices[this.currentIndex].single_dose =
  935. advice.single_dose
  936. this.doctor_advices[this.currentIndex].single_dose_unit = single_dose_unit
  937. this.doctor_advices[this.currentIndex].delivery_way =
  938. advice.delivery_way
  939. this.doctor_advices[this.currentIndex].execution_frequency =
  940. advice.execution_frequency
  941. this.doctor_advices[this.currentIndex].prescribing_number =
  942. advice.prescribing_number
  943. this.doctor_advices[this.currentIndex].prescribing_number_unit =
  944. advice.prescribing_number_unit
  945. this.doctor_advices[this.currentIndex].advice_doctor =
  946. advice.advice_doctor
  947. this.doctor_advices[this.currentIndex].remark = advice.remark
  948. this.doctor_advice[this.currentIndex].drug_id = advice.drug_id
  949. this.doctor_advice[this.currentIndex].drug_name_id = advice.drug_name_id
  950. this.doctor.advice[this.currentIndex].way = advice.way
  951. this.currentIndex = -1
  952. return false
  953. }
  954. }
  955. )
  956. }
  957. ,
  958. // submitGroupAdvice() {
  959. // if (this.groupForm.start_time.length == 0) {
  960. // this.$message.error('请选择开始时间')
  961. // return
  962. // }
  963. // CreateGroupAdvice(this.patient.id, this.groupForm).then(response => {
  964. // if (response.data.state == 0) {
  965. // this.$message.error(response.data.msg)
  966. // return false
  967. // } else {
  968. // this.$notify({
  969. // title: '成功',
  970. // message: '新增成功',
  971. // type: 'success',
  972. // duration: 2000
  973. // })
  974. // this.currentIndex = -1
  975. // this.currentRow = null
  976. // this.setCurrent()
  977. // this.hideGroupForm()
  978. // for (const index in response.data.data.advices) {
  979. // this.doctor_advices.unshift(response.data.data.advices[index])
  980. // }
  981. // this.groupForm = {
  982. // advice_type: 2,
  983. // advice_date: '',
  984. // start_time: '',
  985. // adviceNames: [],
  986. // advice_doctor: '',
  987. // remark: '',
  988. // parent_id: 0
  989. // }
  990. // return false
  991. // }
  992. // })
  993. // },
  994. // submitTempForm() {
  995. // var _this = this
  996. // if (this.templateForm.id.length == 0) {
  997. // this.$message.error('请选择医嘱模板')
  998. // return
  999. // }
  1000. // if (_this.templateForm.id in _this.adviceTemplateMaps) {
  1001. // var mapid = _this.templateForm.id
  1002. // for (const index in _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate) {
  1003. // var item = {
  1004. // advice_name: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].advice_name,
  1005. // single_dose: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].single_dose,
  1006. // single_dose_unit: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].single_dose_unit,
  1007. // drug_spec: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].drug_spec,
  1008. // drug_spec_unit: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].drug_spec_unit,
  1009. // prescribing_number: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].prescribing_number,
  1010. // prescribing_number_unit: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].prescribing_number_unit,
  1011. // delivery_way: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].delivery_way,
  1012. // execution_frequency: _this.adviceTemplateMaps[mapid].DoctorAdviceTemplate[index].execution_frequency,
  1013. // isEdit: 0,
  1014. // index: 0
  1015. // }
  1016. // _this.groupForm.adviceNames.push(item)
  1017. // }
  1018. // }
  1019. // this.title = '新增医嘱'
  1020. // this.showTemplateForm = false
  1021. // this.showGroupForm = true
  1022. // },
  1023. openAdviceTemplate() {
  1024. this.templateForm = { id: '' }
  1025. this.title = '选择医嘱模板'
  1026. this.showTemplateForm = true
  1027. this.showGroupForm = false
  1028. }
  1029. ,
  1030. submitNameForm() {
  1031. if (this.nameForm.advice_name.length == 0) {
  1032. this.$message.error('请填写医嘱名称')
  1033. return
  1034. }
  1035. if (this.nameForm.isEdit) {
  1036. this.groupForm.adviceNames[
  1037. this.nameForm.index
  1038. ].advice_name = this.nameForm.advice_name
  1039. this.groupForm.adviceNames[
  1040. this.nameForm.index
  1041. ].single_dose = this.nameForm.single_dose
  1042. this.groupForm.adviceNames[
  1043. this.nameForm.index
  1044. ].single_dose_unit = this.nameForm.single_dose_unit
  1045. this.groupForm.adviceNames[
  1046. this.nameForm.index
  1047. ].drug_spec = this.nameForm.drug_spec
  1048. this.groupForm.adviceNames[
  1049. this.nameForm.index
  1050. ].drug_spec_unit = this.nameForm.drug_spec_unit
  1051. this.groupForm.adviceNames[
  1052. this.nameForm.index
  1053. ].prescribing_number = this.nameForm.prescribing_number
  1054. this.groupForm.adviceNames[
  1055. this.nameForm.index
  1056. ].prescribing_number_unit = this.nameForm.prescribing_number_unit
  1057. this.groupForm.adviceNames[
  1058. this.nameForm.index
  1059. ].delivery_way = this.nameForm.delivery_way
  1060. this.groupForm.adviceNames[this.nameForm.index].execution_frequency = this.nameForm.execution_frequency
  1061. this.groupForm.adviceNames[this.nameForm.index].drug_name_id = this.nameForm.drug_name_id
  1062. this.groupForm.adviceNames[this.nameForm.index].way = this.nameForm.way
  1063. this.groupForm.adviceNames[this.nameForm.index].drug_id = this.nameForm.drug_id
  1064. } else {
  1065. this.groupForm.adviceNames.push(this.nameForm)
  1066. }
  1067. this.title = '新增医嘱'
  1068. this.showNameForm = false
  1069. this.showGroupForm = true
  1070. }
  1071. ,
  1072. groupClassName({ row, rowIndex }) {
  1073. row.index = rowIndex
  1074. }
  1075. ,
  1076. selectGroupAdvice(row) {
  1077. this.groupSelectRow = row
  1078. }
  1079. ,
  1080. openDeleteGroupAdvice(val) {
  1081. if(this.currentRow.is_medicine == 1){
  1082. this.$message.error('已发药,不可删除')
  1083. return
  1084. }
  1085. if (this.groupSelectRow === null) {
  1086. this.$message.error('未选择要删除的医嘱内容')
  1087. return
  1088. }
  1089. if(this.groupSelectRow!=null){
  1090. if(this.groupSelectRow.origin == 2){
  1091. this.$message.error('处方医嘱不能删除')
  1092. return
  1093. }
  1094. }
  1095. if(this.groupSelectRow.execution_state == 1){
  1096. this.$message.error("已执行的医嘱无法删除!")
  1097. return
  1098. }
  1099. this.DeleteGroupAdvice(this.groupSelectRow.groupno)
  1100. // this.$confirm('确认删除些条医嘱内容?', '删除医嘱内容', {
  1101. // confirmButtonText: '确定',
  1102. // cancelButtonText: '取消',
  1103. // type: 'warning'
  1104. // }).then(() => {
  1105. // this.groupForm.adviceNames.splice(this.groupSelectRow.index, 1);
  1106. // }).catch(() => {
  1107. // });
  1108. }
  1109. ,
  1110. openAdviceName(isEdit) {
  1111. if (isEdit) {
  1112. if (this.groupSelectRow === null) {
  1113. this.$message.error('未选择要修改的医嘱内容')
  1114. return
  1115. }
  1116. this.nameForm = {
  1117. advice_name: this.groupSelectRow.advice_name,
  1118. single_dose: this.groupSelectRow.single_dose,
  1119. single_dose_unit: this.groupSelectRow.single_dose_unit,
  1120. drug_spec: this.groupSelectRow.drug_spec,
  1121. drug_spec_unit: this.groupSelectRow.drug_spec_unit,
  1122. prescribing_number: this.groupSelectRow.prescribing_number,
  1123. prescribing_number_unit: this.groupSelectRow.prescribing_number_unit,
  1124. delivery_way: this.groupSelectRow.delivery_way,
  1125. execution_frequency: this.groupSelectRow.execution_frequency,
  1126. isEdit: 1,
  1127. index: this.groupSelectRow.index
  1128. }
  1129. } else {
  1130. this.nameForm = {
  1131. advice_name: '',
  1132. single_dose: '',
  1133. single_dose_unit: '',
  1134. drug_spec: '',
  1135. drug_spec_unit: '',
  1136. prescribing_number: '',
  1137. prescribing_number_unit: '',
  1138. delivery_way: '',
  1139. execution_frequency: '',
  1140. isEdit: 0,
  1141. index: 0
  1142. }
  1143. }
  1144. this.title = '新增医嘱内容'
  1145. this.showNameForm = true
  1146. this.showGroupForm = false
  1147. }
  1148. ,
  1149. tableRowClassName({ row, rowIndex }) {
  1150. // if (row.stop_state == 1 || row.execution_state == 1) {
  1151. // return 'stoped-row';
  1152. // }
  1153. // return 'success-rows'
  1154. row.index = rowIndex
  1155. const arr = this.hoverOrderArr
  1156. for (let i = 0; i < arr.length; i++) {
  1157. if (rowIndex == arr[i]) {
  1158. return 'success-row'
  1159. }
  1160. }
  1161. }
  1162. ,
  1163. changeAdviceName(key) {
  1164. if (key in this.adviceTemplateMaps) {
  1165. this.form.advice_name = this.adviceTemplateMaps[key].advice_name
  1166. this.form.advice_desc = this.adviceTemplateMaps[key].advice_desc
  1167. this.form.single_dose_unit = this.adviceTemplateMaps[
  1168. key
  1169. ].single_dose_unit
  1170. this.form.single_dose = this.adviceTemplateMaps[key].single_dose + ''
  1171. this.form.prescribing_number_unit = this.adviceTemplateMaps[
  1172. key
  1173. ].prescribing_number_unit
  1174. this.form.prescribing_number =
  1175. this.adviceTemplateMaps[key].prescribing_number + ''
  1176. this.form.delivery_way = this.adviceTemplateMaps[key].delivery_way
  1177. this.form.execution_frequency = this.adviceTemplateMaps[key].execution_frequency
  1178. this.form.drug_name_id = this.adviceTemplateMaps[key].drug_name_id
  1179. this.form.drug_id = this.adviceTemplateMaps[key].drug_id
  1180. this.form.way = this.adviceTemplateMaps[key].way
  1181. }
  1182. }
  1183. ,
  1184. submitExce() {
  1185. if (this.currentRow == null) {
  1186. this.$message.error('请先选择要执行的医嘱!')
  1187. return false
  1188. }
  1189. if (this.execTime.length == 0) {
  1190. this.$message.error('请选择执行时间!')
  1191. return false
  1192. }
  1193. var execTime = Math.round(new Date(this.execTime).getTime() / 1000)
  1194. if (execTime < this.currentRow.start_time) {
  1195. this.$message.error('执行医嘱不能在开始之前!')
  1196. return false
  1197. }
  1198. this.exceLoading = true
  1199. let mode = '6'
  1200. ExecDoctorAdvice(this.patient.id, this.currentRow.id, this.execTime, mode,this.currentRow.origin).then(response => {
  1201. if (response.data.state == 0) {
  1202. this.$message.error(response.data.msg)
  1203. if(response.data.code == 600000008){
  1204. this.infoDialogVisible = true
  1205. }
  1206. this.exceLoading = false
  1207. return false
  1208. } else {
  1209. this.$notify({
  1210. title: '成功',
  1211. message: '执行医嘱成功',
  1212. type: 'success',
  1213. duration: 2000
  1214. })
  1215. var msg = response.data.data.msg
  1216. if(msg == 1){
  1217. var exid = response.data.data.advice.id
  1218. if (response.data.data.advice.parent_id > 0) {
  1219. exid = response.data.data.advice.parent_id
  1220. }
  1221. this.currentRow.execution_state = 1
  1222. this.currentRow.execution_staff =
  1223. response.data.data.advice.execution_staff
  1224. this.currentRow.execution_time =
  1225. response.data.data.advice.execution_time
  1226. var alen = this.doctor_advices.length
  1227. for (var index in this.doctor_advices) {
  1228. if (
  1229. this.doctor_advices[index].id == exid ||
  1230. this.doctor_advices[index].parent_id == exid
  1231. ) {
  1232. this.doctor_advices[index].execution_state = 1
  1233. this.doctor_advices[index].execution_staff =
  1234. response.data.data.advice.execution_staff
  1235. this.doctor_advices[index].execution_time =
  1236. response.data.data.advice.execution_time
  1237. // this.doctor_advices[index].checker = response.data.data.advice.checker;
  1238. break
  1239. }
  1240. }
  1241. this.execTimeDialogVisible = false
  1242. return false
  1243. }
  1244. if(msg == 2){
  1245. this.$message.error("执行失败,库存不足,请入库")
  1246. this.execTimeDialogVisible = false
  1247. return false
  1248. }
  1249. if(msg == 3){
  1250. this.$message.error("执行失败,无库存,请入库")
  1251. this.execTimeDialogVisible = false
  1252. return false
  1253. }
  1254. if(msg == 6){
  1255. this.$message.error("执行失败,请重新执行")
  1256. this.execTimeDialogVisible = false
  1257. return false
  1258. }
  1259. }
  1260. })
  1261. .catch(() => {
  1262. this.exceLoading = false
  1263. })
  1264. }
  1265. ,
  1266. submitAdvice() {
  1267. if (this.form.advice_name.length == 0) {
  1268. this.$message.error('请填写医嘱名称')
  1269. return
  1270. }
  1271. if (this.form.start_time.length == 0) {
  1272. this.$message.error('请选择开始时间')
  1273. return
  1274. }
  1275. if (!(this.patient.id > 0)) {
  1276. this.$message.error('没有选择患者')
  1277. return false
  1278. }
  1279. let mode = '1'
  1280. // console.log("sry2332322332",this.src_type)
  1281. if(this.src_type == ""){
  1282. this.form.way = 1
  1283. }
  1284. if(this.src_type == 2){ //自备药
  1285. var arr = this.form.advice_name.split("(自备药)")
  1286. this.form.advice_name = arr[0]
  1287. }
  1288. CreateDoctorAdvice(this.patient.id, this.form, mode).then(response => {
  1289. this.loading = false
  1290. if (response.data.state == 0) {
  1291. this.$message.error(response.data.msg)
  1292. if(response.data.code == 600000008){
  1293. this.infoDialogVisible = true
  1294. }
  1295. return false
  1296. } else {
  1297. this.$notify({
  1298. title: '成功',
  1299. message: '新增医嘱成功',
  1300. type: 'success',
  1301. duration: 2000
  1302. })
  1303. this.currentIndex = -1
  1304. this.currentRow = null
  1305. this.setCurrent()
  1306. this.hideForm()
  1307. if (this.form.parent_id > 0) {
  1308. var spliceIndex = -1
  1309. for (let index = this.doctor_advices.length - 1; ; index--) {
  1310. if (this.doctor_advices[index].parent_id === this.form.parent_id) {
  1311. spliceIndex = index
  1312. break
  1313. } else if (this.doctor_advices[index].id === this.form.parent_id) {
  1314. spliceIndex = index
  1315. break
  1316. }
  1317. }
  1318. if (spliceIndex > -1) {
  1319. spliceIndex += 1
  1320. if (spliceIndex === this.doctor_advices.length) {
  1321. this.doctor_advices.push(response.data.data.advice)
  1322. } else {
  1323. var swapData = this.doctor_advices.splice(spliceIndex)
  1324. this.doctor_advices.push(response.data.data.advice)
  1325. for (var index in swapData) {
  1326. this.doctor_advices.push(swapData[index])
  1327. }
  1328. }
  1329. }
  1330. } else {
  1331. this.doctor_advices.unshift(response.data.data.advice)
  1332. }
  1333. return false
  1334. }
  1335. }).catch(v => {
  1336. this.loading = false
  1337. })
  1338. // location. reload()
  1339. // this.getDialysisScheduleDetail()
  1340. }
  1341. ,
  1342. openNewChildTwo(index, row) {
  1343. if(this.currentRow.is_medicine == 1){
  1344. this.$message.error('已发药,不可操作')
  1345. return
  1346. }
  1347. this.currentRow = row
  1348. if (this.currentRow == null) {
  1349. this.$message.error('请先选择要新增子药的医嘱!')
  1350. return false
  1351. }
  1352. if (
  1353. this.currentRow.stop_state == 1 ||
  1354. this.currentRow.execution_state == 1
  1355. ) {
  1356. this.$message.error('所选医嘱已停止或执行')
  1357. return false
  1358. }
  1359. this.title = '新增子药'
  1360. this.showAdviceForm = true
  1361. this.showAdvicePanel = false
  1362. this.form = {
  1363. id: 0,
  1364. advice_type: 2,
  1365. advice_date: this.record_date,
  1366. start_time: uParseTime(
  1367. this.currentRow.start_time,
  1368. '{y}-{m}-{d} {h}:{i}'
  1369. ),
  1370. advice_name: '',
  1371. drug_spec: '',
  1372. drug_spec_unit: '',
  1373. single_dose: '',
  1374. single_dose_unit: '',
  1375. prescribing_number: '',
  1376. prescribing_number_unit: '',
  1377. delivery_way: this.currentRow.delivery_way,
  1378. execution_frequency: this.currentRow.execution_frequency,
  1379. advice_doctor: '',
  1380. remark: '',
  1381. parent_id: this.currentRow.id,
  1382. drug_id:0,
  1383. drug_name_id:0,
  1384. way:0,
  1385. }
  1386. }
  1387. ,
  1388. openNewChild() {
  1389. if (this.currentRow == null) {
  1390. this.$message.error('请先选择要新增子药的医嘱!')
  1391. return false
  1392. }
  1393. if (
  1394. this.currentRow.stop_state == 1 ||
  1395. this.currentRow.execution_state == 1
  1396. ) {
  1397. this.$message.error('所选医嘱已停止或执行')
  1398. return false
  1399. }
  1400. this.title = '新增子药'
  1401. this.showAdviceForm = true
  1402. this.showAdvicePanel = false
  1403. this.form = {
  1404. id: 0,
  1405. advice_type: 2,
  1406. advice_date: this.record_date,
  1407. start_time: uParseTime(
  1408. this.currentRow.start_time,
  1409. '{y}-{m}-{d} {h}:{i}'
  1410. ),
  1411. advice_name: '',
  1412. drug_spec: '',
  1413. drug_spec_unit: '',
  1414. single_dose: '',
  1415. single_dose_unit: '',
  1416. prescribing_number: '',
  1417. prescribing_number_unit: '',
  1418. delivery_way: this.currentRow.delivery_way,
  1419. execution_frequency: this.currentRow.execution_frequency,
  1420. advice_doctor: '',
  1421. remark: '',
  1422. parent_id: this.currentRow.id
  1423. }
  1424. }
  1425. ,
  1426. openEdit(index, row) {
  1427. console.log("lilili",this.currentRow)
  1428. if(this.currentRow.is_medicine == 1){
  1429. this.$message.error('已发药不可修改')
  1430. return
  1431. }
  1432. if (row.stop_state == 1 || row.execution_state == 1) {
  1433. this.$message.error('所选医嘱已停止或执行')
  1434. return false
  1435. }
  1436. this.title = row.parent_id > 0 ? '编辑子药' : '编辑医嘱'
  1437. this.showAdviceForm = true
  1438. this.showAdvicePanel = false
  1439. this.currentIndex = index
  1440. this.form = {
  1441. id: row.id,
  1442. advice_type: 2,
  1443. advice_date: uParseTime(row.advice_date, '{y}-{m}-{d}'),
  1444. start_time: uParseTime(row.start_time, '{y}-{m}-{d} {h}:{i}'),
  1445. advice_desc: row.advice_desc,
  1446. advice_name: row.advice_name,
  1447. drug_spec: row.drug_spec != 0 ? '' + row.drug_spec : '',
  1448. drug_spec_unit: row.drug_spec_unit,
  1449. single_dose: row.single_dose != 0 ? '' + row.single_dose : '',
  1450. single_dose_unit: row.single_dose_unit,
  1451. prescribing_number:
  1452. row.prescribing_number != 0 ? '' + row.prescribing_number : '',
  1453. prescribing_number_unit: row.prescribing_number_unit,
  1454. delivery_way: row.delivery_way,
  1455. execution_frequency: row.execution_frequency,
  1456. advice_doctor: row.advice_doctor,
  1457. remark: row.remark,
  1458. parent_id: row.parent_id,
  1459. drug_id:row.drug_id,
  1460. way:row.way,
  1461. drug_name_id:0,
  1462. }
  1463. }
  1464. ,
  1465. openEditGroupAdvice() {
  1466. console.log("thissssss",this.currentRow)
  1467. if(this.currentRow.is_medicine == 1){
  1468. this.$message.error('已发药不可修改')
  1469. return
  1470. }
  1471. if (this.groupSelectRow === null) {
  1472. this.$message.error('未选择要修改的医嘱内容')
  1473. return
  1474. }
  1475. if(this.groupSelectRow!=null){
  1476. if(this.groupSelectRow.origin == 2){
  1477. this.$message.error("处方医嘱不能修改")
  1478. return
  1479. }
  1480. }
  1481. this.$refs.editGroupForm.open(this.groupSelectRow.groupno)
  1482. }
  1483. ,
  1484. openGroupFrom() {
  1485. this.$refs.addGroupForm.open()
  1486. // this.title="新增医嘱";
  1487. // this.showGroupForm = true;
  1488. // this.showAdviceForm = false;
  1489. // this.showAdvicePanel = false;
  1490. // this.$refs.advices_list.setCurrentRow(null);
  1491. // this.currentIndex = -1;
  1492. // this.currentRow = null;
  1493. // this.groupForm.advice_date = this.record_date;
  1494. // this.form = {
  1495. // id: 0,
  1496. // advice_type: 2,
  1497. // advice_date: this.record_date,
  1498. // start_time: "",
  1499. // advice_name: "",
  1500. // advice_desc: "",
  1501. // single_dose: "",
  1502. // single_dose_unit: "",
  1503. // prescribing_number: "",
  1504. // prescribing_number_unit: "",
  1505. // delivery_way: "",
  1506. // execution_frequency: "",
  1507. // advice_doctor: "",
  1508. // remark: "",
  1509. // parent_id: 0
  1510. // };
  1511. }
  1512. ,
  1513. checkAdvice() {
  1514. if (this.currentRow == null) {
  1515. this.$message.error('请先选择要核对的医嘱!')
  1516. return false
  1517. }
  1518. if (this.currentRow.check_state == 1) {
  1519. this.$message.error('所选医嘱已核对')
  1520. return false
  1521. }
  1522. if (
  1523. this.currentRow.execution_staff > 0 &&
  1524. this.currentRow.execution_staff == this.$store.getters.xt_user.user.id
  1525. ) {
  1526. this.$message.error('核对与执行不能是同一人')
  1527. return false
  1528. }
  1529. this.$confirm('确认提交核对?', '医嘱核对', {
  1530. confirmButtonText: '确定',
  1531. cancelButtonText: '取消',
  1532. closeOnClickModal: false,
  1533. type: 'warning'
  1534. })
  1535. .then(() => {
  1536. this.deleLoading = true
  1537. let mode = '7'
  1538. CheckDoctorAdvice(this.patient.id, this.currentRow.id, mode,this.currentRow.origin).then(
  1539. response => {
  1540. if (response.data.state == 0) {
  1541. this.$message.error(response.data.msg)
  1542. if(response.data.code == 600000008){
  1543. this.infoDialogVisible = true
  1544. }
  1545. this.deleLoading = false
  1546. return false
  1547. } else {
  1548. this.$notify({
  1549. title: '成功',
  1550. message: '核对成功',
  1551. type: 'success',
  1552. duration: 2000
  1553. })
  1554. var exid = response.data.data.advice.id
  1555. if (response.data.data.advice.parent_id > 0) {
  1556. exid = response.data.data.advice.parent_id
  1557. }
  1558. // if (this.currentRow.parent_id > 0) {
  1559. // exid = this.currentRow.parent_id;
  1560. // }
  1561. this.currentRow.check_state = 1
  1562. this.currentRow.check_time =
  1563. response.data.data.advice.check_time
  1564. this.currentRow.checker = response.data.data.advice.checker
  1565. var alen = this.doctor_advices.length
  1566. for (var index in this.doctor_advices) {
  1567. if (
  1568. this.doctor_advices[index].id == exid ||
  1569. this.doctor_advices[index].parent_id == exid
  1570. ) {
  1571. this.doctor_advices[index].check_state = 1
  1572. this.doctor_advices[index].check_time =
  1573. response.data.data.advice.check_time
  1574. this.doctor_advices[index].checker =
  1575. response.data.data.advice.checker
  1576. // break;
  1577. }
  1578. }
  1579. this.deleLoading = false
  1580. }
  1581. }
  1582. )
  1583. })
  1584. .catch(() => {
  1585. this.deleLoading = false
  1586. })
  1587. }
  1588. ,
  1589. execAdvice() {
  1590. if (this.is_has_exce == false) {
  1591. this.$message.error('你没有执行医嘱的权限')
  1592. return false
  1593. }
  1594. // if(this.org_id == 9671){
  1595. // if(this.currentRow.checker == 0){
  1596. // this.$message.error("请先核对医嘱")
  1597. // return
  1598. // }
  1599. // }
  1600. this.execTimeDialogVisible = true
  1601. if (this.current_select_object == 1) {
  1602. var isExecution = true
  1603. var adviceArr = this.advice_groups[this.current_group_index].advices
  1604. for (let i = 0; i < adviceArr.length; i++) {
  1605. if (
  1606. adviceArr[i].execution_state == 2 &&
  1607. adviceArr[i].is_selected == 1
  1608. ) {
  1609. isExecution = false
  1610. }
  1611. }
  1612. if (isExecution) {
  1613. this.$message.error('所选医嘱已停止或执行')
  1614. return false
  1615. }
  1616. for (let i = 0; i < adviceArr.length; i++) {
  1617. if (
  1618. adviceArr[i].is_selected == 1 &&
  1619. adviceArr[i].checker > 0 &&
  1620. adviceArr[i].checker == this.$store.getters.user.admin.id
  1621. ) {
  1622. this.$message.error('核对医嘱与执行不能是同一人')
  1623. return false
  1624. }
  1625. }
  1626. var currentAdviceIdArr = []
  1627. for (let i = 0; i < adviceArr.length; i++) {
  1628. if (adviceArr[i].is_selected == 1) {
  1629. currentAdviceIdArr.push(adviceArr[i].id)
  1630. }
  1631. }
  1632. this.currentAdviceIdsStr = currentAdviceIdArr.join(',')
  1633. this.nowExecTime = new Date(adviceArr[0].start_time * 1000)
  1634. } else {
  1635. if (!(this.current_group_index >= 0 && this.current_advice_index < 0)) {
  1636. return
  1637. }
  1638. var isExecution = true
  1639. var group_top_advice = this.advice_groups[this.current_group_index]
  1640. .advices[0]
  1641. var adviceArr = this.advice_groups[this.current_group_index].advices
  1642. for (let i = 0; i < adviceArr.length; i++) {
  1643. if (
  1644. adviceArr[i].is_selected == 1 &&
  1645. adviceArr[i].execution_state == 2
  1646. ) {
  1647. isExecution = false
  1648. }
  1649. }
  1650. if (isExecution) {
  1651. this.$message.error('所选医嘱已停止或执行')
  1652. return false
  1653. }
  1654. for (let i = 0; i < adviceArr.length; i++) {
  1655. if (
  1656. adviceArr[i].is_selected == 1 &&
  1657. adviceArr[i].checker > 0 &&
  1658. adviceArr[i].checker == this.$store.getters.user.admin.id
  1659. ) {
  1660. this.$message.error('核对与执行不能是同一人')
  1661. return false
  1662. }
  1663. }
  1664. this.nowExecTime = new Date(group_top_advice.start_time * 1000)
  1665. }
  1666. this.$refs.exec_time.open()
  1667. // if (this.currentRow == null) {
  1668. // this.$message.error("请先选择要执行的医嘱!");
  1669. // return false;
  1670. // }
  1671. //
  1672. // if (
  1673. // this.currentRow.stop_state == 1 ||
  1674. // this.currentRow.execution_state == 1
  1675. // ) {
  1676. // this.$message.error("所选医嘱已停止或执行");
  1677. // return false;
  1678. // }
  1679. //
  1680. // if (
  1681. // this.currentRow.checker > 0 &&
  1682. // this.currentRow.checker == this.$store.getters.xt_user.user.id
  1683. // ) {
  1684. // this.$message.error("核对与执行不能是同一人");
  1685. // return false;
  1686. // }
  1687. //
  1688. // this.execTimeDialogVisible = true;
  1689. // this.deleLoading = true;
  1690. }
  1691. ,
  1692. DeleteGroupAdvice(groupno) {
  1693. this.$confirm('确认删除这组医嘱?', '医嘱删除', {
  1694. confirmButtonText: '确定',
  1695. cancelButtonText: '取消',
  1696. type: 'warning'
  1697. }).then(() => {
  1698. let mode = '4'
  1699. if (
  1700. this.currentRow.advice_doctor != this.$store.getters.xt_user.user.id
  1701. ) {
  1702. mode = '5'
  1703. }
  1704. DeleteGroupAdvice(groupno, mode).then(response => {
  1705. if (response.data.state == 0) {
  1706. this.$message.error(response.data.msg)
  1707. if(response.data.code == 600000008){
  1708. this.infoDialogVisible = true
  1709. }
  1710. return false
  1711. } else {
  1712. this.$notify({
  1713. title: '成功',
  1714. message: '医嘱已经删除',
  1715. type: 'success',
  1716. duration: 2000
  1717. })
  1718. var alen = this.doctor_advices.length
  1719. for (let index = alen - 1; index >= 0; index--) {
  1720. if (this.doctor_advices[index].groupno === groupno) {
  1721. this.doctor_advices.splice(index, 1)
  1722. }
  1723. }
  1724. }
  1725. })
  1726. })
  1727. .catch(() => {
  1728. })
  1729. }
  1730. ,
  1731. openDelete(index, row) {
  1732. if(this.currentRow.is_medicine == 1){
  1733. this.$message.error('已发药不可删除')
  1734. return
  1735. }
  1736. this.currentRow = row
  1737. this.$confirm('确认删除此条医嘱?', '医嘱删除', {
  1738. confirmButtonText: '确定',
  1739. cancelButtonText: '取消',
  1740. closeOnClickModal: false,
  1741. type: 'warning'
  1742. })
  1743. .then(() => {
  1744. this.deleLoading = true
  1745. let mode = '4'
  1746. if (
  1747. this.currentRow.advice_doctor != this.$store.getters.xt_user.user.id
  1748. ) {
  1749. mode = '5'
  1750. }
  1751. DeleteDoctorAdvice(this.currentRow.id, mode).then(response => {
  1752. this.deleLoading = false
  1753. if (response.data.state == 0) {
  1754. this.$message.error(response.data.msg)
  1755. if(response.data.code == 600000008){
  1756. this.infoDialogVisible = true
  1757. }
  1758. return false
  1759. } else {
  1760. this.$notify({
  1761. title: '成功',
  1762. message: '医嘱已经删除',
  1763. type: 'success',
  1764. duration: 2000
  1765. })
  1766. this.deleteResetData(this.currentRow)
  1767. this.currentRow = null
  1768. this.setCurrent()
  1769. }
  1770. })
  1771. })
  1772. .catch(() => {
  1773. this.deleLoading = false
  1774. })
  1775. }
  1776. ,
  1777. deleteAdvice() {
  1778. if (this.currentRow == null) {
  1779. this.$message.error('请先选择要删除的医嘱!')
  1780. return false
  1781. }
  1782. this.$confirm('确认删除此条医嘱?', '医嘱删除', {
  1783. confirmButtonText: '确定',
  1784. cancelButtonText: '取消',
  1785. closeOnClickModal: false,
  1786. type: 'warning'
  1787. })
  1788. .then(() => {
  1789. this.deleLoading = true
  1790. let mode = '4'
  1791. if (
  1792. this.currentRow.advice_doctor != this.$store.getters.xt_user.user.id
  1793. ) {
  1794. mode = '5'
  1795. }
  1796. DeleteDoctorAdvice(this.currentRow.id, mode).then(response => {
  1797. this.deleLoading = false
  1798. if (response.data.state == 0) {
  1799. if(response.data.code == 600000008){
  1800. this.infoDialogVisible = true
  1801. }
  1802. this.$message.error(response.data.msg)
  1803. return false
  1804. } else {
  1805. this.$notify({
  1806. title: '成功',
  1807. message: '医嘱已经删除',
  1808. type: 'success',
  1809. duration: 2000
  1810. })
  1811. this.deleteResetData(this.currentRow)
  1812. this.currentRow = null
  1813. this.setCurrent()
  1814. }
  1815. })
  1816. })
  1817. .catch(() => {
  1818. this.deleLoading = false
  1819. })
  1820. }
  1821. ,
  1822. deleteResetData(row) {
  1823. if (row.parent_id > 0) {
  1824. for (var index in this.doctor_advices) {
  1825. if (this.doctor_advices[index].id == row.id) {
  1826. this.doctor_advices.splice(index, 1)
  1827. break
  1828. }
  1829. }
  1830. } else {
  1831. var spliceIndex = -1
  1832. var splitNums = 0
  1833. for (var index in this.doctor_advices) {
  1834. if (this.doctor_advices[index].id == row.id) {
  1835. spliceIndex = index
  1836. splitNums++
  1837. } else if (this.doctor_advices[index].parent_id == row.id) {
  1838. splitNums++
  1839. }
  1840. }
  1841. this.doctor_advices.splice(spliceIndex, splitNums)
  1842. }
  1843. }
  1844. ,
  1845. selectRow(row) {
  1846. this.currentRow = row
  1847. }
  1848. ,
  1849. getAdviceConfig() {
  1850. getAdviceConfig().then(response => {
  1851. if (response.data.state == 1) {
  1852. this.deliveryWayOptions =
  1853. response.data.data.drugways === null
  1854. ? []
  1855. : response.data.data.drugways
  1856. this.executionFrequencyOptions =
  1857. response.data.data.efs === null ? [] : response.data.data.efs
  1858. this.adviceTemplates =
  1859. response.data.data.advice_templates === null
  1860. ? []
  1861. : response.data.data.advice_templates
  1862. var templateLen = this.adviceTemplates.length
  1863. for (let index = 0; index < templateLen; index++) {
  1864. if (!this.adviceTemplates[index].DoctorAdviceTemplate) {
  1865. continue
  1866. }
  1867. var DoctorAdviceTemplate = this.adviceTemplates[index]
  1868. .DoctorAdviceTemplate
  1869. for (let i = 0; i < DoctorAdviceTemplate.length; i++) {
  1870. DoctorAdviceTemplate[i].selection = false
  1871. }
  1872. var item = this.adviceTemplates[index]
  1873. item.DoctorAdviceTemplate = []
  1874. var datMap = {}
  1875. for (const key in DoctorAdviceTemplate) {
  1876. if (DoctorAdviceTemplate[key].parent_id == 0) {
  1877. datMap[DoctorAdviceTemplate[key].id] =
  1878. DoctorAdviceTemplate[key]
  1879. }
  1880. }
  1881. for (const key in DoctorAdviceTemplate) {
  1882. if (DoctorAdviceTemplate[key].parent_id in datMap) {
  1883. if ('children' in datMap[DoctorAdviceTemplate[key].parent_id]) {
  1884. datMap[DoctorAdviceTemplate[key].parent_id].children.push(
  1885. DoctorAdviceTemplate[key]
  1886. )
  1887. } else {
  1888. datMap[DoctorAdviceTemplate[key].parent_id].children = []
  1889. datMap[DoctorAdviceTemplate[key].parent_id].children.push(
  1890. DoctorAdviceTemplate[key]
  1891. )
  1892. }
  1893. }
  1894. }
  1895. for (const key in datMap) {
  1896. item.DoctorAdviceTemplate.push(datMap[key])
  1897. }
  1898. this.$set(
  1899. this.adviceTemplateMaps,
  1900. this.adviceTemplates[index].id,
  1901. item
  1902. )
  1903. }
  1904. }
  1905. })
  1906. }
  1907. ,
  1908. getXuserName(id) {
  1909. if (id <= 0) {
  1910. return ''
  1911. }
  1912. var name = ''
  1913. if (
  1914. this.admin_users == null ||
  1915. typeof this.admin_users.length === 'undefined'
  1916. ) {
  1917. return name
  1918. }
  1919. var leng = this.admin_users.length
  1920. if (leng == 0) {
  1921. return name
  1922. }
  1923. for (let index = 0; index < leng; index++) {
  1924. if (this.admin_users[index].id == id) {
  1925. name = this.admin_users[index].name
  1926. break
  1927. }
  1928. }
  1929. return name
  1930. }
  1931. ,
  1932. addNewOrder() {
  1933. this.$refs.addGroupForm.open()
  1934. }
  1935. ,
  1936. show(his_is_open,is_advice_open) {
  1937. console.log("his_is_open233232323232323322323",his_is_open)
  1938. console.log("is_advice_open233232323232323322323",is_advice_open)
  1939. this.his_is_open = his_is_open
  1940. this.is_advice_open = is_advice_open
  1941. this.isVisibility = true
  1942. this.getPermission()
  1943. }
  1944. ,
  1945. hide() {
  1946. this.isVisibility = false
  1947. }
  1948. ,
  1949. hideForm() {
  1950. this.title = '临时医嘱'
  1951. this.showGroupForm = false
  1952. this.showAdviceForm = false
  1953. this.showAdvicePanel = true
  1954. }
  1955. ,
  1956. hideNameForm() {
  1957. this.title = '新增医嘱'
  1958. this.showGroupForm = true
  1959. this.showNameForm = false
  1960. }
  1961. ,
  1962. hideTemplateForm() {
  1963. this.title = '新增医嘱'
  1964. this.showGroupForm = true
  1965. this.showTemplateForm = false
  1966. }
  1967. ,
  1968. hideGroupForm() {
  1969. this.title = '临时医嘱'
  1970. this.showAdviceForm = false
  1971. this.showGroupForm = false
  1972. this.showAdvicePanel = true
  1973. }
  1974. ,
  1975. resetDialog() {
  1976. this.hoverOrderArr = []
  1977. this.title = '临时医嘱'
  1978. this.showAdviceForm = false
  1979. this.showGroupForm = false
  1980. this.showAdvicePanel = true
  1981. this.currentRow = null
  1982. this.groupSelectRow = null
  1983. this.setCurrent()
  1984. }
  1985. ,
  1986. closeTimePanel() {
  1987. this.execTimeDialogVisible = false
  1988. this.deleLoading = false
  1989. this.exceLoading = false
  1990. this.execTime = ''
  1991. }
  1992. ,
  1993. setCurrent(row) {
  1994. this.$refs.advices_list.setCurrentRow(row)
  1995. }
  1996. ,
  1997. isShowStartTime(index, row) {
  1998. if (row.parent_id > 0) {
  1999. return false
  2000. } else if (
  2001. index > 0 &&
  2002. row.groupno > 0 &&
  2003. row.groupno == this.doctor_advices[index - 1].groupno
  2004. ) {
  2005. return false
  2006. }
  2007. return true
  2008. }
  2009. ,
  2010. mergeSpan({ row, column, rowIndex, columnIndex }) {
  2011. if (columnIndex != 2) {
  2012. const _row = this.tempArr[rowIndex]
  2013. const _col = _row > 0 ? 1 : 0
  2014. return {
  2015. rowspan: _row,
  2016. colspan: _col
  2017. }
  2018. }
  2019. }
  2020. ,
  2021. handleSpanTempArr() {
  2022. this.tempArr = []
  2023. for (let i = 0; i < this.doctor_advices.length; i++) {
  2024. if (i === 0) {
  2025. this.tempArr.push(1)
  2026. this.pos = 0
  2027. } else {
  2028. // 判断当前元素与上一个元素是否相同
  2029. if (
  2030. this.doctor_advices[i].created_time ===
  2031. this.doctor_advices[i - 1].created_time
  2032. ) {
  2033. this.tempArr[this.pos] += 1
  2034. this.tempArr.push(0)
  2035. } else {
  2036. this.tempArr.push(1)
  2037. this.pos = i
  2038. }
  2039. }
  2040. }
  2041. },
  2042. cellMouseEnter: function(row, column, event) {
  2043. console.log("row323323322323233232",row)
  2044. this.currentRow = row
  2045. this.groupSelectRow = row
  2046. // this.sameRowArr.forEach((arr, i) => {
  2047. // if (arr.indexOf(row.index) != -1) {
  2048. // this.hoverOrderArr = arr
  2049. // }
  2050. // })
  2051. }
  2052. ,
  2053. cellMouseLeave: function(row, column, cell, event) {
  2054. this.hoverOrderArr = []
  2055. }
  2056. ,
  2057. handleStyle() {
  2058. let sameRowArr = [],
  2059. sIdx = 0
  2060. this.doctor_advices.forEach((item, index) => {
  2061. item.index = index
  2062. if (index === 0) {
  2063. sameRowArr.push([index])
  2064. } else {
  2065. if (item.created_time === this.doctor_advices[index - 1].created_time) {
  2066. sameRowArr[sIdx].push(index)
  2067. } else {
  2068. sIdx = sIdx + 1
  2069. sameRowArr.push([index])
  2070. }
  2071. }
  2072. })
  2073. this.sameRowArr = sameRowArr
  2074. }
  2075. ,
  2076. getAdviceContent(row, isChild) {
  2077. // alert("来")
  2078. console.log("this.doctor_advices",this.doctor_advices)
  2079. console.log("row",row)
  2080. console.log("isChild",isChild)
  2081. let tempSingleDoseDesc = ''
  2082. let tempDrugSpecDesc = ''
  2083. let tempPrescribingNumberDesc = ''
  2084. if (row.prescribing_number) {
  2085. tempPrescribingNumberDesc = row.prescribing_number + '' + row.prescribing_number_unit
  2086. }
  2087. if(this.org_id == 10188 ){
  2088. tempPrescribingNumberDesc = ""
  2089. }
  2090. if (row.single_dose) {
  2091. if (this.template_id != 6) {
  2092. tempSingleDoseDesc =
  2093. ' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
  2094. } else {
  2095. tempSingleDoseDesc = row.single_dose + '' + row.single_dose_unit
  2096. }
  2097. }
  2098. if (row.advice_desc) {
  2099. tempDrugSpecDesc = '(' + row.advice_desc + row.drug_spec_unit + ')' + " " + row.remark
  2100. }
  2101. if (isChild == 1) {
  2102. // 不是子药
  2103. return (
  2104. row.advice_name +
  2105. tempDrugSpecDesc +
  2106. ' ' +
  2107. tempPrescribingNumberDesc +
  2108. tempSingleDoseDesc +
  2109. ' ' +
  2110. row.delivery_way +
  2111. ' ' +
  2112. row.execution_frequency
  2113. )
  2114. } else {
  2115. // 是子药
  2116. return (
  2117. row.advice_name +
  2118. tempDrugSpecDesc +
  2119. ' ' +
  2120. tempPrescribingNumberDesc +
  2121. tempSingleDoseDesc
  2122. )
  2123. }
  2124. }
  2125. ,
  2126. getPermission() {
  2127. request
  2128. .get('/api/func_per/get', {
  2129. params: {
  2130. create_url: '/api/patients/advice/creategroup?mode=1',
  2131. modify_url: '/api/patients/advice/edit?mode=2',
  2132. modify_other_url: '/api/patients/advice/edit?mode=3',
  2133. del_url: '/api/patients/advice/delete?mode=4',
  2134. del_other_url: '/api/patients/advice/delete?mode=5',
  2135. exce_url: '/api/patients/advice/exec?mode=6',
  2136. check_url: '/api/patients/advice/check?mode=7',
  2137. module: 4
  2138. }
  2139. }).then(res => {
  2140. if (res.data.state == 0) {
  2141. this.hasPermission = false
  2142. } else if (res.data.state == 1) {
  2143. this.is_has_create = res.data.data.is_has_create
  2144. this.is_has_exce = res.data.data.is_has_exce
  2145. this.is_has_check = res.data.data.is_has_check
  2146. this.is_has_modify = res.data.data.is_has_modify
  2147. this.is_has_modify_other = res.data.data.is_has_modify_other
  2148. this.is_has_modify_exce = res.data.data.is_has_modify_exce
  2149. this.is_has_del = res.data.data.is_has_del
  2150. this.is_has_del_other = res.data.data.is_has_del_other
  2151. }
  2152. })
  2153. }
  2154. ,
  2155. arraySpanMethod({ row, column, rowIndex, columnIndex }) {
  2156. if (rowIndex % 2 === 0) {
  2157. if (columnIndex === 0) {
  2158. return [1, 2]
  2159. } else if (columnIndex === 1) {
  2160. return [0, 0]
  2161. }
  2162. }
  2163. }
  2164. ,
  2165. handleCurrentChange(row) {
  2166. this.currentRow = row;
  2167. // this.groupSelectRow = row;
  2168. // this.sameRowArr.forEach((arr, i) => {
  2169. // if (arr.indexOf(row.index) != -1) {
  2170. // this.hoverOrderArr = arr;
  2171. // }
  2172. // });
  2173. },
  2174. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  2175. if (columnIndex === 0) {
  2176. if (rowIndex % 2 === 0) {
  2177. return {
  2178. rowspan: 2,
  2179. colspan: 1
  2180. }
  2181. } else {
  2182. return {
  2183. rowspan: 0,
  2184. colspan: 0
  2185. }
  2186. }
  2187. }
  2188. if (columnIndex === 1) {
  2189. if (rowIndex % 2 === 0) {
  2190. return {
  2191. rowspan: 2,
  2192. colspan: 1
  2193. }
  2194. } else {
  2195. return {
  2196. rowspan: 0,
  2197. colspan: 0
  2198. }
  2199. }
  2200. }
  2201. }
  2202. ,
  2203. GetLastOrNextDoctorAdvice(params) {
  2204. GetLastOrNextDoctorAdvice(params).then(response => {
  2205. if (response.data.state == 1) {
  2206. var doctor_advices = response.data.data.advices
  2207. this.other_doctor_advices = doctor_advices
  2208. this.request_record_date = uParseTime(this.other_doctor_advices[0].record_date, '{y}-{m}-{d}')
  2209. this.sch = response.data.data.schedule
  2210. } else {
  2211. this.$message.error(response.data.msg)
  2212. }
  2213. })
  2214. },
  2215. getDialysisScheduleDetail() {
  2216. if(this.$route.query.showView && this.$route.query.showView == true){
  2217. return
  2218. }
  2219. getDialysisScheduleDetail(this.patientid, this.record_date).then(response => {
  2220. if (response.data.state == 1) {
  2221. this.doctor_advices = []
  2222. var doctor_advices = response.data.data.doctor_advices
  2223. this.doctorAdvices = doctor_advices
  2224. if(doctor_advices !=undefined && doctor_advices.length > 0){
  2225. for(let i=0;i<doctor_advices.length;i++){
  2226. doctor_advices[i]['origin'] = 1
  2227. this.doctor_advices.push(doctor_advices[i])
  2228. }
  2229. }
  2230. var his_advices = response.data.data.his_advices
  2231. if(his_advices!=undefined && his_advices.length > 0){
  2232. for(let i=0;i<his_advices.length;i++){
  2233. his_advices[i]['origin'] = 2
  2234. this.doctor_advices.push(his_advices[i])
  2235. }
  2236. }
  2237. this.currentIndex = -1
  2238. this.currentRow = null
  2239. this.setCurrent()
  2240. this.hideForm()
  2241. }
  2242. })
  2243. }
  2244. ,
  2245. openLast(val) {
  2246. if (val == 1) {
  2247. this.isLastOrNextVisible = true
  2248. this.isVisibility = false
  2249. this.request_record_date = this.record_date
  2250. let params = {
  2251. patient_id: this.patientid,
  2252. record_time: this.request_record_date,
  2253. type: 1
  2254. }
  2255. this.GetLastOrNextDoctorAdvice(params)
  2256. } else if (val == 3) {
  2257. let params = {
  2258. patient_id: this.patientid,
  2259. record_time: this.request_record_date,
  2260. type: 1
  2261. }
  2262. this.GetLastOrNextDoctorAdvice(params)
  2263. }
  2264. },
  2265. openNext(val) {
  2266. if (val == 2) {
  2267. this.isLastOrNextVisible = true
  2268. this.isVisibility = false
  2269. this.request_record_date = this.record_date
  2270. let params = {
  2271. patient_id: this.patientid,
  2272. record_time: this.request_record_date,
  2273. type: 2
  2274. }
  2275. this.GetLastOrNextDoctorAdvice(params)
  2276. } else if (val == 4) {
  2277. let params = {
  2278. patient_id: this.patientid,
  2279. record_time: this.request_record_date,
  2280. type: 2
  2281. }
  2282. this.GetLastOrNextDoctorAdvice(params)
  2283. }
  2284. },
  2285. getSelfMedicalList(){
  2286. const params = {
  2287. patient_id:this.$route.query.patient_id
  2288. }
  2289. getSelfMedicalList(params).then(response=>{
  2290. if (response.data.state == 1) {
  2291. this.arr_drug = []
  2292. var medicalList = response.data.data.private_drug_list
  2293. var base_drug_list = response.data.data.base_drug_list
  2294. var base_drug_cofig = response.data.data.base_drug_config
  2295. var private_drug_cofig = response.data.data.private_drug_config
  2296. if(private_drug_cofig != null&&private_drug_cofig.drug_start == 1) {
  2297. for (let i = 0; i < medicalList.length; i++) {
  2298. if(medicalList[i].drug_specs != null) {
  2299. for (let a = 0; a < medicalList[i].drug_specs.length; a++) {
  2300. medicalList[i].drug_specs[a]['type'] = 2
  2301. }
  2302. }
  2303. let obj = {
  2304. drug_name: "",
  2305. drug_desc: "",
  2306. delivery_way: "",
  2307. execution_frequency: "",
  2308. single_dose: "",
  2309. single_dose_unit: "",
  2310. prescribing_number: "",
  2311. prescribing_number_unit: "",
  2312. type_id: "",
  2313. type: "",
  2314. custom_id: "",
  2315. drug_specs: [],
  2316. }
  2317. medicalList[i].drug_name = medicalList[i].drug_name + "(自备药)"
  2318. obj.drug_name = medicalList[i].drug_name
  2319. obj.delivery_way = medicalList[i].delivery_way
  2320. obj.execution_frequency = medicalList[i].execution_frequency
  2321. obj.single_dose = medicalList[i].single_dose
  2322. obj.prescribing_number = medicalList[i].prescribing_number
  2323. obj.type_id = medicalList[i].id
  2324. obj.type = 2
  2325. obj.custom_id = this.rand(10000000, 99999999)
  2326. obj.drug_specs = medicalList[i].drug_specs
  2327. this.all_drug.push(obj)
  2328. }
  2329. }
  2330. for (let i = 0; i < base_drug_list.length; i++) {
  2331. if(base_drug_list[i].drug_specs != null) {
  2332. for (let a = 0; a < base_drug_list[i].drug_specs.length; a++) {
  2333. base_drug_list[i].drug_specs[a]['type'] = 1
  2334. }
  2335. }
  2336. let obj = {
  2337. drug_name: "",
  2338. drug_desc: "",
  2339. delivery_way: "",
  2340. execution_frequency: "",
  2341. single_dose: "",
  2342. single_dose_unit: "",
  2343. prescribing_number: "",
  2344. prescribing_number_unit: "",
  2345. type_id: "",
  2346. type: "",
  2347. custom_id: "",
  2348. drug_specs: [],
  2349. }
  2350. obj.drug_name = base_drug_list[i].drug_name
  2351. obj.delivery_way = base_drug_list[i].delivery_way
  2352. obj.execution_frequency = base_drug_list[i].execution_frequency
  2353. obj.single_dose = base_drug_list[i].single_dose
  2354. obj.prescribing_number = base_drug_list[i].prescribing_number
  2355. obj.type_id = base_drug_list[i].id
  2356. obj.type = 1
  2357. obj.custom_id = this.rand(10000000, 99999999)
  2358. obj.drug_specs = base_drug_list[i].drug_specs
  2359. this.all_drug.push(obj)
  2360. }
  2361. }
  2362. })
  2363. },
  2364. changeDrugName(name){
  2365. this.current_drug_name = name
  2366. this.form.advice_desc = ""
  2367. this.$forceUpdate()
  2368. this.drugSpec = []
  2369. for (let i = 0; i < this.all_drug.length; i++) {
  2370. if (this.all_drug[i].drug_name == name) {
  2371. this.drugSpec = this.all_drug[i].drug_specs
  2372. }
  2373. }
  2374. },
  2375. changeDrugDesc(name) {
  2376. this.$forceUpdate()
  2377. this.current_drug_spec = name
  2378. for (let i = 0; i < this.drugSpec.length; i++) {
  2379. if (this.drugSpec[i].drug_spec == name) {
  2380. this.form.advice_desc = this.drugSpec[i].drug_spec
  2381. this.form.prescribing_number = this.drugSpec[i].prescribing_number.toString()
  2382. this.form.single_dose = this.drugSpec[i].single_dose.toString()
  2383. this.form.delivery_way = this.drugSpec[i].delivery_way.toString()
  2384. this.form.execution_frequency = this.drugSpec[i].execution_frequency.toString()
  2385. this.form.drug_id = this.drugSpec[i].id
  2386. this.src_type = this.drugSpec[i].type
  2387. this.form.drug_id = this.drugSpec[i].id
  2388. this.form.way = this.drugSpec[i].type
  2389. this.form.drug_spec_unit = this.drugSpec[i].min_unit
  2390. this.form.prescribing_number_unit = this.drugSpec[i].min_unit
  2391. this.form.single_dose_unit = this.drugSpec[i].min_unit
  2392. if(this.drugSpec[i].drug_name_id){
  2393. this.form.drug_name_id = this.drugSpec[i].drug_name_id
  2394. }else{
  2395. this.form.drug_name_id = 0
  2396. }
  2397. }
  2398. }
  2399. },
  2400. rand(min, max) {
  2401. return Math.floor(Math.random() * (max - min)) + min;
  2402. },
  2403. querySearch(queryString, cb) {
  2404. var restaurants = this.all_drug;
  2405. restaurants.map(item => {
  2406. item.value = item.drug_name
  2407. })
  2408. var results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants;
  2409. // 调用 callback 返回建议列表的数据
  2410. cb(results);
  2411. },
  2412. createFilter(queryString) {
  2413. return (restaurant) => {
  2414. return (restaurant.drug_name.toLowerCase().indexOf(queryString.toLowerCase()) !=-1);
  2415. };
  2416. },
  2417. querySearch1(queryString, cb) {
  2418. var restaurants = this.drugSpec;
  2419. restaurants.map(item => {
  2420. item.value = item.drug_spec
  2421. })
  2422. var results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants;
  2423. // 调用 callback 返回建议列表的数据
  2424. cb(results);
  2425. },
  2426. //<!--li-->
  2427. handleSelect(val){
  2428. console.log("==val==",val)
  2429. var tmp = val.drug_specs[0]
  2430. console.log("==tmp==",tmp)
  2431. //药品规格
  2432. this.form.advice_desc = tmp.dose+tmp.dose_unit+"*"+tmp.min_number+tmp.min_unit+"/"//药品规格
  2433. this.form.drug_spec_unit = tmp.max_unit
  2434. //开药数量
  2435. this.form.prescribing_number = tmp.prescribing_number//开药数量
  2436. this.form.prescribing_number_unit = tmp.prescribing_number_unit
  2437. //单次用量
  2438. this.form.single_dose = tmp.single_dose//单次用量
  2439. this.form.single_dose_unit = tmp.drug_dose_unit
  2440. this.form.drug_id = tmp.id
  2441. console.log("!!!!!!!!!!!!this.form.drug_id = tmp.id")
  2442. console.log("tmp.id",tmp.id)
  2443. console.log("this.form.drug_id",this.form.drug_id)
  2444. // this.form.id = tmp.id
  2445. },
  2446. getPatientSchedule(){
  2447. var params = {
  2448. patient_id:this.$route.query.patient_id,
  2449. schedule_date:this.$route.query.date,
  2450. }
  2451. getPatientSchedule(params).then(response=>{
  2452. if(response.data.state == 1){
  2453. var schedulePatient = response.data.data.schedulePatient
  2454. console.log("schedulePatient23332322323wo",schedulePatient)
  2455. this.schedulePatient = schedulePatient
  2456. }
  2457. })
  2458. },
  2459. getDataConfig(module, filed_name) {
  2460. return getDataConfig(module, filed_name)
  2461. },
  2462. getUnit(id){
  2463. var name = ""
  2464. for(let i=0;i<this.unitsOption.length;i++){
  2465. if(id == this.unitsOption[i].id){
  2466. name = this.unitsOption[i].name
  2467. }
  2468. }
  2469. console.log("nam e23233232322323wo",name)
  2470. return name
  2471. },
  2472. saveInformation(){
  2473. var params = {
  2474. selected_date:this.selected_date,
  2475. patient_id:this.$route.query.patient_id,
  2476. record_date:this.$route.query.date,
  2477. module:2,
  2478. remark:this.remark,
  2479. }
  2480. saveInformation(params).then(response=>{
  2481. if(response.data.state == 1){
  2482. var information = response.data.data.information
  2483. this.$message.success("提交成功!")
  2484. this.infoDialogVisible = false
  2485. }
  2486. })
  2487. }
  2488. },
  2489. created() {
  2490. var date = this.$route.query && this.$route.query.date
  2491. this.record_date = uParseTime(date, '{y}-{m}-{d}')
  2492. this.form.advice_date = this.record_date
  2493. this.getAdviceConfig()
  2494. this.unitsOption = this.getDataConfig('hemodialysis', 'units')
  2495. this.template_id = this.$store.getters.xt_user.template_info.template_id
  2496. this.org_id = this.$store.getters.xt_user.org.id
  2497. this.patientid = this.$route.query.patient_id
  2498. this.request_record_date = this.record_date
  2499. // this.getDialysisScheduleDetail()
  2500. //获取自备药
  2501. this.getSelfMedicalList()
  2502. this.getPatientSchedule()
  2503. },
  2504. components: {
  2505. AddGroupAdvice,
  2506. EditGroupAdvice
  2507. }
  2508. }
  2509. </script>
  2510. <style>
  2511. @import "../../../../../static/css/table_row.css";
  2512. .txsj {
  2513. text-align: center;
  2514. margin-bottom: 20px;
  2515. }
  2516. .dialysisadvicenamedisplay .cell {
  2517. float: left;
  2518. text-align: left;
  2519. }
  2520. </style>
  2521. <style lang="scss" scoped>
  2522. .table {
  2523. width: 100%;
  2524. .tableTh {
  2525. th {
  2526. padding: 10px 0px;
  2527. background-color: rgb(245, 247, 250);
  2528. color: #909399;
  2529. font-weight: bold;
  2530. text-align: center;
  2531. }
  2532. }
  2533. tr {
  2534. th {
  2535. /*/ / background: $ main-color;*/
  2536. /*/ / color: #fff;*/
  2537. /*/ / height: 1.2 rem;*/
  2538. /*/ / line-height: 1.2 rem;*/
  2539. /*/ /*/
  2540. }
  2541. td {
  2542. line-height: 0.6rem;
  2543. .txt {
  2544. /*/ / float: left;*/
  2545. padding: 0 10px 0 10px;
  2546. /*/ / width: 75 %;*/
  2547. text-align: left;
  2548. }
  2549. .ico {
  2550. float: right;
  2551. width: 60px;
  2552. text-align: right;
  2553. padding-right: 3px;
  2554. }
  2555. .iconfont {
  2556. font-size: 20px;
  2557. padding: 0 2px;
  2558. color: #7b8a97;
  2559. }
  2560. .handle {
  2561. color: #409eff;
  2562. /*/ / padding: 0 7 px;*/
  2563. }
  2564. }
  2565. .advice_content {
  2566. /*/ / background: #eff6fc;*/
  2567. }
  2568. .subadvice_content {
  2569. /*/ / background: #fafcfe;*/
  2570. padding-left: 20px;
  2571. }
  2572. .td-active {
  2573. background: #badcff !important;
  2574. }
  2575. }
  2576. .row-class-active {
  2577. td {
  2578. background: #badcff;
  2579. }
  2580. }
  2581. }
  2582. </style>
  2583. <!--<style scoped>-->
  2584. <!--.txsj{-->
  2585. <!--text-align: center;-->
  2586. <!--margin-bottom: 20px;-->
  2587. <!--}-->
  2588. <!--</style>-->
  2589. <!--<style rel="stylesheet/scss" lang="scss" >-->
  2590. <!--.row-class-active {-->
  2591. <!--background: #badcff;-->
  2592. <!--}-->
  2593. <!--.doctor-advice-box .current-box-class .current-row>td{-->
  2594. <!--background: #6fb5fa;-->
  2595. <!--color:#fff;-->
  2596. <!--}-->
  2597. <!--.doctor-advice-box .current-box-class .current-row:hover>td{-->
  2598. <!--background: #6fb5fa;-->
  2599. <!--}-->
  2600. <!--// .doctor-advice-box .current-box-class .stoped-row>td{-->
  2601. <!--// background: #c9c9c9;-->
  2602. <!--// color:#000;-->
  2603. <!--// }-->
  2604. <!--// .doctor-advice-box .current-box-class .stoped-row:hover>td{-->
  2605. <!--// background: #c9c9c9;-->
  2606. <!--// }-->
  2607. <!--</style>-->