血透系统pad前端

OrdersDialog.vue 47KB

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