newDoctorAdvice.vue 110KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. <div>
  6. <el-button
  7. size="small"
  8. icon="el-icon-printer"
  9. :disabled="selecting_schs.length == 0"
  10. @click="signPrintAction"
  11. type="primary"
  12. style="margin-right:10"
  13. >标签打印
  14. </el-button>
  15. <el-button
  16. size="small"
  17. icon="el-icon-printer"
  18. :disabled="selecting_schs.length == 0"
  19. @click="batchPrintAction"
  20. type="primary"
  21. >医嘱打印
  22. </el-button>
  23. </div>
  24. </div>
  25. <div class="app-container">
  26. <div class="filter-container">
  27. <div style="display: flex;">
  28. <div style="flex: 1;">
  29. <el-autocomplete
  30. class="checkSearch"
  31. popper-class="my-autocomplete"
  32. v-model.trim="listQuery.keyword"
  33. :fetch-suggestions="querySearchAsync"
  34. :trigger-on-focus="false"
  35. placeholder="患者姓名"
  36. @select="handleSelect"
  37. >
  38. <i class="el-icon-search el-input__icon" slot="suffix"></i>
  39. <template slot-scope="{ item }">
  40. <div class="name">{{ item.name }}</div>
  41. </template>
  42. </el-autocomplete>
  43. <el-button type="primary" @click="toSeach">搜索</el-button>
  44. <el-input style="width:200px" placeholder="请输入药品名称" v-model="keyword"></el-input>
  45. <el-button type="primary" @click="toSeachOne">搜索</el-button>
  46. </div>
  47. <div style="flex: 1;text-align: right;">
  48. <el-button type="primary" size="small" @click="toStatic" v-if="org_id!=0 && org_id!=10340">药品统计</el-button>
  49. <el-button type="primary" size="small" @click="toStaticOne" v-if="org_id == 0 || org_id==10340">药品统计</el-button>
  50. <el-button type="primary" size="small" @click="toStaticThree">药品月统计</el-button>
  51. <el-button type="primary" size="small" @click="toStaticTwo">耗材统计</el-button>
  52. <el-button type="primary" size="small" @click="toStaticFour">耗材月统计</el-button>
  53. </div>
  54. </div>
  55. </div>
  56. <!-- <div class="filter-container">
  57. <el-input style="width:200px" placeholder="请输入药品名称" v-model="keyword"></el-input>
  58. <el-button type="primary" @click="toSeachOne">搜索</el-button>
  59. </div> -->
  60. <div class="cell clearfix">
  61. <label class="title">
  62. <span class="name">日期查询:</span>
  63. </label>
  64. <el-date-picker
  65. v-model="time"
  66. prefix-icon="el-icon-date"
  67. @change="changeTime"
  68. :editable="false"
  69. style="width: 180px;margin-right: 10px;"
  70. type="date"
  71. placeholder="选择日期时间"
  72. align="right"
  73. format="yyyy-MM-dd"
  74. value-format="timestamp"
  75. ></el-date-picker>
  76. <label class="title">
  77. <span class="name">排序:</span>
  78. </label>
  79. <el-select v-model="sort" placeholder="请选择" @change="selectSortType">
  80. <el-option
  81. v-for="item in options"
  82. :key="item.name"
  83. :label="item.name"
  84. :value="item.id"
  85. >
  86. </el-option>
  87. </el-select>
  88. </div>
  89. <!-- <div class="cell clearfix">
  90. <label class="title">
  91. <span class="name">排序:</span>
  92. </label>
  93. <el-select v-model="sort" placeholder="请选择" @change="selectSortType">
  94. <el-option
  95. v-for="item in options"
  96. :key="item.name"
  97. :label="item.name"
  98. :value="item.id"
  99. >
  100. </el-option>
  101. </el-select>
  102. </div> -->
  103. <div class="cell clearfix">
  104. <label class="title"> <span class="name">排班班次</span> : </label>
  105. <div class="time">
  106. <ul class>
  107. <li
  108. :class="item.value == schedulType ? 'active' : ''"
  109. @click="selectSchedulType(item.value)"
  110. v-for="item in schedulArr"
  111. :key="item.value"
  112. >
  113. {{ item.label }}
  114. </li>
  115. </ul>
  116. </div>
  117. </div>
  118. <div class="cell clearfix">
  119. <label class="title"><span class="name">收费状态</span> : </label>
  120. <div class="time">
  121. <ul class>
  122. <li
  123. :class="item.id == costType ? 'active' : ''"
  124. @click="selectCostType(item.id)"
  125. v-for="item in costArr"
  126. :key="item.id"
  127. >
  128. {{ item.name }}
  129. </li>
  130. </ul>
  131. </div>
  132. </div>
  133. <div class="cell clearfix">
  134. <label class="title"><span class="name">分区</span> : </label>
  135. <div class="time">
  136. <ul class>
  137. <li
  138. :class="item.id == partitionType ? 'active' : ''"
  139. @click="selectPartitionType(item.id)"
  140. v-for="item in partitionArr"
  141. :key="item.id"
  142. >
  143. {{ item.name }}
  144. </li>
  145. </ul>
  146. </div>
  147. </div>
  148. <div class="cell clearfix">
  149. <label class="title"> <span class="name">给药途径</span> : </label>
  150. <div class="time" style="width: 90%;">
  151. <ul class>
  152. <li
  153. :class="item.id == delivery_way ? 'active' : ''"
  154. @click="selectDeliveryWay(item.id)"
  155. v-for="item in deliveryWay"
  156. :key="item.id"
  157. >
  158. {{ item.name }}
  159. </li>
  160. </ul>
  161. </div>
  162. </div>
  163. <div class="cell clearfix">
  164. <label class="title"> <span class="name">执行频率</span> : </label>
  165. <div class="time" style="width: 90%;">
  166. <ul class>
  167. <li
  168. :class="item.id == execution_frequency ? 'active' : ''"
  169. @click="selectFrequencyWay(item.id)"
  170. v-for="item in excutList"
  171. :key="item.id"
  172. >
  173. {{ item.name }}
  174. </li>
  175. </ul>
  176. </div>
  177. </div>
  178. <div class="cell clearfix">
  179. <label class="title"> <span class="name">执行状态</span> : </label>
  180. <div class="time">
  181. <ul class>
  182. <li
  183. :class="item.id == excution_way ? 'active' : ''"
  184. @click="selectExcutionWay(item.id)"
  185. v-for="item in executionList"
  186. :key="item.id"
  187. >
  188. {{ item.name }}
  189. </li>
  190. </ul>
  191. </div>
  192. </div>
  193. <!-- <div style="margin-top: 10px;margin-left:600px;margin-bottom:10px">
  194. <el-button type="primary" size="small" @click="toExcution">执行医嘱</el-button>
  195. <el-button type="primary" size="small" @click="toCheck">医嘱核对</el-button>
  196. <el-button type="primary" size="small" @click="toSettle">收费</el-button>
  197. </div> -->
  198. <!-- <div style="margin-top: 10px;margin-bottom:10px">
  199. <el-button type="primary" size="small" @click="toStatic" v-if="org_id!=9671 && org_id!=10340">药品统计</el-button>
  200. <el-button type="primary" size="small" @click="toStaticOne" v-if="org_id == 9671 || org_id==10340">药品统计</el-button>
  201. <el-button type="primary" size="small" @click="toStaticThree">药品月统计</el-button>
  202. <el-button type="primary" size="small" @click="toStaticTwo">耗材统计</el-button>
  203. <el-button type="primary" size="small" @click="toStaticFour">耗材月统计</el-button>
  204. </div> -->
  205. <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  206. @selection-change="handleSelectionChange"
  207. :span-method="objectSpanMethod"
  208. :cell-class-name="adviceNameShow"
  209. :modal-append-to-body="false"
  210. highlight-current-row
  211. @current-change="handleCurrentChangeList"
  212. v-show="show"
  213. @row-click="handleRowClick">
  214. <el-table-column type="selection" width="55" align="center"></el-table-column>
  215. <el-table-column prop="date" label="姓名" align="center" min-width="26px">
  216. <template slot-scope="scope">
  217. <span>{{ scope.row.name }}</span>
  218. <br>
  219. ({{ scope.row.parent_id == 0 ? scope.row.dialysis_no : ""}})
  220. <br>
  221. <span v-if="scope.row.mode_id == 1">(HD)</span>
  222. <span v-if="scope.row.mode_id == 2">(HDF)</span>
  223. <span v-if="scope.row.mode_id == 3">(HD+HP)</span>
  224. <span v-if="scope.row.mode_id == 4">(HP)</span>
  225. <span v-if="scope.row.mode_id == 5">(HF)</span>
  226. <span v-if="scope.row.mode_id == 6">(SCUF)</span>
  227. <span v-if="scope.row.mode_id == 7">(IUF)</span>
  228. <span v-if="scope.row.mode_id == 8">(HFHD)</span>
  229. <span v-if="scope.row.mode_id == 9">(HFHD+HP)</span>
  230. <span v-if="scope.row.mode_id == 10">(PHF)</span>
  231. <span v-if="scope.row.mode_id == 11">(HFR)</span>
  232. <span v-if="scope.row.mode_id == 12">(HDF+HP)</span>
  233. <span v-if="scope.row.mode_id == 13">(CRRT)</span>
  234. <span v-if="scope.row.mode_id == 14">(腹水回输)</span>
  235. <span v-if="scope.row.mode_id == 24">I-HDF</span>
  236. </br>
  237. <span v-if="scope.row.anticoagulant == 1" style="color:red">无肝素</span>
  238. </template>
  239. </el-table-column>
  240. <el-table-column label="分区床位" width="100">
  241. <template slot-scope="scope" >
  242. {{scope.row.zone_name}}/{{scope.row.number}}
  243. </template>
  244. </el-table-column>
  245. <el-table-column prop="date" label="透析器" align="center" min-width="26px">
  246. <template slot-scope="scope">
  247. <span>{{ scope.row.dialyzer_perfusion_apparatus }}</span>
  248. <span v-if="scope.row.dialysis_dialyszers!=''">{{scope.row.dialysis_dialyszers}}</span>
  249. <span v-if="scope.row.dialysis_irrigation!=''">{{scope.row.dialysis_irrigation}}</span>
  250. </template>
  251. </el-table-column>
  252. <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
  253. <template slot-scope="scope">
  254. <span>
  255. {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
  256. </span>
  257. </template>
  258. </el-table-column>
  259. <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
  260. <template slot-scope="scope">
  261. <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
  262. <span class="el-dropdown-link" v-if="scope.row.parent_id == 0">
  263. {{ getAdviceContent(scope.row, 1)}}
  264. </span>
  265. </el-dropdown>
  266. <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
  267. <span class="el-dropdown-link">
  268. &emsp;{{ getAdviceContent(scope.row, 2)}}
  269. </span>
  270. </el-dropdown>
  271. </template>
  272. </el-table-column>
  273. <el-table-column prop="start_time" min-width="30px" label="执行时间" align="center" sortable>
  274. <template slot-scope="scope">
  275. <span v-if="scope.row.execution_time != 0">
  276. {{scope.row.execution_time | parseTime('{m}-{d} {h}:{i}')}}
  277. </span>
  278. <span v-else></span>
  279. </template>
  280. </el-table-column>
  281. <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士">
  282. <template slot-scope="scope">
  283. <span v-if="scope.row.parent_id == 0">
  284. {{getXuserName(scope.row.execution_staff)}}
  285. </span>
  286. <span v-else>{{getXuserName(scope.row.execution_staff)}}</span>
  287. </template>
  288. </el-table-column>
  289. <el-table-column prop="checker" align="center" min-width="30px" label="校对护士">
  290. <template slot-scope="scope">
  291. <span v-if="scope.row.parent_id == 0">
  292. {{getXuserName(scope.row.checker)}}
  293. </span>
  294. <span v-else>{{getXuserName(scope.row.checker)}}</span>
  295. </template>
  296. </el-table-column>
  297. <el-table-column prop="check_time" align="center" label="校对时间" min-width="30px" sortable>
  298. <template slot-scope="scope">
  299. <span v-if="scope.row.check_time != 0 && org_id!=10460">
  300. {{scope.row.check_time | parseTime('{m}-{d} {h}:{i}')}}
  301. </span>
  302. <span v-else>
  303. </span>
  304. </template>
  305. </el-table-column>
  306. <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
  307. <template slot-scope="scope">
  308. <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
  309. </template>
  310. </el-table-column>
  311. <el-table-column prop="created_time" align="center" min-width="30px" label="校对时间" sortable>
  312. <template slot-scope="scope">
  313. <span v-if="scope.row.created_time != 0 && org_id!=10460">
  314. {{scope.row.created_time | parseTime('{m}-{d} {h}:{i}')}}
  315. </span>
  316. <span v-else></span>
  317. </template>
  318. </el-table-column>
  319. <el-table-column prop="created_time" align="center" min-width="30px" label="收费状态" sortable>
  320. <template slot-scope="scope">
  321. <span v-if="scope.row.is_settle == 1">
  322. 已收费
  323. </span>
  324. <span v-if="scope.row.is_settle == 2 || scope.row.is_settle == 0">
  325. 未收费
  326. </span>
  327. <span v-else></span>
  328. </template>
  329. </el-table-column>
  330. </el-table>
  331. <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  332. @selection-change="handleSelectionChangeOne"
  333. @current-change="handleCurrentChangeList"
  334. :span-method="objectSpanMethod"
  335. :cell-class-name="adviceNameShow"
  336. highlight-current-row
  337. :modal-append-to-body="false"
  338. v-show="showOne">
  339. <el-table-column type="selection" width="50" align="center"></el-table-column>
  340. <el-table-column prop="date" label="姓名" align="center" min-width="26px">
  341. <template slot-scope="scope">
  342. <span>{{ scope.row.name }}</span>
  343. <br>
  344. ({{ scope.row.parent_id == 0 ? scope.row.dialysis_no : ""}})
  345. <br>
  346. <span v-if="scope.row.mode_id == 1">(HD)</span>
  347. <span v-if="scope.row.mode_id == 2">(HDF)</span>
  348. <span v-if="scope.row.mode_id == 3">(HD+HP)</span>
  349. <span v-if="scope.row.mode_id == 4">(HP)</span>
  350. <span v-if="scope.row.mode_id == 5">(HF)</span>
  351. <span v-if="scope.row.mode_id == 6">(SCUF)</span>
  352. <span v-if="scope.row.mode_id == 7">(IUF)</span>
  353. <span v-if="scope.row.mode_id == 8">(HFHD)</span>
  354. <span v-if="scope.row.mode_id == 9">(HFHD+HP)</span>
  355. <span v-if="scope.row.mode_id == 10">(PHF)</span>
  356. <span v-if="scope.row.mode_id == 11">(HFR)</span>
  357. <span v-if="scope.row.mode_id == 12">(HDF+HP)</span>
  358. <span v-if="scope.row.mode_id == 13">(CRRT)</span>
  359. <span v-if="scope.row.mode_id == 14">(腹水回输)</span>
  360. <span v-if="scope.row.mode_id == 24">I-HDF</span>
  361. </template>
  362. </el-table-column>
  363. <el-table-column prop="date" label="透析器" align="center" min-width="26px">
  364. <template slot-scope="scope">
  365. <span>
  366. {{ scope.row.dialyzer_perfusion_apparatus }}
  367. <span v-if="scope.row.dialysis_dialyszers!=''">{{scope.row.dialysis_dialyszers}}</span>
  368. <span v-if="scope.row.dialysis_irrigation!=''">{{scope.row.dialysis_irrigation}}</span>
  369. </span>
  370. </template>
  371. </el-table-column>
  372. <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
  373. <template slot-scope="scope">
  374. <span>
  375. {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
  376. </span>
  377. </template>
  378. </el-table-column>
  379. <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
  380. <template slot-scope="scope">
  381. <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
  382. <span class="el-dropdown-link" v-if="scope.row.parent_id == 0">
  383. {{ getAdviceContent(scope.row, 1)}}
  384. </span>
  385. </el-dropdown>
  386. <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
  387. <span class="el-dropdown-link">
  388. &emsp;{{ getAdviceContent(scope.row, 2)}}
  389. </span>
  390. </el-dropdown>
  391. </template>
  392. </el-table-column>
  393. <el-table-column prop="start_time" align="center" min-width="30px" label="执行时间" sortable>
  394. <template slot-scope="scope">
  395. <span v-if="scope.row.execution_time != 0">
  396. {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
  397. </span>
  398. <span v-else></span>
  399. </template>
  400. </el-table-column>
  401. <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士">
  402. <template slot-scope="scope">
  403. <span v-if="scope.row.parent_id == 0">
  404. {{getXuserName(scope.row.execution_staff)}}
  405. </span>
  406. <span v-else></span>
  407. </template>
  408. </el-table-column>
  409. <el-table-column prop="checker" align="center" min-width="30px" label="校对护士">
  410. <template slot-scope="scope">
  411. <span v-if="scope.row.parent_id == 0">
  412. {{getXuserName(scope.row.checker)}}
  413. </span>
  414. <span v-else></span>
  415. </template>
  416. </el-table-column>
  417. <el-table-column prop="check_time" align="center" min-width="30px" label="校对时间" sortable>
  418. <template slot-scope="scope">
  419. <span v-if="scope.row.check_time != 0">
  420. {{scope.row.check_time | parseTime('{m}-{d} {h}:{i}')}}
  421. </span>
  422. <span v-else></span>
  423. </template>
  424. </el-table-column>
  425. <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
  426. <template slot-scope="scope">
  427. <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
  428. </template>
  429. </el-table-column>
  430. <el-table-column prop="created_time" align="center" min-width="30px" label="校对时间" sortable>
  431. <template slot-scope="scope">
  432. <span v-if="scope.row.created_time != 0">
  433. {{scope.row.created_time | parseTime('{m}-{d} {h}:{i}')}}
  434. </span>
  435. <span v-else></span>
  436. </template>
  437. </el-table-column>
  438. <el-table-column prop="created_time" align="center" min-width="30px" label="收费状态" sortable>
  439. <template slot-scope="scope">
  440. <span v-if="scope.row.is_settle == 1">
  441. 已收费
  442. </span>
  443. <span v-if="scope.row.is_settle == 2 || scope.row.is_settle == 0">
  444. 未收费
  445. </span>
  446. <span v-else></span>
  447. </template>
  448. </el-table-column>
  449. </el-table>
  450. <el-dialog
  451. title="选择执行时间"
  452. :visible.sync="execTimeDialogVisible"
  453. width="400px"
  454. :modal-append-to-body="false"
  455. >
  456. <el-date-picker
  457. v-model="execTime"
  458. format="yyyy-MM-dd HH:mm:00"
  459. value-format="yyyy-MM-dd HH:mm:00"
  460. type="datetime"
  461. placeholder="选择执行时间"
  462. style="width:100%"
  463. ></el-date-picker>
  464. <span slot="footer" class="dialog-footer">
  465. <el-button @click="execTimeDialogVisible = false">取 消</el-button>
  466. <el-button type="primary" @click="excutionDoctorAdvice" :loading="exceLoading">保 存</el-button>
  467. </span>
  468. </el-dialog>
  469. <el-dialog
  470. title="选择执行时间"
  471. :visible.sync="execTimeDialogVisibleOne"
  472. width="400px"
  473. :modal-append-to-body="false"
  474. >
  475. <el-date-picker
  476. v-model="execTime"
  477. format="yyyy-MM-dd HH:mm:00"
  478. value-format="yyyy-MM-dd HH:mm:00"
  479. type="datetime"
  480. placeholder="选择执行时间"
  481. style="width:100%"
  482. ></el-date-picker>
  483. <span slot="footer" class="dialog-footer">
  484. <el-button @click="execTimeDialogVisibleOne = false">取 消</el-button>
  485. <el-button type="primary" @click="excutionDoctorAdviceOne" :loading="exceLoading">保 存</el-button>
  486. </span>
  487. </el-dialog>
  488. <!-- 药品统计表 -->
  489. <el-dialog
  490. title="药品统计表"
  491. :visible.sync="startdialogVisible"
  492. width="60%">
  493. <span>
  494. <div class="eldialog" style="margin-bottom:10px">
  495. <div>
  496. <label class="title"> <span class="name">排班班次</span> : </label>
  497. <el-select v-model="schedule_type" placeholder="请选择"
  498. @change="changeScheduleType" style="width: 120px;">
  499. <el-option
  500. v-for="item in schedulArr"
  501. :key="item.value"
  502. :label="item.label"
  503. :value="item.value">
  504. </el-option>
  505. </el-select>
  506. <label class="title"> <span class="name">病区选择</span> : </label>
  507. <el-select v-model="partion_type" placeholder="请选择"
  508. @change="changePartionType" multiple style="width: 120px;"
  509. >
  510. <el-option
  511. v-for="item in partitionArr"
  512. :key="item.id"
  513. :label="item.name"
  514. :value="item.id">
  515. </el-option>
  516. </el-select>
  517. </div>
  518. <div>
  519. <el-button size="small" icon="el-icon-printer" @click="toPrintOne" type="primary">打印</el-button>
  520. <el-button size="small" @click="toExportListOne" type="primary">导出</el-button>
  521. </div>
  522. </div>
  523. <el-table
  524. :data="tableList"
  525. border
  526. :row-style="{ color: '#303133' }"
  527. :header-cell-style="{
  528. backgroundColor: 'rgb(245, 247, 250)',
  529. color: '#606266'
  530. }"
  531. >
  532. <el-table-column align="center" label="序号">
  533. <template slot-scope="scope">
  534. {{scope.$index+1}}
  535. </template>
  536. </el-table-column>
  537. <el-table-column align="center" label="药品名称">
  538. <template slot-scope="scope">
  539. {{scope.row.advice_name}}
  540. </template>
  541. </el-table-column>
  542. <el-table-column align="center" label="规格">
  543. <template slot-scope="scope">
  544. {{scope.row.specification_name}}
  545. </template>
  546. </el-table-column>
  547. <el-table-column align="center" label="数量">
  548. <template slot-scope="scope">
  549. <span v-if="config.is_open!=1">{{getCount(scope.row.child)}}</span>
  550. <span v-if="config.is_open ==1">{{getHisCount(scope.row.child,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  551. </template>
  552. </el-table-column>
  553. <el-table-column align="center" label="厂家">
  554. <template slot-scope="scope">
  555. {{scope.row.manufacturer_name}}
  556. </template>
  557. </el-table-column>
  558. </el-table>
  559. </span>
  560. <span slot="footer" class="dialog-footer">
  561. <el-button @click="startdialogVisible = false">取 消</el-button>
  562. <el-button type="primary" @click="startdialogVisible = false">确 定</el-button>
  563. </span>
  564. </el-dialog>
  565. <!-- 长沙南雅 -->
  566. <el-dialog
  567. title="药品统计表"
  568. :visible.sync="startdialogVisibleOne"
  569. width="70%">
  570. <span>
  571. <div class="eldialog" style="margin-bottom:10px">
  572. <div>
  573. <label class="title"> <span class="name">排班班次</span> : </label>
  574. <el-select v-model="schedule_type" placeholder="请选择"
  575. @change="changeScheduleTypeOne" style="width: 120px;">
  576. <el-option
  577. v-for="item in schedulArr"
  578. :key="item.value"
  579. :label="item.label"
  580. :value="item.value">
  581. </el-option>
  582. </el-select>
  583. <label class="title"> <span class="name">病区选择</span> : </label>
  584. <el-select v-model="partion_type" placeholder="请选择"
  585. @change="changePartionTypeOne" multiple style="width: 120px;">
  586. <el-option
  587. v-for="item in partitionArr"
  588. :key="item.id"
  589. :label="item.name"
  590. :value="item.id">
  591. </el-option>
  592. </el-select>
  593. </div>
  594. <div>
  595. <el-button size="small" icon="el-icon-printer" @click="toPrintTwo" type="primary">打印</el-button>
  596. </div>
  597. <!-- <el-button size="small" @click="toExportListOne" type="primary">导出</el-button> -->
  598. <!-- <el-button @click="toJiao()">脚本</el-button> -->
  599. </div>
  600. <el-table
  601. :data="tableDataList"
  602. border
  603. :row-style="{ color: '#303133' }"
  604. :header-cell-style="{
  605. backgroundColor: 'rgb(245, 247, 250)',
  606. color: '#606266'
  607. }"
  608. >
  609. <el-table-column
  610. align="center"
  611. prop="name"
  612. label="序号"
  613. width="60"
  614. >
  615. <template slot-scope="scope" >
  616. <span v-if="scope.row.is_total == 1">{{scope.$index+1}}</span>
  617. <span v-if="scope.row.is_total == 0">总计</span>
  618. </template>
  619. </el-table-column>
  620. <el-table-column
  621. align="center"
  622. prop="name"
  623. label="区域"
  624. width="100"
  625. >
  626. <template slot-scope="scope" >
  627. <span v-if="scope.row.is_total ==1">
  628. <!-- {{getZoneName(scope.row.child)}} -->
  629. {{scope.row.zone_name }}
  630. </span>
  631. </template>
  632. </el-table-column>
  633. <!-- <el-table-column
  634. align="center"
  635. prop="name"
  636. label="责护"
  637. width="100"
  638. >
  639. <template slot-scope="scope">
  640. <span v-if="scope.row.is_total ==1">
  641. {{getAdminUserName(scope.row.execution_staff)}}
  642. </span>
  643. </template>
  644. </el-table-column> -->
  645. <el-table-column
  646. align="center"
  647. prop="name"
  648. label="透析模式"
  649. width="130"
  650. >
  651. <template slot-scope="scope">
  652. <span v-if="scope.row.is_total == 1">
  653. {{getModeId(scope.row.child)}}
  654. </span>
  655. </template>
  656. </el-table-column>
  657. <el-table-column
  658. align="center"
  659. prop="name"
  660. v-for="(item,index) in tabHead"
  661. :key="index"
  662. :label="item.advice_name"
  663. >
  664. <template slot-scope="scope">
  665. <span v-if="scope.row.is_total ==1">
  666. <span v-if="scope.row.child[index]!=null">{{getDrugCount(scope.row.child,item.advice_name)}}</span>
  667. <span v-if="item&&item.advice_name == '肝素钠注射剂'">
  668. {{getDrugAdviceCount(item.advice_name,scope.row.zone_name)}}
  669. </span>
  670. <span v-if="scope.row.child[index]==null && getDrugCount(scope.row.child,item.advice_name)>0">
  671. {{getDrugCount(scope.row.child,item.advice_name)}}
  672. <span v-if="item&&item.advice_name == '肝素钠注射剂'">
  673. {{getDrugAdviceCount(item.advice_name,scope.row.zone_name)}}
  674. </span>
  675. </span>
  676. </span>
  677. <span v-if="scope.row.is_total == 0">
  678. {{getAllSumCount(item.advice_name)}}
  679. </span>
  680. </template>
  681. </el-table-column>
  682. </el-table>
  683. </span>
  684. <span slot="footer" class="dialog-footer">
  685. <el-button @click="startdialogVisibleOne = false">取 消</el-button>
  686. <el-button type="primary" @click="startdialogVisibleOne = false">确 定</el-button>
  687. </span>
  688. </el-dialog>
  689. <!-- 耗材统计表 -->
  690. <el-dialog
  691. title="耗材统计表"
  692. :visible.sync="startdialogVisibleTwo"
  693. width="60%">
  694. <span>
  695. <div class="eldialog" style="margin-bottom:10px">
  696. <div>
  697. <label class="title"> <span class="name">排班班次</span> : </label>
  698. <el-select v-model="schedule_type" placeholder="请选择"
  699. @change="changeScheduleTypeTwo" style="width: 120px;">
  700. <el-option
  701. v-for="item in schedulArr"
  702. :key="item.value"
  703. :label="item.label"
  704. :value="item.value">
  705. </el-option>
  706. </el-select>
  707. <label class="title"> <span class="name">病区选择</span> : </label>
  708. <el-select v-model="partion_type" placeholder="请选择"
  709. @change="changePartionTypeTwo" multiple style="width: 120px;">
  710. <el-option
  711. v-for="item in partitionArr"
  712. :key="item.id"
  713. :label="item.name"
  714. :value="item.id">
  715. </el-option>
  716. </el-select>
  717. </div>
  718. <div>
  719. <el-button size="small" icon="el-icon-printer" @click="toPrintThree" type="primary">打印</el-button>
  720. <el-button size="small" @click="toExportListTwo" type="primary">导出</el-button>
  721. </div>
  722. </div>
  723. <el-table
  724. :data="tableProjectList"
  725. border
  726. :row-style="{ color: '#303133' }"
  727. :header-cell-style="{
  728. backgroundColor: 'rgb(245, 247, 250)',
  729. color: '#606266'
  730. }"
  731. >
  732. <el-table-column align="center" label="序号">
  733. <template slot-scope="scope">
  734. {{scope.$index+1}}
  735. </template>
  736. </el-table-column>
  737. <el-table-column align="center" label="耗材名称">
  738. <template slot-scope="scope">
  739. {{scope.row.good_name}}
  740. </template>
  741. </el-table-column>
  742. <el-table-column align="center" label="规格">
  743. <template slot-scope="scope">
  744. {{scope.row.specification_name}}
  745. </template>
  746. </el-table-column>
  747. <el-table-column align="center" label="数量">
  748. <template slot-scope="scope">
  749. {{scope.row.count}}
  750. </template>
  751. </el-table-column>
  752. </el-table>
  753. </span>
  754. <span slot="footer" class="dialog-footer">
  755. <el-button @click="startdialogVisibleTwo = false">取 消</el-button>
  756. <el-button type="primary" @click="startdialogVisibleTwo = false">确 定</el-button>
  757. </span>
  758. </el-dialog>
  759. <!-- 药品月统计表 -->
  760. <el-dialog
  761. title="药品月统计表"
  762. :visible.sync="startMothdialogVisible"
  763. width="60%">
  764. <span>
  765. <div class="eldialog" style="margin-bottom:10px">
  766. <div>
  767. <label class="title"> <span class="name">日期查询</span> : </label>
  768. <el-date-picker
  769. v-model="start_time"
  770. prefix-icon="el-icon-date"
  771. :editable="false"
  772. style="width: 150px;"
  773. type="date"
  774. placeholder="选择日期时间"
  775. align="right"
  776. format="yyyy-MM-dd"
  777. value-format="yyyy-MM-dd"
  778. ></el-date-picker>
  779. <span>-</span>
  780. <el-date-picker
  781. v-model="end_time"
  782. prefix-icon="el-icon-date"
  783. :editable="false"
  784. style="width: 150px;"
  785. type="date"
  786. placeholder="选择日期时间"
  787. align="right"
  788. format="yyyy-MM-dd"
  789. value-format="yyyy-MM-dd"
  790. ></el-date-picker>
  791. </div>
  792. <div>
  793. <el-button size="small" @click="getAllQuery" type="primary">查询</el-button>
  794. <el-button size="small" icon="el-icon-printer" @click="toPrintTen" type="primary">打印</el-button>
  795. <el-button size="small" @click="toExportListThree" type="primary">导出</el-button>
  796. </div>
  797. </div>
  798. <el-table
  799. :data="tableMonthList"
  800. border
  801. :row-style="{ color: '#303133' }"
  802. :header-cell-style="{
  803. backgroundColor: 'rgb(245, 247, 250)',
  804. color: '#606266'
  805. }"
  806. >
  807. <el-table-column align="center" label="序号">
  808. <template slot-scope="scope">
  809. {{scope.$index+1}}
  810. </template>
  811. </el-table-column>
  812. <el-table-column align="center" label="药品名称">
  813. <template slot-scope="scope">
  814. {{scope.row.advice_name}}
  815. </template>
  816. </el-table-column>
  817. <el-table-column align="center" label="规格">
  818. <template slot-scope="scope">
  819. {{scope.row.specification_name}}
  820. </template>
  821. </el-table-column>
  822. <el-table-column align="center" label="数量">
  823. <template slot-scope="scope">
  824. <span v-if="config.is_open!=1">{{getCount(scope.row.child)}}</span>
  825. <span v-if="config.is_open ==1">{{getHisCount(scope.row.child,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
  826. </template>
  827. </el-table-column>
  828. <el-table-column align="center" label="厂家">
  829. <template slot-scope="scope">
  830. {{scope.row.manufacturer_name}}
  831. </template>
  832. </el-table-column>
  833. </el-table>
  834. </span>
  835. <span slot="footer" class="dialog-footer">
  836. <el-button @click="startMothdialogVisible = false">取 消</el-button>
  837. <el-button type="primary" @click="startMothdialogVisible = false">确 定</el-button>
  838. </span>
  839. </el-dialog>
  840. <!-- 耗材统计表 -->
  841. <el-dialog
  842. title="耗材统计表"
  843. :visible.sync="startMonthdialogVisible"
  844. width="60%">
  845. <span>
  846. <div class="eldialog" style="margin-bottom:10px">
  847. <div>
  848. <label class="title"> <span class="name">日期查询</span> : </label>
  849. <el-date-picker
  850. v-model="start_time"
  851. prefix-icon="el-icon-date"
  852. :editable="false"
  853. style="width: 150px;"
  854. type="date"
  855. placeholder="选择日期时间"
  856. align="right"
  857. format="yyyy-MM-dd"
  858. value-format="yyyy-MM-dd"
  859. ></el-date-picker>
  860. <span>-</span>
  861. <el-date-picker
  862. v-model="end_time"
  863. prefix-icon="el-icon-date"
  864. :editable="false"
  865. style="width: 150px;"
  866. type="date"
  867. placeholder="选择日期时间"
  868. align="right"
  869. format="yyyy-MM-dd"
  870. value-format="yyyy-MM-dd"
  871. ></el-date-picker>
  872. </div>
  873. <div>
  874. <el-button size="small" @click="getGoodAllQuery" type="primary">查询</el-button>
  875. <el-button size="small" icon="el-icon-printer" @click="toExportListFour" type="primary">打印</el-button>
  876. <el-button size="small" @click="toExportListFour" type="primary">导出</el-button>
  877. </div>
  878. </div>
  879. <el-table
  880. :data="tableProjectList"
  881. border
  882. :row-style="{ color: '#303133' }"
  883. :header-cell-style="{
  884. backgroundColor: 'rgb(245, 247, 250)',
  885. color: '#606266'
  886. }"
  887. >
  888. <el-table-column align="center" label="序号">
  889. <template slot-scope="scope">
  890. {{scope.$index+1}}
  891. </template>
  892. </el-table-column>
  893. <el-table-column align="center" label="耗材名称">
  894. <template slot-scope="scope">
  895. {{scope.row.good_name}}
  896. </template>
  897. </el-table-column>
  898. <el-table-column align="center" label="规格">
  899. <template slot-scope="scope">
  900. {{scope.row.specification_name}}
  901. </template>
  902. </el-table-column>
  903. <el-table-column align="center" label="数量">
  904. <template slot-scope="scope">
  905. {{scope.row.count}}
  906. </template>
  907. </el-table-column>
  908. </el-table>
  909. </span>
  910. <span slot="footer" class="dialog-footer">
  911. <el-button @click="startMonthdialogVisible = false">取 消</el-button>
  912. <el-button type="primary" @click="startMonthdialogVisible = false">确 定</el-button>
  913. </span>
  914. </el-dialog>
  915. </div>
  916. </div>
  917. </template>
  918. <script>
  919. const moment = require('moment')
  920. import { getSchedualPatient, GetAllZone,getDialysisAdviceToday,getDialysisProject } from "@/api/dialysis";
  921. import { parseTime } from "@/utils";
  922. import { uParseTime } from '@/utils/tools'
  923. import BreadCrumb from "@/xt_pages/components/bread-crumb";
  924. import { getPrintTemplate } from "@/api/data";
  925. import { getNewSchedualDoctors,excutionDoctorAdvice,checkNewDoctorAdvice,settleNewDoctorAdvice,excutionDoctorAdviceById,GetMobileScheduleList,getDoctorAdviceMonthList,getHisPrescrptionProjectMonthList } from '@/api/advice'
  926. import { PostSearch } from '@/api/patient'
  927. export default {
  928. name: "Patient",
  929. data() {
  930. return {
  931. crumbs: [
  932. { path: false, name: "透析管理" },
  933. { path: false, name: "透析监测" }
  934. ],
  935. loading: false,
  936. time: "",
  937. search_mode: 1, // 搜索模式 1.日期搜索 2.病人搜索
  938. patient_search_keyword: "",
  939. SchedualPatientsTableData: [],
  940. active: true,
  941. schedulType: 0,
  942. schedulArr: [
  943. { value: 0, label: "全部" },
  944. { value: 1, label: "上午" },
  945. { value: 2, label: "下午" },
  946. { value: 3, label: "晚上" }
  947. ],
  948. template_id: 0,
  949. partitionType: 0,
  950. costType:0,
  951. total: 0,
  952. listQuery: {
  953. page: 1,
  954. limit: 10,
  955. schedul_type: 0,
  956. partition_type: 0,
  957. schedul_time: "",
  958. keywords: "",
  959. },
  960. selecting_schs: [],
  961. partitionArr: [],
  962. scheduleMap:[],
  963. show:true,
  964. showOne:false,
  965. deliveryWay:[],
  966. executionList:[
  967. {id:0,name:"全部"},
  968. {id:1,name:"已执行"},
  969. {id:2,name:"未执行"},
  970. ],
  971. delivery_way:0,
  972. patient_id:0,
  973. org_id:0,
  974. excution_way:0,
  975. options:[
  976. {id:0,name:"请选择"},
  977. {id:1,name:"按床位排序"},
  978. {id:2,name:"按签到时间排序"},
  979. ],
  980. costArr:[
  981. {id:0,name:"全部"},
  982. {id:1,name:"已收费"},
  983. {id:2,name:"未收费"}
  984. ],
  985. sort:0,
  986. config:{},
  987. execTime: '',
  988. execTimeDialogVisible:false,
  989. exceLoading:false,
  990. is_sort:0,
  991. hoverOrderArr:[],
  992. is_status:0,
  993. execTimeDialogVisibleOne:false,
  994. current_row:{},
  995. tableList:[],
  996. startdialogVisible:false,
  997. startdialogVisibleOne:false,
  998. startdialogVisibleTwo:false,
  999. startMonthdialogVisible:false,
  1000. schedule_type:0,
  1001. partion_type:0,
  1002. druglist:[],
  1003. config:{},
  1004. tabHead:[],
  1005. tableDataList:[],
  1006. adminUserList:[],
  1007. doctorMap:[],
  1008. excutList:[],
  1009. execution_frequency:"",
  1010. zoneIdList:[],
  1011. partion_str:"",
  1012. keyword:"",
  1013. tableProjectList:[],
  1014. manufacturerList:[],
  1015. start_time: moment().startOf('month').format('YYYY-MM-DD'),
  1016. end_time: moment().endOf('month').format('YYYY-MM-DD'),
  1017. startMothdialogVisible:false,
  1018. adviceMonthList:[],
  1019. hisAdviceMonthList:[],
  1020. tableMonthList:[]
  1021. };
  1022. },
  1023. created() {
  1024. var date = new Date();
  1025. this.time = date;
  1026. var year = date.getFullYear();
  1027. var month = date.getMonth() + 1;
  1028. var day = date.getDate();
  1029. if (month < 10) {
  1030. month = "0" + month;
  1031. }
  1032. if (day < 10) {
  1033. day = "0" + day;
  1034. }
  1035. var nowDate = year + "-" + month + "-" + day;
  1036. var date = new Date(nowDate + " 00:00:00");
  1037. this.listQuery.schedul_time = date.getTime();
  1038. this.getAllZone();
  1039. this.getTemplateInfo();
  1040. this.requestSchedualDoctors(this.time)
  1041. this.org_id = this.$store.getters.xt_user.template_info.org_id;
  1042. },
  1043. methods: {
  1044. getTemplateInfo() {
  1045. getPrintTemplate().then(response => {
  1046. if (response.data.state == 0) {
  1047. this.$message.error(response.data.msg);
  1048. return false;
  1049. } else {
  1050. var template = response.data.data.template;
  1051. this.template_id = template.template_id;
  1052. }
  1053. });
  1054. },
  1055. clickCurrent(val) {
  1056. //console.log(val);
  1057. this.$router.push({
  1058. path: "/dialysis/details",
  1059. query: { patient_id: val.patient_id, date: val.sch_time_int,mode_id:val.mode_id }
  1060. });
  1061. },
  1062. selectSchedulType(scheduleType) {
  1063. this.schedulType = scheduleType;
  1064. this.listQuery.schedul_type = scheduleType;
  1065. this.requestSchedualDoctors(this.time);
  1066. },
  1067. selectPartitionType(partitionType) {
  1068. this.partitionType = partitionType;
  1069. this.listQuery.partition_type = partitionType;
  1070. this.requestSchedualDoctors(this.time);
  1071. },
  1072. selectCostType(costType){
  1073. this.costType = costType
  1074. this.requestSchedualDoctors(this.time);
  1075. },
  1076. selectDeliveryWay(val){
  1077. this.delivery_way = val
  1078. this.requestSchedualDoctors(this.time)
  1079. },
  1080. selectFrequencyWay(val){
  1081. this.execution_frequency = val
  1082. this.requestSchedualDoctors(this.time)
  1083. },
  1084. selectExcutionWay(val){
  1085. this.excution_way = val
  1086. this.requestSchedualDoctors(this.time)
  1087. },
  1088. changeTime() {
  1089. this.listQuery.schedul_time = this.time;
  1090. this.requestSchedualDoctors(this.time)
  1091. },
  1092. getAllZone: function() {
  1093. GetAllZone().then(response => {
  1094. if (response.data.state == 0) {
  1095. this.$message.error(response.data.msg);
  1096. return false;
  1097. } else {
  1098. this.partitionArr = response.data.data.zone;
  1099. for(let i=0;i<this.partitionArr.length;i++){
  1100. this.zoneIdList.push(this.partitionArr[i].id)
  1101. }
  1102. // this.partitionArr.unshift({ id: 0, name: "全部" });
  1103. var dics = response.data.data.dics
  1104. var obj = {id:0,name:"全部"}
  1105. this.deliveryWay.push(obj)
  1106. this.deliveryWay.push(...dics)
  1107. var objOne = {id:0,name:"全部"}
  1108. this.excutList.push(objOne)
  1109. var efs = response.data.data.efs
  1110. this.excutList.push(...efs)
  1111. console.log("执行瓶绿",this.excutList)
  1112. }
  1113. });
  1114. },
  1115. requestSchedualDoctors (time) {
  1116. var name = ""
  1117. for(let i=0;i<this.deliveryWay.length;i++){
  1118. if(this.delivery_way == this.deliveryWay[i].id){
  1119. name = this.deliveryWay[i].name
  1120. }
  1121. }
  1122. if(name == '全部'){
  1123. name = ""
  1124. }
  1125. var nameOne = ""
  1126. for(let i=0;i<this.excutList.length;i++){
  1127. if(this.execution_frequency == this.excutList[i].id){
  1128. nameOne = this.excutList[i].name
  1129. }
  1130. }
  1131. if(nameOne == '全部'){
  1132. nameOne = ""
  1133. }
  1134. let newTime = moment(time).format('YYYY-MM-DD')
  1135. var schedule_type = this.listQuery.schedul_type
  1136. var partition_type = this.listQuery.partition_type
  1137. getNewSchedualDoctors({date: newTime,patient_type: 0,advice_type: 2,delivery_way:name,schedule_type:schedule_type,partition_type:partition_type,patient_id:this.patient_id,excution_way:this.excution_way,cost_type:this.costType,execution_frequency:nameOne,keyword:this.keyword}).then(rs => {
  1138. var resp = rs.data
  1139. if (resp.state == 1) {
  1140. this.admin_users = resp.data.adminUser
  1141. var config = resp.data.config
  1142. this.config = config
  1143. let project_config = resp.data.project_config
  1144. if(project_config.is_open == 1){
  1145. this.project = resp.data.project
  1146. console.log("wode 2o2o3o3o23o32o32o23o32o32o", this.project)
  1147. let projectArr = []
  1148. if(this.org_id!= 10318 && this.org_id!=10265){
  1149. this.project.map(item => {
  1150. resp.data.hisAdvices.map(it => {
  1151. if(item.patient_id == it.patient_id){
  1152. projectArr.push(item)
  1153. }
  1154. })
  1155. })
  1156. console.log("projectArr2332323232323232",projectArr)
  1157. resp.data.hisAdvices.map((item,index) => {
  1158. if(projectArr[index].project && projectArr[index].project.length > 0){
  1159. projectArr[index].project.map(it => {
  1160. let obj = {
  1161. advice_doctor: it.doctor,
  1162. start_time:it.start_time,
  1163. advice_name:it.team_id > 0 && it.is_check_team == 1 ? it.team.project_team : it.type == 2 ? it.project.project_name+' '+it.count + it.project.unit : it.good_info.good_name +' '+it.count+ it.good_info.packing_unit,
  1164. execution_time:it.execution_time,
  1165. execution_state:it.execution_state,
  1166. execution_staff:it.execution_staff,
  1167. check_time:it.check_time,
  1168. check_state:it.check_state,
  1169. checker:it.checker,
  1170. created_time:it.ctime,
  1171. delivery_way:'',
  1172. execution_frequency:'',
  1173. remark:'',
  1174. id:it.id,
  1175. patient_id:it.patient_id,
  1176. parent_id:0,
  1177. groupno:0,
  1178. sort:item.device_number.sort,
  1179. assess_time:item.dialysisassesmentbefor&&item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1180. }
  1181. item.doctor_advice.push(obj)
  1182. })
  1183. }
  1184. })
  1185. console.log("中国人民名份反反复复方法 ",resp.data.hisAdvices)
  1186. }
  1187. }
  1188. if(config.is_open == 0 || config.is_open == 2){
  1189. var schedules = resp.data.scheduals
  1190. var newList = []
  1191. if(this.is_sort == 0){
  1192. newList = schedules
  1193. }
  1194. if(this.is_sort == 0 || this.is_sort == 1){
  1195. schedules.map(item => {
  1196. item.is_sort = item.device_number.sort
  1197. item.assess_time = item.dialysisassesmentbefor&&item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1198. })
  1199. newList = schedules.sort(this.compare('is_sort'))
  1200. }
  1201. if(this.is_sort == 2){
  1202. schedules.map(item => {
  1203. item.is_sort = item.device_number.sort
  1204. item.assess_time = item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1205. })
  1206. newList = schedules.sort(this.compare('assess_time'))
  1207. }
  1208. this.show = true
  1209. this.showOne = false
  1210. let arr = []
  1211. let newArr = []
  1212. let newSchedules = []
  1213. newList.map(item => {
  1214. item.doctor_advice.map(it =>{
  1215. it.name = item.patient.name
  1216. if(item.prescription != null){
  1217. it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
  1218. it.dialysis_dialyszers = item.prescription.dialysis_dialyszers
  1219. it.dialysis_irrigation = item.prescription.dialysis_irrigation
  1220. it.anticoagulant = item.prescription.anticoagulant
  1221. }
  1222. it.schedule_type = item.schedule_type
  1223. it.zoneId = item.device_number.zone.id
  1224. it.dialysis_no = item.patient.dialysis_no
  1225. it.mode_id = item.mode_id
  1226. it.number = item.device_number.number
  1227. it.zone_name = item.device_number.zone.name
  1228. it.sort = item.device_number.sort,
  1229. arr.push(it)
  1230. })
  1231. item.is_sort = item.device_number.sort
  1232. item.assess_time = item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1233. })
  1234. console.log("schedules9999999998888888888",schedules)
  1235. if(this.schedulType == 0){
  1236. newSchedules = arr
  1237. }else{
  1238. arr.map(item => {
  1239. if (item.schedule_type == this.schedulType) {
  1240. newSchedules.push(item)
  1241. }
  1242. })
  1243. }
  1244. if(this.partitionType == 0){
  1245. this.scheduleMap = newSchedules
  1246. }else {
  1247. let a = []
  1248. arr.map(item => {
  1249. if(this.partitionType == item.zoneId){
  1250. a.push(item)
  1251. }
  1252. })
  1253. this.scheduleMap = a
  1254. }
  1255. this.scheduleMap.map(ele => {
  1256. let firstIndex = this.scheduleMap.findIndex(item => {
  1257. return item.patient_id === ele.patient_id // 当category相同的时候,返回第一个相同的Index 赋值给 firstIndex
  1258. })
  1259. if (this.scheduleMap.findIndex(item => { return item.patient_id === firstIndex}) === -1) {
  1260. newArr.push({
  1261. length: this.scheduleMap.filter(item => {
  1262. return item.patient_id === ele.patient_id //利用数组的filter方法,过滤出相同category的数组的长度。数组长度-即为跨多少行
  1263. }).length,
  1264. firstIndex: firstIndex // firstIndex 返回的是第一个catergory就满足的第一个Index,即为rowIndex开始于第几行。
  1265. })
  1266. }
  1267. })
  1268. this.indexInfoList = newArr
  1269. console.log("this.scheduleMap", this.scheduleMap)
  1270. }
  1271. if(config.is_open == 1){
  1272. this.show = false
  1273. this.showOne = true
  1274. var schedules = resp.data.hisAdvices
  1275. let arr = []
  1276. let newArr = []
  1277. let newSchedules = []
  1278. var newList = []
  1279. if(this.is_sort == 0){
  1280. newList = schedules
  1281. }
  1282. if(this.is_sort == 1){
  1283. schedules.map(item => {
  1284. item.is_sort = item.device_number.sort
  1285. item.assess_time = item.dialysisassesmentbefor&&item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1286. })
  1287. newList = schedules.sort(this.compare('is_sort'))
  1288. }
  1289. if(this.is_sort == 2){
  1290. schedules.map(item => {
  1291. item.is_sort = item.device_number.sort
  1292. item.assess_time = item.dialysisassesmentbefor&&item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1293. })
  1294. newList = schedules.sort(this.compare('assess_time'))
  1295. }
  1296. newList.map(item => {
  1297. item.doctor_advice.map(it =>{
  1298. it.name = item.patient.name
  1299. if(item.prescription != null){
  1300. it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
  1301. it.dialysis_dialyszers = item.prescription.dialysis_dialyszers
  1302. it.dialysis_irrigation = item.prescription.dialysis_irrigation
  1303. it.anticoagulant = item.prescription.anticoagulant
  1304. }
  1305. it.schedule_type = item.schedule_type
  1306. it.zoneId = item.device_number.zone.id
  1307. it.dialysis_no = item.patient.dialysis_no
  1308. it.mode_id = item.mode_id
  1309. it.number = item.device_number.number
  1310. it.zone_name = item.device_number.zone.name
  1311. it.sort = item.device_number.sort,
  1312. arr.push(it)
  1313. })
  1314. item.is_sort = item.device_number.sort
  1315. item.assess_time = item.dialysisassesmentbefor&&item.dialysisassesmentbefor?item.dialysisassesmentbefor.created_time:"3753619200"
  1316. })
  1317. if(this.schedulType == 0){
  1318. newSchedules = arr
  1319. }else{
  1320. arr.map(item => {
  1321. if (item.schedule_type == this.schedulType) {
  1322. newSchedules.push(item)
  1323. }
  1324. })
  1325. }
  1326. if(this.partitionType == 0){
  1327. this.scheduleMap = newSchedules
  1328. }else {
  1329. let a = []
  1330. arr.map(item => {
  1331. if(this.partitionType == item.zoneId){
  1332. a.push(item)
  1333. }
  1334. })
  1335. this.scheduleMap = a
  1336. }
  1337. this.scheduleMap.map(ele => {
  1338. let firstIndex = this.scheduleMap.findIndex(item => {
  1339. return item.patient_id === ele.patient_id // 当category相同的时候,返回第一个相同的Index 赋值给 firstIndex
  1340. })
  1341. if (this.scheduleMap.findIndex(item => { return item.patient_id === firstIndex}) === -1) {
  1342. newArr.push({
  1343. length: this.scheduleMap.filter(item => {
  1344. return item.patient_id === ele.patient_id //利用数组的filter方法,过滤出相同category的数组的长度。数组长度-即为跨多少行
  1345. }).length,
  1346. firstIndex: firstIndex // firstIndex 返回的是第一个catergory就满足的第一个Index,即为rowIndex开始于第几行。
  1347. })
  1348. }
  1349. })
  1350. this.indexInfoList = newArr
  1351. }
  1352. }
  1353. })
  1354. },
  1355. compare:function (k) {
  1356. return function (a, b) {
  1357. var M = a[k];
  1358. var N = b[k];
  1359. return M - N; // 从低向高排
  1360. // return N - M; // 从高向低排
  1361. }
  1362. },
  1363. getValue: function(val) {
  1364. if (val != undefined) {
  1365. return val.value;
  1366. } else {
  1367. return "";
  1368. }
  1369. },
  1370. handleCurrentChange(val) {
  1371. this.listQuery.page = val;
  1372. this.getSchedualPatientList();
  1373. },
  1374. changeSearchMode: function() {
  1375. if (this.search_mode == 1) {
  1376. this.search_mode = 2;
  1377. } else {
  1378. this.search_mode = 1;
  1379. }
  1380. },
  1381. searchPatientAction: function() {
  1382. this.listQuery.keywords = this.patient_search_keyword;
  1383. console.log(this.patient_search_keyword);
  1384. if (this.patient_search_keyword.length == 0) {
  1385. return;
  1386. }
  1387. this.getSchedualPatientList();
  1388. },
  1389. handleSizeChange(val) {
  1390. this.listQuery.limit = val;
  1391. this.getSchedualPatientList();
  1392. },
  1393. batchPrintAction: function() {
  1394. if (this.selecting_schs.length === 0) {
  1395. this.$message.error("请至少选择一条需要打印的内容");
  1396. return false;
  1397. }
  1398. // 模板ID为6
  1399. var sch_ids = [];
  1400. for (let index = 0; index < this.selecting_schs.length; index++) {
  1401. sch_ids.push(this.selecting_schs[index].patient_id);
  1402. }
  1403. this.$store.dispatch("SetAdviceIDs", sch_ids);
  1404. var name = ""
  1405. for(let i=0;i<this.deliveryWay.length;i++){
  1406. if(this.delivery_way == this.deliveryWay[i].id){
  1407. name = this.deliveryWay[i].name
  1408. }
  1409. }
  1410. if(name == '全部'){
  1411. name = ""
  1412. }
  1413. if(this.org_id == 9671 || this.org_id == 10340 || this.org_id == 0){
  1414. this.$router.push({ path: "/dialysis/doctorAdvicePrint/one",query:{time: new Date(this.time).getTime(),delivery_way:name,excution_way:this.excution_way} });
  1415. }
  1416. if(this.org_id != 9671 && this.org_id != 10340 && this.org_id!=0){
  1417. this.$router.push({ path: "/dialysis/doctorAdvicePrint",query:{time: new Date(this.time).getTime(),delivery_way:name,excution_way:this.excution_way} });
  1418. }
  1419. },
  1420. signPrintAction:function(){
  1421. if (this.selecting_schs.length === 0) {
  1422. this.$message.error("请至少选择一条需要打印的内容");
  1423. return false;
  1424. }
  1425. // 模板ID为6
  1426. var sch_ids = [];
  1427. for (let index = 0; index < this.selecting_schs.length; index++) {
  1428. sch_ids.push(this.selecting_schs[index].patient_id);
  1429. }
  1430. this.$store.dispatch("SetAdviceIDs", sch_ids);
  1431. var name = ""
  1432. for(let i=0;i<this.deliveryWay.length;i++){
  1433. if(this.delivery_way == this.deliveryWay[i].id){
  1434. name = this.deliveryWay[i].name
  1435. }
  1436. }
  1437. if(name == '全部'){
  1438. name = ""
  1439. }
  1440. var nameOne = ""
  1441. for(let i=0;i<this.excutList.length;i++){
  1442. if(this.execution_frequency == this.excutList[i].id){
  1443. nameOne = this.excutList[i].name
  1444. }
  1445. }
  1446. if(nameOne == '全部'){
  1447. nameOne = ""
  1448. }
  1449. this.$router.push({ path: "/dialysis/signPrint",query:{time: new Date(this.time).getTime(),delivery_way:name,execution_frequency:nameOne,patient_id:this.patient_id,keyword:this.keyword,excution_way:this.excution_way} });
  1450. },
  1451. batchPrintActionOne: function() {
  1452. if (this.selecting_schs.length === 0) {
  1453. this.$message.error("请至少选择一条需要打印的内容");
  1454. return false;
  1455. }
  1456. var sch_ids = [];
  1457. for (let index = 0; index < this.selecting_schs.length; index++) {
  1458. sch_ids.push(this.selecting_schs[index].sch_id);
  1459. }
  1460. this.$store.dispatch("SetBatchPrintDialysisRecordIDs", sch_ids);
  1461. if (this.template_id == 2 || this.template_id == 0) {
  1462. this.$router.push({ path: "/dialysis/print/batch/otherone" });
  1463. } else if (this.template_id == 1) {
  1464. this.$router.push({ path: "/dialysis/print/batch" });
  1465. } else if (this.template_id == 5) {
  1466. this.$router.push({ path: "/dialysis/print/batch/fiveone" });
  1467. } else if (this.template_id == 22) {
  1468. this.$router.push({ path: "/dialysis/print/batch/twentyTwo_one" });
  1469. }
  1470. },
  1471. batchPrintActionTwo: function() {
  1472. if (this.selecting_schs.length === 0) {
  1473. this.$message.error("请至少选择一条需要打印的内容");
  1474. return false;
  1475. }
  1476. var sch_ids = [];
  1477. for (let index = 0; index < this.selecting_schs.length; index++) {
  1478. sch_ids.push(this.selecting_schs[index].sch_id);
  1479. }
  1480. this.$store.dispatch("SetBatchPrintDialysisRecordIDs", sch_ids);
  1481. if (this.template_id == 2 || this.template_id == 0) {
  1482. this.$router.push({ path: "/dialysis/print/batch/othertwo" });
  1483. } else if (this.template_id == 1) {
  1484. this.$router.push({ path: "/dialysis/print/batch" });
  1485. } else if (this.template_id == 5) {
  1486. this.$router.push({ path: "/dialysis/print/batch/fivetwo" });
  1487. } else if (this.template_id == 22) {
  1488. this.$router.push({ path: "/dialysis/print/batch/twentyTwo_two" });
  1489. }
  1490. },
  1491. compare (property) {
  1492. return function (a, b) {
  1493. var value1 = a[property]
  1494. var value2 = b[property]
  1495. return value1 - value2
  1496. }
  1497. },
  1498. // tableRowClassName({ row, rowIndex }) {
  1499. // if (row.stop_state == 1 || row.execution_state == 1) {
  1500. // return 'stoped-row';
  1501. // }
  1502. // return 'success-rows'
  1503. // row.index = rowIndex
  1504. // const arr = this.hoverOrderArr
  1505. // for (let i = 0; i < arr.length; i++) {
  1506. // if (rowIndex == arr[i]) {
  1507. // return 'success-row'
  1508. // }
  1509. // }
  1510. // },
  1511. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  1512. if (columnIndex === 0) {
  1513. let index = this.indexInfoList.findIndex(item => { //遍历数组
  1514. return item.firstIndex === rowIndex
  1515. })
  1516. if (index > -1) {
  1517. return {
  1518. rowspan: this.indexInfoList[index].length,
  1519. colspan: 1
  1520. }
  1521. } else {
  1522. return {
  1523. rowspan: 0,
  1524. colspan: 0
  1525. }
  1526. }
  1527. }
  1528. if (columnIndex === 1) {
  1529. let index = this.indexInfoList.findIndex(item => { //遍历数组
  1530. return item.firstIndex === rowIndex
  1531. })
  1532. if (index > -1) {
  1533. return {
  1534. rowspan: this.indexInfoList[index].length,
  1535. colspan: 1
  1536. }
  1537. } else {
  1538. return {
  1539. rowspan: 0,
  1540. colspan: 0
  1541. }
  1542. }
  1543. }
  1544. if (columnIndex === 2) {
  1545. let index = this.indexInfoList.findIndex(item => { //遍历数组
  1546. return item.firstIndex === rowIndex
  1547. })
  1548. if (index > -1) {
  1549. return {
  1550. rowspan: this.indexInfoList[index].length,
  1551. colspan: 1
  1552. }
  1553. } else {
  1554. return {
  1555. rowspan: 0,
  1556. colspan: 0
  1557. }
  1558. }
  1559. }
  1560. },
  1561. adviceNameShow({ row, column, rowIndex, columnIndex }) {
  1562. if (columnIndex == 2) {
  1563. return 'dialysisadvicenamedisplay'
  1564. } else {
  1565. return ''
  1566. }
  1567. },
  1568. getXuserName(id) {
  1569. if (id <= 0) {
  1570. return ''
  1571. }
  1572. var name = ''
  1573. if (
  1574. this.admin_users == null ||
  1575. typeof this.admin_users.length === 'undefined'
  1576. ) {
  1577. return name
  1578. }
  1579. var leng = this.admin_users.length
  1580. if (leng == 0) {
  1581. return name
  1582. }
  1583. for (let index = 0; index < leng; index++) {
  1584. if (this.admin_users[index].id == id) {
  1585. name = this.admin_users[index].name
  1586. break
  1587. }
  1588. }
  1589. return name
  1590. },
  1591. getAdviceContent(row, isChild) {
  1592. console.log("rwoo22222222222222333",row)
  1593. let tempSingleDoseDesc = ''
  1594. let tempDrugSpecDesc = ''
  1595. let tempPrescribingNumberDesc = ''
  1596. if (row.prescribing_number) {
  1597. tempPrescribingNumberDesc = row.prescribing_number + '' + row.prescribing_number_unit
  1598. }
  1599. if (row.single_dose) {
  1600. if (this.template_id != 6) {
  1601. tempSingleDoseDesc =' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
  1602. } else {
  1603. tempSingleDoseDesc = row.single_dose + row.single_dose_unit
  1604. }
  1605. }
  1606. if (row.advice_desc) {
  1607. tempDrugSpecDesc = '(' + row.advice_desc + row.drug_spec_unit + ')'
  1608. }
  1609. if (isChild == 1) {
  1610. // 不是子药
  1611. // console.log(tempDrugSpecDesc)
  1612. // console.log(tempPrescribingNumberDesc)
  1613. // console.log(tempSingleDoseDesc)
  1614. // console.log(11,row.delivery_way)
  1615. // console.log(22,row.execution_frequency)
  1616. return (row.advice_name + tempDrugSpecDesc + ' ' + tempPrescribingNumberDesc + tempSingleDoseDesc +' ' + row.delivery_way +' ' +row.execution_frequency)
  1617. } else {
  1618. // 是子药
  1619. return (row.advice_name +tempDrugSpecDesc +' ' + tempPrescribingNumberDesc + tempSingleDoseDesc)
  1620. }
  1621. },
  1622. handleSelectionChange(val){
  1623. this.selecting_schs = val;
  1624. this.is_status = 1
  1625. },
  1626. handleSelectionChangeOne(val){
  1627. this.selecting_schs = val;
  1628. this.is_status = 1
  1629. console.log("val32323323223",val)
  1630. },
  1631. querySearchAsync(keyword, cb) {
  1632. let key = '';
  1633. if (keyword != undefined) {
  1634. key = keyword
  1635. }
  1636. let searchArray = []
  1637. PostSearch(key).then(response => {
  1638. if (response.data.state == 1) {
  1639. searchArray = response.data.data.patient
  1640. console.log('searcharrya', searchArray)
  1641. cb(searchArray)
  1642. }
  1643. })
  1644. return searchArray
  1645. },
  1646. handleSelect(val) {
  1647. this.patient_id = val.id
  1648. this.listQuery.keyword = val.name
  1649. this.requestSchedualDoctors(this.time)
  1650. },
  1651. toSeach(){
  1652. this.patient_id = 0
  1653. this.requestSchedualDoctors(this.time)
  1654. },
  1655. toSeachOne(){
  1656. this.requestSchedualDoctors(this.time)
  1657. },
  1658. toExcution(){
  1659. if(this.selecting_schs.length ==0){
  1660. this.$message.error("请勾选需要执行的医嘱")
  1661. return false
  1662. }
  1663. console.log("hhhahhhahhh",this.is_status)
  1664. if(this.is_status == 1){
  1665. this.execTimeDialogVisible = true
  1666. }
  1667. if(this.is_status == 2){
  1668. this.execTimeDialogVisibleOne = true
  1669. }
  1670. },
  1671. excutionDoctorAdvice(){
  1672. if (this.execTime.length == 0) {
  1673. this.$message.error('请选择执行时间!')
  1674. return false
  1675. }
  1676. var execTime = Math.round(new Date(this.execTime).getTime() / 1000)
  1677. var ids=[]
  1678. if(this.selecting_schs!=null && this.selecting_schs.length >0){
  1679. for(let i=0;i<this.selecting_schs.length;i++){
  1680. ids.push(this.selecting_schs[i].patient_id)
  1681. }
  1682. }
  1683. var str = ids.join(",")
  1684. var params = {
  1685. str:str,
  1686. advice_date: moment(this.time).format('YYYY-MM-DD'),
  1687. is_open:this.config.is_open,
  1688. exec_time:execTime
  1689. }
  1690. console.log("params232322323wo",params)
  1691. this.exceLoading = true
  1692. excutionDoctorAdvice(params).then(response=>{
  1693. if(response.data.state == 1){
  1694. if(response.data.data.msg == 2){
  1695. var drug_name = response.data.data.drug.drug_name
  1696. var dose = response.data.data.drug.dose
  1697. var dose_unit = response.data.data.drug.dose_unit
  1698. var min_number = response.data.data.drug.min_number
  1699. var max_unit = response.data.data.drug.max_unit
  1700. var min_unit = response.data.data.drug.min_unit
  1701. var str = drug_name + " "+dose+dose_unit +"*"+min_number +max_unit +"/"+min_unit
  1702. this.$message.error(str +"库存不足,执行失败!")
  1703. this.exceLoading = false
  1704. this.execTimeDialogVisible = false
  1705. this.requestSchedualDoctors(this.time)
  1706. }
  1707. if(response.data.data.msg == 3){
  1708. this.$message.error("执行人和核对人不能是同一个人,执行失败!")
  1709. }
  1710. }
  1711. })
  1712. },
  1713. toCheck(){
  1714. if(this.selecting_schs.length ==0){
  1715. this.$message.error("请勾选需要执行的医嘱")
  1716. return false
  1717. }
  1718. var ids=[]
  1719. if(this.selecting_schs!=null && this.selecting_schs.length >0){
  1720. for(let i=0;i<this.selecting_schs.length;i++){
  1721. ids.push(this.selecting_schs[i].patient_id)
  1722. }
  1723. }
  1724. var str = ids.join(",")
  1725. var params = {
  1726. str:str,
  1727. advice_date: moment(this.time).format('YYYY-MM-DD'),
  1728. is_open:this.config.is_open,
  1729. }
  1730. checkNewDoctorAdvice(params).then(response=>{
  1731. if(response.data.state == 1){
  1732. if(response.data.data.msg == 2){
  1733. var advice = response.data.data.advice
  1734. this.$message.error(advice.advice_name +"执行人和核对人不能是同一个人,核对失败!")
  1735. this.requestSchedualDoctors(this.time)
  1736. }else{
  1737. this.$message.success("核对成功!")
  1738. this.requestSchedualDoctors(this.time)
  1739. }
  1740. }
  1741. })
  1742. },
  1743. toSettle(){
  1744. if(this.selecting_schs.length ==0){
  1745. this.$message.error("请勾选需要执行的医嘱")
  1746. return false
  1747. }
  1748. var ids=[]
  1749. if(this.selecting_schs!=null && this.selecting_schs.length >0){
  1750. for(let i=0;i<this.selecting_schs.length;i++){
  1751. ids.push(this.selecting_schs[i].patient_id)
  1752. }
  1753. }
  1754. var str = ids.join(",")
  1755. var params = {
  1756. str:str,
  1757. advice_date: moment(this.time).format('YYYY-MM-DD'),
  1758. is_open:this.config.is_open,
  1759. }
  1760. settleNewDoctorAdvice(params).then(response=>{
  1761. if(response.data.state == 1){
  1762. this.$message.success("收费成功!")
  1763. this.requestSchedualDoctors(this.time)
  1764. }
  1765. })
  1766. },
  1767. selectSortType(id){
  1768. this.is_sort = id
  1769. this.requestSchedualDoctors(this.time);
  1770. },
  1771. handleRowClick (row) {
  1772. },
  1773. tableRowClassName({row, rowIndex}) {
  1774. row.index = rowIndex
  1775. if(row.index = rowIndex){
  1776. return 'success-row'
  1777. }
  1778. },
  1779. handleCurrentChangeList(row){
  1780. this.selecting_schs.push(row)
  1781. this.current_row= row
  1782. this.is_status = 2
  1783. },
  1784. excutionDoctorAdviceOne(){
  1785. if(this.current_row.execution_state == 1){
  1786. this.$message.error("所选医嘱已核对,无需再核对!")
  1787. return false
  1788. }
  1789. if (this.execTime.length == 0) {
  1790. this.$message.error('请选择执行时间!')
  1791. return false
  1792. }
  1793. var execTime = Math.round(new Date(this.execTime).getTime() / 1000)
  1794. var params= {
  1795. advice_id:this.current_row.id,
  1796. advice_date: moment(this.time).format('YYYY-MM-DD'),
  1797. exec_time:execTime,
  1798. }
  1799. excutionDoctorAdviceById(params).then(response=>{
  1800. if(response.data.state == 1){
  1801. if(response.data.data.msg == 2){
  1802. var drug_name = response.data.data.drug.drug_name
  1803. var dose = response.data.data.drug.dose
  1804. var dose_unit = response.data.data.drug.dose_unit
  1805. var min_number = response.data.data.drug.min_number
  1806. var max_unit = response.data.data.drug.max_unit
  1807. var min_unit = response.data.data.drug.min_unit
  1808. var str = drug_name + " "+dose+dose_unit +"*"+min_number +max_unit +"/"+min_unit
  1809. this.$message.error(str +"库存不足,执行失败!")
  1810. this.exceLoading = false
  1811. this.execTimeDialogVisibleOne = false
  1812. this.requestSchedualDoctors(this.time)
  1813. }
  1814. if(response.data.data.msg == 1){
  1815. var msg = response.data.data.msg
  1816. this.$message.success("执行成功!")
  1817. this.exceLoading = false
  1818. this.execTimeDialogVisibleOne = false
  1819. this.requestSchedualDoctors(this.time)
  1820. }
  1821. if(response.data.data.msg == 3){
  1822. this.$message.error("执行人与核对人不能是同一个人,执行失败!")
  1823. }
  1824. }
  1825. })
  1826. },
  1827. toStatic() {
  1828. var str = ""
  1829. if(this.partion_type==0){
  1830. str = this.zoneIdList.join(",")
  1831. }
  1832. if(this.partion_type!=0){
  1833. str = this.partion_type.join(",")
  1834. }
  1835. this.partion_str = ""
  1836. this.partion_str = str
  1837. this.tableList = []
  1838. var params = {
  1839. schedule_type:this.schedule_type,
  1840. partion_type:str,
  1841. selected_date: moment(this.time).format('YYYY-MM-DD'),
  1842. }
  1843. console.log("params2332232wo",params)
  1844. getDialysisAdviceToday(params).then(response=>{
  1845. if(response.data.state == 1){
  1846. var doctorList = []
  1847. var druglist = response.data.data.drug
  1848. this.druglist = druglist
  1849. this.startdialogVisible = true
  1850. var list = response.data.data.list
  1851. var config = response.data.data.config
  1852. this.manufacturerList = response.data.data.manufacturerList
  1853. console.log("dcotor---------------",this.manufacturerList)
  1854. if(list!=null && list.length > 0){
  1855. for(let i=0;i<list.length;i++){
  1856. for(let j=0;j<list[i].xt_doctor_advice.length;j++){
  1857. doctorList.push(list[i].xt_doctor_advice[j])
  1858. }
  1859. }
  1860. }
  1861. if(config.is_open!=1){
  1862. if(doctorList!=null && doctorList.length > 0){
  1863. let dataInfo = {}
  1864. doctorList.forEach((item, index) => {
  1865. let { advice_name } = item
  1866. if (!dataInfo[advice_name]) {
  1867. dataInfo[advice_name] = {
  1868. advice_name:item.advice_name,
  1869. child: [],
  1870. count:0,
  1871. drug_id:item.drug_id,
  1872. specification_name:item.advice_desc +item.drug_spec_unit,
  1873. patient_id:item.patient_id,
  1874. delivery_way:"",
  1875. }
  1876. }
  1877. })
  1878. let arr = Object.values(dataInfo)
  1879. // console.log("arr23332323232",arr)
  1880. if(arr.length > 0){
  1881. for(let i=0;i<doctorList.length;i++){
  1882. for(let j=0;j<arr.length;j++){
  1883. if(doctorList[i].advice_name == arr[j].advice_name){
  1884. arr[j].child.push(doctorList[i])
  1885. }
  1886. }
  1887. }
  1888. }
  1889. this.tableList = []
  1890. for(let i=0;i<list.length;i++){
  1891. for(let j=0;j<arr.length;j++){
  1892. if(list[i].patient_id == arr[j].patient_id){
  1893. this.tableList.push(arr[j])
  1894. }
  1895. }
  1896. }
  1897. }
  1898. }
  1899. var his_doctor_advice = []
  1900. for(let i=0;i<list.length;i++){
  1901. for(let j=0;j<list[i].his_doctor_advice.length;j++){
  1902. his_doctor_advice.push(list[i].his_doctor_advice[j])
  1903. }
  1904. }
  1905. console.log("his_doctor_advice",his_doctor_advice)
  1906. var newHisArr = []
  1907. for(let i=0;i<his_doctor_advice.length;i++){
  1908. his_doctor_advice[i].count_one = 0
  1909. if(his_doctor_advice[i].prescribing_number_unit == his_doctor_advice[i].drug.max_unit){
  1910. his_doctor_advice[i].prescribing_number = parseInt(his_doctor_advice[i].prescribing_number) * his_doctor_advice[i].drug.min_number
  1911. his_doctor_advice[i].count_one = parseInt(his_doctor_advice[i].prescribing_number) * his_doctor_advice[i].drug.min_number
  1912. }
  1913. }
  1914. for(let i=0;i<his_doctor_advice.length;i++){
  1915. for(let j=0;j<druglist.length;j++){
  1916. if(his_doctor_advice[i].drug_id == druglist[j].id){
  1917. newHisArr.push(his_doctor_advice[i])
  1918. }
  1919. }
  1920. }
  1921. console.log("下盘子3223323223",newHisArr)
  1922. if(config.is_open == 1){
  1923. if(newHisArr!=null && newHisArr.length > 0){
  1924. let dataInfoOne = {}
  1925. newHisArr.forEach((item, index) => {
  1926. let { drug_id } = item
  1927. if (!dataInfoOne[drug_id]) {
  1928. dataInfoOne[drug_id] = {
  1929. advice_name:item.advice_name,
  1930. child: [],
  1931. count:0,
  1932. specification_name:this.getSpecification(item.drug_id),
  1933. drug_id:item.drug_id,
  1934. patient_id:item.patient_id,
  1935. min_number:item.drug.min_number,
  1936. max_unit:item.drug.max_unit,
  1937. min_unit:item.drug.min_unit,
  1938. delivery_way:item.delivery_way,
  1939. manufacturer_name:this.getManufacturer(item.drug.manufacturer) ,
  1940. }
  1941. }
  1942. })
  1943. let hisarr = Object.values(dataInfoOne)
  1944. console.log("hisarr233232233232",hisarr)
  1945. if(hisarr.length > 0){
  1946. for(let i=0;i<newHisArr.length;i++){
  1947. for(let j=0;j<hisarr.length;j++){
  1948. if(newHisArr[i].drug_id == hisarr[j].drug_id){
  1949. hisarr[j].child.push(newHisArr[i])
  1950. }
  1951. }
  1952. }
  1953. }
  1954. if(this.org_id == 0 || this.org_id ==10644){
  1955. var newArr = []
  1956. var arr_one = []
  1957. for(let i=0;i<hisarr.length;i++){
  1958. if(hisarr[i].delivery_way.indexOf('口服')!=-1){
  1959. newArr.push(hisarr[i])
  1960. }
  1961. }
  1962. for(let i=0;i<hisarr.length;i++){
  1963. if(hisarr[i].delivery_way.indexOf('口服')==-1){
  1964. newArr.push(hisarr[i])
  1965. }
  1966. }
  1967. this.tableList = []
  1968. this.tableList = newArr
  1969. }else{
  1970. this.tableList = []
  1971. this.tableList = hisarr
  1972. }
  1973. }
  1974. }
  1975. }
  1976. })
  1977. },
  1978. arraySort(property) {
  1979. return function (a, b) {
  1980. var value1 = a[property];
  1981. var value2 = b[property];
  1982. return value1 - value2;
  1983. };
  1984. },
  1985. toStaticOne() {
  1986. var str = ""
  1987. if(this.partion_type==0){
  1988. str = this.zoneIdList.join(",")
  1989. }
  1990. if(this.partion_type!=0){
  1991. str = this.partion_type.join(",")
  1992. }
  1993. this.partion_str = ""
  1994. this.partion_str = str
  1995. this.tableList = []
  1996. var params = {
  1997. schedule_type:this.schedule_type,
  1998. partion_type:str,
  1999. selected_date: moment(this.time).format('YYYY-MM-DD'),
  2000. }
  2001. getDialysisAdviceToday(params).then(response=>{
  2002. if(response.data.state == 1){
  2003. var doctorList = []
  2004. var druglist = response.data.data.drug
  2005. this.druglist = druglist
  2006. this.startdialogVisibleOne = true
  2007. var list = response.data.data.list
  2008. var config = response.data.data.config
  2009. this.adminUserList = response.data.data.doctorList
  2010. if(list!=null && list.length > 0){
  2011. for(let i=0;i<list.length;i++){
  2012. for(let j=0;j<list[i].xt_doctor_advice.length;j++){
  2013. list[i].xt_doctor_advice[j].mode_id = list[i].mode_id
  2014. list[i].xt_doctor_advice[j].zone_name = list[i].device_number.zone.name
  2015. list[i].xt_doctor_advice[j].sort = list[i].device_number.zone.sort
  2016. doctorList.push(list[i].xt_doctor_advice[j])
  2017. }
  2018. }
  2019. }
  2020. if(config.is_open!=1){
  2021. if(doctorList!=null && doctorList.length > 0){
  2022. let dataInfo = {}
  2023. doctorList.forEach((item, index) => {
  2024. item.advice_name = item.advice_name.replace(/\s/g,"")
  2025. let { advice_name } = item
  2026. if (!dataInfo[advice_name]) {
  2027. dataInfo[advice_name] = {
  2028. advice_name:item.advice_name,
  2029. child: [],
  2030. count:0,
  2031. execution_staff:item.execution_staff,
  2032. specification_name:item.advice_desc +item.drug_spec_unit,
  2033. patient_id:item.patient_id,
  2034. }
  2035. }
  2036. })
  2037. let arr = Object.values(dataInfo)
  2038. for(let i=0;i<arr.length;i++){
  2039. for(let j=0;j<doctorList.length;j++){
  2040. if(arr[i].advice_name == doctorList[j].advice_name){
  2041. arr[i].child.push(doctorList[j])
  2042. }
  2043. }
  2044. }
  2045. this.tabHead = arr
  2046. console.log("tabHead",this.tabHead)
  2047. }
  2048. this.doctorMap = []
  2049. if(doctorList!=null && doctorList.length > 0){
  2050. let dataInfoOne = {}
  2051. doctorList.forEach((item, index) => {
  2052. if(item.advice_name == "肝素钠注射剂"){
  2053. this.doctorMap.push(item)
  2054. }
  2055. let { zone_name } = item
  2056. if (!dataInfoOne[zone_name]) {
  2057. dataInfoOne[zone_name] = {
  2058. zone_name:item.zone_name,
  2059. child: [],
  2060. count:0,
  2061. sort:item.sort,
  2062. }
  2063. }
  2064. })
  2065. let newArr = Object.values(dataInfoOne)
  2066. if(newArr!=null && newArr.length >0){
  2067. for(let i=0;i<newArr.length;i++){
  2068. for(let j=0;j<doctorList.length;j++){
  2069. if(newArr[i].zone_name == doctorList[j].zone_name){
  2070. newArr[i].child.push(doctorList[j])
  2071. }
  2072. }
  2073. }
  2074. }
  2075. var newList = newArr.sort(this.compareList('sort'))
  2076. if(newList!=null && newList.length >0){
  2077. for(let i=0;i<newList.length;i++){
  2078. newList[i].is_total = 1
  2079. }
  2080. }
  2081. var obj = {is_total:0,count:0,execution_staff:0,child:[],zone_name:""}
  2082. newList.push(obj)
  2083. this.tableDataList = newList
  2084. console.log("999999999999999999-------",this.tableDataList)
  2085. }
  2086. }
  2087. }
  2088. })
  2089. },
  2090. toStaticTwo(){
  2091. var str = ""
  2092. if(this.partion_type==0){
  2093. str = this.zoneIdList.join(",")
  2094. }
  2095. if(this.partion_type!=0){
  2096. str = this.partion_type.join(",")
  2097. }
  2098. this.partion_str = ""
  2099. this.partion_str = str
  2100. this.tableList = []
  2101. var params = {
  2102. schedule_type:this.schedule_type,
  2103. partion_type:str,
  2104. selected_date: moment(this.time).format('YYYY-MM-DD'),
  2105. }
  2106. getDialysisProject(params).then(response=>{
  2107. if(response.data.state ==1){
  2108. var list = response.data.data.list
  2109. var newArr = []
  2110. if(list!=null && list.length>0){
  2111. for(let i=0;i<list.length;i++){
  2112. for(let j=0;j<list[i].his_doctor_project.length;j++){
  2113. newArr.push(list[i].his_doctor_project[j])
  2114. }
  2115. }
  2116. }
  2117. let dataInfo = {}
  2118. newArr.forEach((item, index) => {
  2119. let { project_id } = item
  2120. if (!dataInfo[project_id]) {
  2121. dataInfo[project_id] = {
  2122. project_id:item.project_id,
  2123. good_name:item.good.good_name,
  2124. specification_name:item.good.specification_name,
  2125. child: [],
  2126. count:0,
  2127. }
  2128. }
  2129. })
  2130. let arr = Object.values(dataInfo)
  2131. if(arr!=null && arr.length >0){
  2132. for(let i =0;i<arr.length;i++){
  2133. for(let j=0;j<newArr.length;j++){
  2134. if(arr[i].project_id == newArr[j].project_id){
  2135. arr[i].child.push(newArr[j])
  2136. }
  2137. }
  2138. }
  2139. for(let i =0;i<arr.length;i++){
  2140. for(let j=0;j<arr[i].child.length;j++){
  2141. arr[i].count += parseInt(arr[i].child[j].count)
  2142. }
  2143. }
  2144. console.log("arr0000000000000000000000",arr)
  2145. this.startdialogVisibleTwo = true
  2146. this.tableProjectList = []
  2147. this.tableProjectList = arr
  2148. }
  2149. }
  2150. })
  2151. },
  2152. getAllQuery(){
  2153. this.toStaticThree()
  2154. },
  2155. toStaticThree(){
  2156. var params = {
  2157. start_time:this.start_time,
  2158. end_time:this.end_time
  2159. }
  2160. this.startMothdialogVisible = true
  2161. getDoctorAdviceMonthList(params).then(response=>{
  2162. if(response.data.state == 1){
  2163. this.startMothdialogVisible = true
  2164. var config = response.data.data.config
  2165. this.config = {}
  2166. this.config = config
  2167. var drugs = response.data.data.drugs
  2168. this.druglist = []
  2169. this.druglist = drugs
  2170. var manufacturerList = response.data.data.manufacturerList
  2171. this.manufacturerList = []
  2172. this.manufacturerList = manufacturerList
  2173. var adviceMonthList = response.data.data.adviceList
  2174. var hisAdviceMonthList = response.data.data.hisAdviceList
  2175. for(let i=0;i<hisAdviceMonthList.length;i++){
  2176. hisAdviceMonthList[i].count_one = 0
  2177. if(hisAdviceMonthList[i].prescribing_number_unit == hisAdviceMonthList[i].drug.max_unit){
  2178. hisAdviceMonthList[i].prescribing_number = parseInt(hisAdviceMonthList[i].prescribing_number) * hisAdviceMonthList[i].drug.min_number
  2179. hisAdviceMonthList[i].count_one = parseInt(hisAdviceMonthList[i].prescribing_number) * hisAdviceMonthList[i].drug.min_number
  2180. }
  2181. }
  2182. if(config.is_open == 1){
  2183. if(hisAdviceMonthList!=null && hisAdviceMonthList.length>0){
  2184. let dataInfo = {}
  2185. hisAdviceMonthList.forEach((item, index) => {
  2186. let { drug_id } = item
  2187. if (!dataInfo[drug_id]) {
  2188. dataInfo[drug_id] = {
  2189. drug_id:item.drug_id,
  2190. advice_name:item.advice_name,
  2191. manufacturer_name:this.getManufacturer(item.drug.manufacturer),
  2192. specification_name:item.drug.dose + item.drug.dose_unit +"*"+item.drug.min_number+item.drug.min_unit+"/"+item.drug.max_unit,
  2193. max_unit:item.drug.max_unit,
  2194. min_unit:item.drug.min_unit,
  2195. min_number:item.drug.min_number,
  2196. child: [],
  2197. }
  2198. }
  2199. })
  2200. let newArr = Object.values(dataInfo)
  2201. console.log("newArr----------------",newArr)
  2202. if(newArr!=null && newArr.length>0){
  2203. for(let i=0;i<newArr.length;i++){
  2204. for(let j=0;j<hisAdviceMonthList.length;j++){
  2205. if(newArr[i].drug_id == hisAdviceMonthList[j].drug_id){
  2206. newArr[i].child.push(hisAdviceMonthList[j])
  2207. }
  2208. }
  2209. }
  2210. }
  2211. this.tableMonthList = []
  2212. this.tableMonthList = newArr
  2213. }
  2214. }
  2215. if(config.is_open == 2 || config.is_open ==0){
  2216. if(adviceMonthList!=null && adviceMonthList.length>0){
  2217. if(adviceMonthList!=null && adviceMonthList.length > 0){
  2218. let dataInfo = {}
  2219. adviceMonthList.forEach((item, index) => {
  2220. item.advice_name = item.advice_name.replace(/\s/g,"")
  2221. let { advice_name } = item
  2222. if (!dataInfo[advice_name]) {
  2223. dataInfo[advice_name] = {
  2224. advice_name:item.advice_name,
  2225. child: [],
  2226. count:0,
  2227. specification_name:item.advice_desc +item.drug_spec_unit,
  2228. manufacturer_name:""
  2229. }
  2230. }
  2231. })
  2232. let arr = Object.values(dataInfo)
  2233. for(let i=0;i<arr.length;i++){
  2234. for(let j=0;j<adviceMonthList.length;j++){
  2235. if(arr[i].advice_name == adviceMonthList[j].advice_name){
  2236. arr[i].child.push(adviceMonthList[j])
  2237. }
  2238. }
  2239. }
  2240. this.tableMonthList = []
  2241. this.tableMonthList = arr
  2242. console.log("hhhhhhhhhhhhhh",this.tableMonthList)
  2243. }
  2244. }
  2245. }
  2246. }
  2247. })
  2248. console.log("params-=----",params)
  2249. },
  2250. toStaticFour(){
  2251. var params = {
  2252. start_time:this.start_time,
  2253. end_time:this.end_time
  2254. }
  2255. getHisPrescrptionProjectMonthList(params).then(response=>{
  2256. if(response.data.state ==1){
  2257. var projectMonthList = response.data.data.projectMonthList
  2258. console.log("projectMonthList",projectMonthList)
  2259. if(projectMonthList!=null && projectMonthList.length>0){
  2260. let dataInfo = {}
  2261. projectMonthList.forEach((item, index) => {
  2262. let { project_id } = item
  2263. if (!dataInfo[project_id]) {
  2264. dataInfo[project_id] = {
  2265. project_id:item.project_id,
  2266. good_name:item.good_info.good_name,
  2267. specification_name:item.good_info.specification_name,
  2268. child: [],
  2269. count:0,
  2270. }
  2271. }
  2272. })
  2273. let arr = Object.values(dataInfo)
  2274. if(arr!=null && arr.length >0){
  2275. for(let i =0;i<arr.length;i++){
  2276. for(let j=0;j<projectMonthList.length;j++){
  2277. if(arr[i].project_id == projectMonthList[j].project_id){
  2278. arr[i].child.push(projectMonthList[j])
  2279. }
  2280. }
  2281. }
  2282. for(let i =0;i<arr.length;i++){
  2283. for(let j=0;j<arr[i].child.length;j++){
  2284. arr[i].count += parseInt(arr[i].child[j].count)
  2285. }
  2286. }
  2287. console.log("arr0000000000000000000000",arr)
  2288. this.startMonthdialogVisible = true
  2289. this.tableProjectList = []
  2290. this.tableProjectList = arr
  2291. }
  2292. }
  2293. }
  2294. })
  2295. },
  2296. getDrugAdviceCount(advice_name,zone_name){
  2297. var str = ""
  2298. var arr =[]
  2299. var arrOne = []
  2300. if(this.doctorMap!=null && this.doctorMap.length>0){
  2301. for(let i=0;i<this.doctorMap.length;i++){
  2302. if(this.doctorMap[i].advice_name!="" || this.doctorMap[i].advice_name!=undefined){
  2303. this.doctorMap[i].advice_name = this.doctorMap[i].advice_name.replace(/\s/g,"")
  2304. }
  2305. if(this.doctorMap[i].advice_name == advice_name && this.doctorMap[i].zone_name == zone_name && this.doctorMap[i].delivery_way =="导管封管"){
  2306. arr.push(this.doctorMap[i])
  2307. }
  2308. if(this.doctorMap[i].advice_name == advice_name && this.doctorMap[i].zone_name == zone_name && this.doctorMap[i].delivery_way.indexOf("泵入")!=-1){
  2309. arrOne.push(this.doctorMap[i])
  2310. }
  2311. }
  2312. }
  2313. if(arr!=null && arr.length >0){
  2314. var total = 0
  2315. for(let i=0;i<arr.length;i++){
  2316. total +=arr[i].prescribing_number
  2317. }
  2318. str = "封管" +"("+total+")"
  2319. }
  2320. if(arrOne!=null && arrOne.length >0){
  2321. var total_one = 0
  2322. for(let i=0;i<arrOne.length;i++){
  2323. total_one +=arrOne[i].prescribing_number
  2324. }
  2325. str = str + "泵入" +"("+total_one+")"
  2326. }
  2327. return str
  2328. },
  2329. getSpecification(id){
  2330. var specification_name = ""
  2331. for(let i=0;i<this.druglist.length;i++){
  2332. if(id == this.druglist[i].id){
  2333. specification_name = this.druglist[i].dose+this.druglist[i].dose_unit +"*"+this.druglist[i].min_number+this.druglist[i].min_unit +"/"+this.druglist[i].max_unit
  2334. }
  2335. }
  2336. return specification_name
  2337. },
  2338. getCount(val){
  2339. var count = 0
  2340. if(val!=null && val.length > 0){
  2341. for(let i=0;i<val.length;i++){
  2342. count += parseInt(val[i].prescribing_number)
  2343. }
  2344. }
  2345. if(count > 0){
  2346. return count
  2347. }else{
  2348. return 0
  2349. }
  2350. },
  2351. getHisCount(val,max_unit,min_unit,min_number){
  2352. var total = 0
  2353. var max_str = "";
  2354. var min_str = "";
  2355. for(let i=0;i<val.length;i++){
  2356. total+=parseInt(val[i].prescribing_number)
  2357. }
  2358. if (total < min_number) {
  2359. min_str = total + min_unit;
  2360. }
  2361. if (total == 0) {
  2362. min_str = "";
  2363. max_str = "";
  2364. }
  2365. if (total >= min_number) {
  2366. if (parseInt(total / min_number) != 0) {
  2367. max_str = parseInt(total / min_number) + max_unit;
  2368. }
  2369. if (total % min_number != 0) {
  2370. min_str = (total % min_number) + min_unit;
  2371. }
  2372. }
  2373. return max_str + min_str;
  2374. },
  2375. toPrintOne(){
  2376. var schedule_date = moment(this.time).format('YYYY-MM-DD')
  2377. this.$router.push({path:"/dialysis/doctorAdviceStaticPrint?schedule_type="+this.schedule_type+"&partion_type="+this.partion_str+"&schedule_date="+schedule_date+"&is_open="+this.config.is_open})
  2378. },
  2379. toPrintTwo(){
  2380. var schedule_date = moment(this.time).format('YYYY-MM-DD')
  2381. this.$router.push({path:"/dialysis/doctorNewAdviceStaticPrint?schedule_type="+this.schedule_type+"&partion_type="+this.partion_str+"&schedule_date="+schedule_date+"&is_open="+this.config.is_open})
  2382. },
  2383. toPrintThree(){
  2384. var schedule_date = moment(this.time).format('YYYY-MM-DD')
  2385. this.$router.push({path:"/dialysis/doctorNewProjectStaticPrint?schedule_type="+this.schedule_type+"&partion_type="+this.partion_str+"&schedule_date="+schedule_date+"&is_open="+this.config.is_open})
  2386. },
  2387. toExportListOne(){
  2388. import('@/vendor/Export2Excel').then(excel => {
  2389. if(this.tableList!=null && this.tableList.length > 0){
  2390. for(let i=0;i<this.tableList.length;i++){
  2391. this.tableList[i].index = i+1
  2392. if(this.config.is_open == 1){
  2393. this.tableList[i].total_count = this.getHisCount(this.tableList[i].child,this.tableList[i].max_unit,this.tableList[i].min_unit,this.tableList[i].min_number)
  2394. }
  2395. if(this.config.is_open!=1){
  2396. this.tableList[i].total_count = this.getCount(this.tableList[i].child)
  2397. }
  2398. }
  2399. }
  2400. const tHeader = ['序号','药品名称','规格','数量']
  2401. const filterVal = ['index','advice_name','specification_name','total_count']
  2402. const data = this.formatJson(filterVal, this.tableList)
  2403. excel.export_json_to_excel({
  2404. header: tHeader,
  2405. data,
  2406. filename: '药品统计'
  2407. })
  2408. this.downloadLoading = false
  2409. })
  2410. },
  2411. toExportListTwo(){
  2412. import('@/vendor/Export2Excel').then(excel => {
  2413. if(this.tableProjectList!=null && this.tableProjectList.length > 0){
  2414. for(let i=0;i<this.tableProjectList.length;i++){
  2415. this.tableProjectList[i].index = i+1
  2416. }
  2417. }
  2418. const tHeader = ['序号','耗材名称','规格','数量']
  2419. const filterVal = ['index','good_name','specification_name','count']
  2420. const data = this.formatJson(filterVal, this.tableProjectList)
  2421. excel.export_json_to_excel({
  2422. header: tHeader,
  2423. data,
  2424. filename: '耗材统计'
  2425. })
  2426. this.downloadLoading = false
  2427. })
  2428. },
  2429. toExportListThree(){
  2430. import('@/vendor/Export2Excel').then(excel => {
  2431. if(this.tableMonthList!=null && this.tableMonthList.length > 0){
  2432. for(let i=0;i<this.tableMonthList.length;i++){
  2433. this.tableMonthList[i].index = i+1
  2434. if(this.config.is_open == 1){
  2435. this.tableMonthList[i].total_count = this.getHisCount(this.tableMonthList[i].child,this.tableMonthList[i].max_unit,this.tableMonthList[i].min_unit,this.tableMonthList[i].min_number)
  2436. }
  2437. if(this.config.is_open!=1){
  2438. this.tableMonthList[i].total_count = this.getCount(this.tableMonthList[i].child)
  2439. }
  2440. }
  2441. }
  2442. const tHeader = ['序号','药品名称','规格','数量','厂家']
  2443. const filterVal = ['index','advice_name','specification_name','total_count','manufacturer_name']
  2444. const data = this.formatJson(filterVal, this.tableMonthList)
  2445. excel.export_json_to_excel({
  2446. header: tHeader,
  2447. data,
  2448. filename: '药品月统计'
  2449. })
  2450. this.downloadLoading = false
  2451. })
  2452. },
  2453. toExportListFour(){
  2454. import('@/vendor/Export2Excel').then(excel => {
  2455. if(this.tableProjectList!=null && this.tableProjectList.length > 0){
  2456. for(let i=0;i<this.tableProjectList.length;i++){
  2457. this.tableProjectList[i].index = i+1
  2458. }
  2459. }
  2460. const tHeader = ['序号','耗材名称','规格','数量']
  2461. const filterVal = ['index','good_name','specification_name','count']
  2462. const data = this.formatJson(filterVal, this.tableProjectList)
  2463. excel.export_json_to_excel({
  2464. header: tHeader,
  2465. data,
  2466. filename: '耗材统计'
  2467. })
  2468. this.downloadLoading = false
  2469. })
  2470. },
  2471. getGoodAllQuery(){
  2472. this.toStaticFour()
  2473. },
  2474. formatJson(filterVal, jsonData) {
  2475. return jsonData.map(v => filterVal.map(j => v[j]));
  2476. },
  2477. changeScheduleType(){
  2478. this.tableList = []
  2479. this.toStatic()
  2480. },
  2481. changePartionType(){
  2482. this.tableList = []
  2483. this.toStatic()
  2484. },
  2485. changeScheduleTypeOne(){
  2486. this.tableDataList = []
  2487. this.toStaticOne()
  2488. },
  2489. changePartionTypeOne(){
  2490. this.tableDataList = []
  2491. this.toStaticOne()
  2492. },
  2493. changeScheduleTypeTwo(){
  2494. this.tableProjectList = []
  2495. this.toStaticTwo()
  2496. },
  2497. changePartionTypeTwo(){
  2498. this.tableProjectList=[]
  2499. this.toStaticTwo()
  2500. },
  2501. getModeId(val){
  2502. if(val!=null && val.length > 0){
  2503. let dataInfo = {}
  2504. val.forEach((item, index) => {
  2505. let { patient_id } = item
  2506. if (!dataInfo[patient_id]) {
  2507. dataInfo[patient_id] = {
  2508. patient_id:item.patient_id,
  2509. child: [],
  2510. count:0,
  2511. mode_id:item.mode_id,
  2512. }
  2513. }
  2514. })
  2515. let newArr = Object.values(dataInfo)
  2516. if(newArr!=null && newArr.length >0){
  2517. let dataInfo = {}
  2518. newArr.forEach((item, index) => {
  2519. let { mode_id } = item
  2520. if (!dataInfo[mode_id]) {
  2521. dataInfo[mode_id] = {
  2522. mode_id:item.mode_id,
  2523. child: [],
  2524. count:0,
  2525. }
  2526. }
  2527. })
  2528. let hisNewArr = Object.values(dataInfo)
  2529. if(hisNewArr!=null && hisNewArr.length >0){
  2530. for(let i=0;i<hisNewArr.length;i++){
  2531. for(let j=0;j<newArr.length;j++){
  2532. if(hisNewArr[i].mode_id == newArr[j].mode_id){
  2533. hisNewArr[i].child.push(newArr[j])
  2534. }
  2535. }
  2536. }
  2537. }
  2538. var str = ""
  2539. for(let i=0;i<hisNewArr.length;i++){
  2540. if(hisNewArr[i].mode_id == 1){
  2541. hisNewArr[i].mode_id = "HD"
  2542. }
  2543. if(hisNewArr[i].mode_id == 2){
  2544. hisNewArr[i].mode_id = "HDF"
  2545. }
  2546. if(hisNewArr[i].mode_id == 3){
  2547. hisNewArr[i].mode_id = "HD+HP"
  2548. }
  2549. if(hisNewArr[i].mode_id == 4){
  2550. hisNewArr[i].mode_id = "HP"
  2551. }
  2552. if(hisNewArr[i].mode_id == 5){
  2553. hisNewArr[i].mode_id = "HF"
  2554. }
  2555. if(hisNewArr[i].mode_id == 6){
  2556. hisNewArr[i].mode_id = "SCUF"
  2557. }
  2558. if(hisNewArr[i].mode_id == 7){
  2559. hisNewArr[i].mode_id = "IUF"
  2560. }
  2561. if(hisNewArr[i].mode_id == 8){
  2562. hisNewArr[i].mode_id = "HFHD"
  2563. }
  2564. if(hisNewArr[i].mode_id == 9){
  2565. hisNewArr[i].mode_id = "HFHD+HP"
  2566. }
  2567. if(hisNewArr[i].mode_id == 10){
  2568. hisNewArr[i].mode_id = "PHF"
  2569. }
  2570. if(hisNewArr[i].mode_id == 11){
  2571. hisNewArr[i].mode_id = "HFR"
  2572. }
  2573. if(hisNewArr[i].mode_id == 12){
  2574. hisNewArr[i].mode_id = "HDF+HP"
  2575. }
  2576. if(hisNewArr[i].mode_id == 13){
  2577. hisNewArr[i].mode_id = "CRRT"
  2578. }
  2579. if(hisNewArr[i].mode_id == 14){
  2580. hisNewArr[i].mode_id = "腹水回输"
  2581. }
  2582. if(hisNewArr[i].mode_id == 15){
  2583. hisNewArr[i].mode_id = "IUF+HD"
  2584. }
  2585. if(hisNewArr[i].mode_id == 20){
  2586. hisNewArr[i].mode_id = "UF"
  2587. }
  2588. if(hisNewArr[i].mode_id == 21){
  2589. hisNewArr[i].mode_id = "HD+"
  2590. }
  2591. if(hisNewArr[i].mode_id == 22){
  2592. hisNewArr[i].mode_id = "血浆胆红素吸附+HDF"
  2593. }
  2594. if(hisNewArr[i].mode_id == 23){
  2595. hisNewArr[i].mode_id = "血浆胆红素吸附"
  2596. }
  2597. if(hisNewArr[i].mode_id == 24){
  2598. hisNewArr[i].mode_id = "I-HDF"
  2599. }
  2600. if(hisNewArr[i].mode_id == 25){
  2601. hisNewArr[i].mode_id = "HD高通"
  2602. }
  2603. if(hisNewArr[i].mode_id == 26){
  2604. hisNewArr[i].mode_id = "CVVH"
  2605. }
  2606. if(hisNewArr[i].mode_id == 27){
  2607. hisNewArr[i].mode_id = "CVVHD"
  2608. }
  2609. if(hisNewArr[i].mode_id == 28){
  2610. hisNewArr[i].mode_id = "CVVHDF"
  2611. }
  2612. if(hisNewArr[i].mode_id == 29){
  2613. hisNewArr[i].mode_id = "PE"
  2614. }
  2615. if(hisNewArr[i].mode_id == 30){
  2616. hisNewArr[i].mode_id = "血浆胆红素吸附+HP"
  2617. }
  2618. if(hisNewArr[i].mode_id == 31){
  2619. hisNewArr[i].mode_id = "HPD"
  2620. }
  2621. if(hisNewArr[i].mode_id == 32){
  2622. hisNewArr[i].mode_id = "HDP"
  2623. }
  2624. if(hisNewArr[i].mode_id == 33){
  2625. hisNewArr[i].mode_id = "HFD"
  2626. }
  2627. if(hisNewArr[i].mode_id == 34){
  2628. hisNewArr[i].mode_id = "HDF100"
  2629. }
  2630. if(hisNewArr[i].mode_id == 35){
  2631. hisNewArr[i].mode_id = "HDF600"
  2632. }
  2633. if(hisNewArr[i].mode_id == 36){
  2634. hisNewArr[i].mode_id = "HDF800"
  2635. }
  2636. if(hisNewArr[i].mode_id == 37){
  2637. hisNewArr[i].mode_id = "HDF1000"
  2638. }
  2639. str += hisNewArr[i].mode_id +"("+hisNewArr[i].child.length+")" +"\n"
  2640. }
  2641. return str
  2642. }
  2643. // return newArr.length
  2644. }
  2645. },
  2646. getDrugCount(val,advice_name){
  2647. if(val!=null){
  2648. for(let i=0;i<val.length;i++){
  2649. val[i].advice_name = val[i].advice_name.replace(/\s/g,"")
  2650. }
  2651. }
  2652. if(val!=null && val.length >0){
  2653. let dataInfo = {}
  2654. val.forEach((item, index) => {
  2655. let { advice_name } = item
  2656. if (!dataInfo[advice_name]) {
  2657. dataInfo[advice_name] = {
  2658. advice_name:item.advice_name,
  2659. child: [],
  2660. count:0,
  2661. }
  2662. }
  2663. })
  2664. let newArr = Object.values(dataInfo)
  2665. if(newArr!=null && newArr.length >0){
  2666. for(let i=0;i<newArr.length;i++){
  2667. for(let j=0;j<val.length;j++){
  2668. if(newArr[i].advice_name == val[j].advice_name){
  2669. newArr[i].child.push(val[j])
  2670. }
  2671. }
  2672. }
  2673. }
  2674. var total = 0
  2675. var newHisArr =[]
  2676. if(newArr!=null && newArr.length >0){
  2677. for(let i=0;i<newArr.length;i++){
  2678. if(newArr[i].advice_name == advice_name){
  2679. newHisArr.push(newArr[i])
  2680. }
  2681. }
  2682. }
  2683. if(newHisArr!=null && newHisArr.length>0){
  2684. for(let i=0;i<newHisArr.length;i++){
  2685. for(let j=0;j<newHisArr[i].child.length;j++){
  2686. total += parseInt(newHisArr[i].child[j].prescribing_number)
  2687. }
  2688. }
  2689. }
  2690. return total
  2691. }
  2692. },
  2693. getAdminUserName(id){
  2694. var name = ""
  2695. for(let i=0;i<this.adminUserList.length;i++){
  2696. if(id == this.adminUserList[i].id){
  2697. name = this.adminUserList[i].name
  2698. }
  2699. }
  2700. return name
  2701. },
  2702. getZoneName(val){
  2703. var zone_name = ""
  2704. if(val!=null && val.length >0){
  2705. zone_name = val[0].zone_name
  2706. }
  2707. return zone_name
  2708. },
  2709. compareList: function (k) {
  2710. return function (a, b) {
  2711. var M = a[k]
  2712. var N = b[k]
  2713. return M - N // 从低向高排
  2714. // return N - M; // 从高向低排
  2715. }
  2716. },
  2717. getSummaries(param) {
  2718. const { columns, data } = param;
  2719. const sums = [];
  2720. columns.forEach((column, index) => {
  2721. if (index === 0) {
  2722. sums[index] = '总数';
  2723. return;
  2724. }
  2725. if(index > 2){
  2726. const values = data.map(item => item[column.property]);
  2727. }
  2728. });
  2729. return sums;
  2730. },
  2731. getAllSumCount(advice_name){
  2732. var hisNewArr =[]
  2733. if(this.tabHead.length!=null && this.tabHead.length >0){
  2734. for(let i=0;i<this.tabHead.length;i++){
  2735. if(this.tabHead[i].advice_name == advice_name){
  2736. hisNewArr.push(this.tabHead[i])
  2737. }
  2738. }
  2739. }
  2740. var total = 0
  2741. if(hisNewArr!=null && hisNewArr.length > 0){
  2742. for(let i=0;i<hisNewArr.length;i++){
  2743. for(let j=0;j<hisNewArr[i].child.length;j++){
  2744. total += parseInt(hisNewArr[i].child[j].prescribing_number)
  2745. }
  2746. }
  2747. }
  2748. if (total > 0) {
  2749. return total
  2750. }else{
  2751. return 0
  2752. }
  2753. },
  2754. getTimeSix(val) {
  2755. if(val == ""){
  2756. return ""
  2757. }else {
  2758. return uParseTime(val, '{y}-{m}-{d}')
  2759. }
  2760. },
  2761. toJiao(){
  2762. GetMobileScheduleList().then(response=>{
  2763. if(response.data.state == 1){
  2764. var schedule = response.data.data.schedule
  2765. this.$message.success("保存成功!")
  2766. // console.log("schedule---------------",schedule)
  2767. // var arr = []
  2768. // for(let i=0;i<schedule.length;i++){
  2769. // if(schedule[i].monitor_record.ultrafiltration_volume!=schedule[i].xt_assesment_after_dislysis.actual_ultrafiltration){
  2770. // arr.push(schedule[i])
  2771. // }
  2772. // }
  2773. // import('@/vendor/Export2Excel').then(excel => {
  2774. // if(arr!=null && arr.length > 0){
  2775. // for(let i=0;i<arr.length;i++){
  2776. // arr[i].patient_name = arr[i].patient.name
  2777. // arr[i].target_ultrafiltration = arr[i].dialysis_prescription.target_ultrafiltration
  2778. // arr[i].ultrafiltration_volume = arr[i].monitor_record.ultrafiltration_volume
  2779. // arr[i].actual_ultrafiltration = arr[i].xt_assesment_after_dislysis.actual_ultrafiltration
  2780. // arr[i].start_time = this.getTimeSix(arr[i].schedule_date)
  2781. // }
  2782. // }
  2783. // const tHeader = ['序号','日期','患者姓名','目标超滤量','监测超滤量','实际超滤量']
  2784. // const filterVal = ['index','start_time','patient_name','target_ultrafiltration','ultrafiltration_volume','actual_ultrafiltration']
  2785. // const data = this.formatJson(filterVal, arr)
  2786. // excel.export_json_to_excel({
  2787. // header: tHeader,
  2788. // data,
  2789. // filename: '监测数据统计'
  2790. // })
  2791. // })
  2792. }
  2793. })
  2794. },
  2795. getManufacturer(id){
  2796. var manufacturer_name = ""
  2797. for(let i=0;i<this.manufacturerList.length;i++){
  2798. if(id== this.manufacturerList[i].id){
  2799. manufacturer_name = this.manufacturerList[i].manufacturer_name
  2800. }
  2801. }
  2802. return manufacturer_name
  2803. },
  2804. getDrugName(drug_id,drugs){
  2805. var drug_name = ""
  2806. for(let i=0;i<drugs.length;i++){
  2807. if(drug_id == drugs[i].id){
  2808. drug_name = drugs[i].drug_name
  2809. }
  2810. }
  2811. return drug_name
  2812. },
  2813. getMonthManufacturer(drug_id,drugs,manufacturerList){
  2814. var manufacturer = 0
  2815. for(let i=0;i<drugs.length;i++){
  2816. if(drug_id == drugs[i].id){
  2817. manufacturer = drugs[i].manufacturer
  2818. }
  2819. }
  2820. var manufacturer_name = ""
  2821. for(let i=0;i<manufacturerList.length;i++){
  2822. if(manufacturer== manufacturerList[i].id){
  2823. manufacturer_name = manufacturerList[i].manufacturer_name
  2824. }
  2825. }
  2826. return manufacturer_name
  2827. },
  2828. toPrintTen(){
  2829. this.$router.push("/dialysis/doctorMonthAdviceStaticPrint?start_time="+this.start_time+"&end_time="+this.end_time)
  2830. },
  2831. toPrintTenOne(){
  2832. this.$router.push("/dialysis/doctocAdviceProjectPrint?start_time="+this.start_time+"&end_time="+this.end_time)
  2833. }
  2834. },
  2835. components: {
  2836. BreadCrumb
  2837. }
  2838. };
  2839. </script>
  2840. <style rel="stylesheet/scss" lang="scss" scoped>
  2841. .app-container {
  2842. // margin: 20px;
  2843. font-size: 15px;
  2844. .filter-container {
  2845. padding-bottom: 5px;
  2846. }
  2847. .cqd-dataTitle {
  2848. color: #303133;
  2849. font-size: 14px;
  2850. border-bottom: 2px #e4e7ed solid;
  2851. height: 36px;
  2852. line-height: 36px;
  2853. margin: 0 0 25px 0;
  2854. position: relative;
  2855. }
  2856. .cqd-dataTitle::before {
  2857. position: absolute;
  2858. left: 0;
  2859. bottom: -2px;
  2860. content: "";
  2861. width: 42px;
  2862. height: 2px;
  2863. background: #409eff;
  2864. }
  2865. .search-component {
  2866. width: 500px;
  2867. .searchBox {
  2868. width: 300px;
  2869. height: 36px;
  2870. line-height: 36px;
  2871. padding-left: 15px;
  2872. border: 1px #dcdfe6 solid;
  2873. border-right: none;
  2874. outline: none;
  2875. float: left;
  2876. border-radius: 6px 0 0 6px;
  2877. font-size: 14px;
  2878. color: #333;
  2879. background: #fff;
  2880. box-shadow: 3px 3px 4px rgba(135, 135, 135, 0.05);
  2881. }
  2882. .searchBtn {
  2883. background-color: #409eff;
  2884. color: #fff;
  2885. font-size: 15px;
  2886. text-align: center;
  2887. height: 36px;
  2888. line-height: 36px;
  2889. float: left;
  2890. outline: none;
  2891. width: 70px;
  2892. border: none;
  2893. border-radius: 0 6px 6px 0;
  2894. font-family: "Microsoft Yahei";
  2895. cursor: pointer;
  2896. }
  2897. }
  2898. .amount {
  2899. font-weight: normal;
  2900. padding: 10px 0 0 0;
  2901. color: #606266;
  2902. font-size: 14px;
  2903. span {
  2904. color: #ef2525;
  2905. font-family: "Arial";
  2906. padding: 0 2px;
  2907. }
  2908. }
  2909. .el-table td .cell{
  2910. white-space: pre-wrap;
  2911. }
  2912. .eldialog{
  2913. display: flex;
  2914. justify-content: space-between;
  2915. }
  2916. }
  2917. .el-table td,
  2918. .el-table th.is-leaf,
  2919. .el-table--border,
  2920. .el-table--group {
  2921. border-color: #d0d3da;
  2922. }
  2923. .el-table--border::after,
  2924. .el-table--group::after,
  2925. .el-table::before {
  2926. background-color: #d0d3da;
  2927. }
  2928. .el-checkbox__inner::after {
  2929. height: 10px;
  2930. left: 7px;
  2931. }
  2932. .el-checkbox__inner {
  2933. width: 20px;
  2934. height: 20px;
  2935. }
  2936. </style>