patientDetail.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. <template>
  2. <view class="orderDetail">
  3. <!-- 头部 -->
  4. <view class="orderDetail_header">
  5. <view class="orderDetail_header_item" v-for="tab in tabs" :key="tab.id" :class="{active:tab.id === selectedTab}"
  6. @click="debouncedChangeTab(tab.id)">
  7. {{tab.name}}
  8. </view>
  9. </view>
  10. <!-- tab -->
  11. <!-- 患者信息 -->
  12. <view class="orderDetail_info" v-if="selectedTab === 1">
  13. <scroll-view scroll-y class="orderDetail_infoItem" v-if="info.id">
  14. <view class="orderDetail_infoItem_header">
  15. <view class="orderDetail_infoItem_header_title">
  16. <view class="icon"></view>
  17. <view class="taskNameAndWorkerName">
  18. <text class="taskName">患者姓名:{{info.patientName||'暂无'}}</text>
  19. </view>
  20. </view>
  21. <text class="orderDetail_infoItem_header_more">床号:{{info.bedNum?info.bedNum + '床':'暂无'}}</text>
  22. </view>
  23. <view class="orderDetail_infoItem_item">
  24. <view class="orderDetail_infoItem_item_content">
  25. <text class="orderDetail_infoItem_item_name">住院号</text>
  26. <text class="orderDetail_infoItem_item_value">{{info.residenceNo || '暂无'}}</text>
  27. </view>
  28. <view class="orderDetail_infoItem_item_content">
  29. <text class="orderDetail_infoItem_item_name">护理级别</text>
  30. <text class="orderDetail_infoItem_item_value">{{info.careLevel ?info.careLevel.name: '暂无'}}</text>
  31. </view>
  32. <view class="orderDetail_infoItem_item_content">
  33. <text class="orderDetail_infoItem_item_name">病情级别</text>
  34. <text class="orderDetail_infoItem_item_value">{{info.illnessState ?info.illnessState.name: '暂无'}}</text>
  35. </view>
  36. </view>
  37. </scroll-view>
  38. </view>
  39. <!-- 患者标本 -->
  40. <view class="orderDetail_info" v-if="selectedTab ===2">
  41. <scroll-view scroll-y class="orderDetail_infoItem">
  42. <view class="orderDetail_infoItem_header">
  43. <view class="orderDetail_infoItem_header_title">
  44. <view class="icon"></view>
  45. <view class="taskNameAndWorkerName">
  46. <text class="taskName">标本信息</text>
  47. </view>
  48. </view>
  49. </view>
  50. <!-- 标本信息 -->
  51. <view class="orderDetail_infoItem_item business business_specimen">
  52. <view class="inspect_specimen">
  53. <uni-table stripe emptyText="暂无更多数据">
  54. <!-- 表头行 -->
  55. <uni-tr class="th">
  56. <uni-th align="center" width="68">标本类型</uni-th>
  57. <uni-th align="center" width="71">标本编码</uni-th>
  58. <uni-th align="center" width="66">状态</uni-th>
  59. <uni-th align="center" width="71">科室</uni-th>
  60. </uni-tr>
  61. <!-- 表格数据行 -->
  62. <uni-tr v-for="data in info.specimens" :key="data.id"
  63. @click.native="toDetail(data.id,'specimen',data.scode)">
  64. <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
  65. <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
  66. <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
  67. <uni-td align="center" class="td" v-if="data.checkDept">
  68. {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
  69. <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
  70. </image>
  71. </uni-td>
  72. <uni-td align="center" class="td" v-else>
  73. 暂无
  74. <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
  75. </image>
  76. </uni-td>
  77. </uni-tr>
  78. </uni-table>
  79. </view>
  80. </view>
  81. </scroll-view>
  82. </view>
  83. <!-- 患者检查 -->
  84. <view class="orderDetail_info" v-if="selectedTab === 3">
  85. <scroll-view scroll-y class="orderDetail_infoItem">
  86. <view class="orderDetail_infoItem_header">
  87. <view class="orderDetail_infoItem_header_title">
  88. <view class="icon"></view>
  89. <view class="taskNameAndWorkerName">
  90. <text class="taskName">检查信息</text>
  91. </view>
  92. </view>
  93. </view>
  94. <!-- 检查信息 -->
  95. <view class="orderDetail_infoItem_item business business_inspect">
  96. <view class="inspect_item" v-for="item in info.inspects" :key="item.id" @click="toDetail(item.id,'inspect')">
  97. <view class="inspect_item_name">
  98. {{item.inspectName||'暂无'}}
  99. </view>
  100. <view class="inspect_item_info">
  101. <view class="inspect_item_dept">预约时间</view>
  102. <view class="inspect_item_number">
  103. {{item.yyTime || '暂无'}}
  104. </view>
  105. </view>
  106. <view class="inspect_item_info">
  107. <view class="inspect_item_dept">到达时间</view>
  108. <view class="inspect_item_number">
  109. {{item.arriveTime || '暂无'}}
  110. </view>
  111. </view>
  112. <view class="inspect_item_info">
  113. <view class="inspect_item_dept">检查状态</view>
  114. <view class="inspect_item_number">
  115. {{item.inspectState?item.inspectState.name:'暂无'}}
  116. </view>
  117. </view>
  118. </view>
  119. </view>
  120. </scroll-view>
  121. </view>
  122. <!-- 底部 -->
  123. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  124. <seiminModel ref="seiminModel"></seiminModel>
  125. <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
  126. confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker"
  127. @onConfirm="confirmPicker" :pickerList="taskTypeList">
  128. </seiminPicker>
  129. </view>
  130. </template>
  131. <script>
  132. import {
  133. backPress
  134. } from '../../utils/index.js';
  135. import {
  136. debounce
  137. } from 'lodash/function';
  138. import {
  139. reqGetPatientInspectInfo,
  140. reqDeptTSPTaskType,
  141. reqBuildTrip,
  142. } from "../../request/api.js";
  143. import {
  144. mapState,
  145. mapMutations,
  146. } from "vuex";
  147. import {
  148. GDSTATE
  149. } from "../../utils/enum.gdstate.js";
  150. import {
  151. ASSOCIATION_TYPES
  152. } from "../../utils/enum.association_types.js";
  153. import {
  154. showAppraise,
  155. openRecallModal,
  156. openExecModal,
  157. showJiaji,
  158. } from "../../utils/index.js";
  159. export default {
  160. onBackPress() {
  161. backPress();
  162. },
  163. data() {
  164. return {
  165. reFresh: '',
  166. checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
  167. pickerTitle: "", //一键建单picker的title
  168. taskTypeListResource: [], //任务类型列表(请求的原始数据)
  169. taskTypeList: [], //任务类型列表
  170. debouncedChangeTab: null,
  171. // 路由传参
  172. queryParams: {},
  173. // 关联类型
  174. ASSOCIATION_TYPES,
  175. // 选项卡
  176. tabs: [{
  177. id: 1,
  178. name: '患者信息'
  179. },
  180. {
  181. id: 2,
  182. name: '患者标本'
  183. },
  184. {
  185. id: 3,
  186. name: '患者检查'
  187. },
  188. ],
  189. // 当前选中的tab
  190. selectedTab: 1,
  191. // 工单信息
  192. info: {},
  193. // 流程信息
  194. logList: [],
  195. //底部按钮
  196. btns: [{
  197. name: "回到列表",
  198. type: "default",
  199. click: () => {
  200. uni.navigateTo({
  201. url: "/pages/patientList/patientList",
  202. });
  203. },
  204. }, {
  205. name: "一键建单",
  206. type: "default",
  207. click: () => {
  208. this.buildOrder(this.queryParams);
  209. },
  210. }],
  211. };
  212. },
  213. computed: {
  214. ...mapState('other', ["deptDisplay"]),
  215. },
  216. methods: {
  217. ...mapMutations('other', ['changeQucikCreateOrderType', 'clearPatientBuildData', 'changePatientBuildData']),
  218. //关闭
  219. closePicker() {
  220. this.$refs.sPicker._close();
  221. },
  222. //打开
  223. openPicker() {
  224. this.$refs.sPicker._open();
  225. },
  226. //确定:接收子组件传来的参数
  227. confirmPicker(checkedObj) {
  228. console.log(checkedObj);
  229. // 补充:清除建单数据
  230. this.clearPatientBuildData();
  231. // 2,获取buildTrip信息
  232. let postData = {
  233. "taskTypeId": checkedObj.value,
  234. "patientCode": this.selectedPatient.patientCode
  235. };
  236. uni.showLoading({
  237. mask: true,
  238. title: '加载中'
  239. })
  240. reqBuildTrip(postData).then(res => {
  241. uni.hideLoading();
  242. let taskType = this.taskTypeListResource.find(v => v.id == checkedObj.value);
  243. let patientTaskType = taskType || {};
  244. if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者其他服务业务']) {
  245. // 患者其他服务业务--无法用status判断,运输过程“默认患者所在科室”没有返回status==200,估计是后端漏掉了这种情况,如果后期后端可以返回status,则可以根据status判断。
  246. if (res.start && res.end) {
  247. if (res.status == 100013 || res.status == 100014 || res.status == 100015) {
  248. this.checkedShowMsg = res.data;
  249. //需要选择起点科室和目标科室
  250. this.changeQucikCreateOrderType({
  251. type: "patient",
  252. taskTypeId: checkedObj.value,
  253. patientTaskType,
  254. selectedPatient: this.selectedPatient,
  255. patientBuildTrip: res,
  256. });
  257. uni.navigateTo({
  258. url: "/pages/quickCreateOrder/quickCreateOrder",
  259. });
  260. } else {
  261. //无需选择科室
  262. this.checkedShowMsg = res.data;
  263. this.changePatientBuildData({
  264. key: 'dept',
  265. value: {
  266. startDept: res.start.start.list[0],
  267. endDept: res.end.end.list[0],
  268. }
  269. });
  270. this.changeQucikCreateOrderType({
  271. type: "patient",
  272. taskTypeId: checkedObj.value,
  273. patientTaskType,
  274. selectedPatient: this.selectedPatient,
  275. patientBuildTrip: res,
  276. });
  277. uni.navigateTo({
  278. url: "/pages/patientBuild/patientBuild",
  279. });
  280. }
  281. } else {
  282. this.$refs.seiminModel.show({
  283. skin: "toast",
  284. icon: "error",
  285. content: res.msg || "获取数据失败",
  286. });
  287. throw new Error(res.msg || '获取数据失败');
  288. }
  289. } else if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
  290. // 患者陪检业务
  291. if (res.status == 200) {
  292. this.checkedShowMsg = res.data;
  293. this.changePatientBuildData({
  294. key: 'dept',
  295. value: {
  296. startDept: {
  297. id: res.startDept,
  298. dept: res.startDeptName,
  299. deptalias: res.startDeptAlias
  300. }, //待改
  301. endDept: {
  302. id: res.startDept,
  303. dept: res.startDeptName,
  304. deptalias: res.startDeptAlias
  305. }, //待改
  306. }
  307. });
  308. this.changeQucikCreateOrderType({
  309. type: "patient",
  310. taskTypeId: checkedObj.value,
  311. patientTaskType,
  312. selectedPatient: this.selectedPatient,
  313. patientBuildTrip: res,
  314. });
  315. uni.navigateTo({
  316. url: "/pages/appointmentInspect/appointmentInspect",
  317. });
  318. } else {
  319. this.$refs.seiminModel.show({
  320. skin: "toast",
  321. icon: "error",
  322. content: res.msg || "获取数据失败",
  323. });
  324. throw new Error(res.msg || '获取数据失败');
  325. }
  326. }
  327. })
  328. },
  329. // 一键建单
  330. buildOrder(patient) {
  331. this.selectedPatient = patient;
  332. // 1,请求任务类型列表
  333. uni.showLoading({
  334. mask: true,
  335. title: '加载中'
  336. })
  337. reqDeptTSPTaskType().then(res => {
  338. uni.hideLoading();
  339. if (res.status == 200) {
  340. res.data = res.data || [];
  341. this.taskTypeListResource = res.data;
  342. this.taskTypeList = res.data.map((v) => ({
  343. value: v.id,
  344. label: v.taskName,
  345. }));
  346. this.pickerTitle = `您选择了<b class="green">${patient.patientName}</b>患者,请选择下方具体服务项`;
  347. this.openPicker();
  348. } else {
  349. this.$refs.seiminModel.show({
  350. skin: "toast",
  351. icon: "error",
  352. content: res.msg || "获取数据失败",
  353. });
  354. throw new Error(res.msg || "获取数据失败");
  355. }
  356. })
  357. },
  358. init(queryParams) {
  359. console.log(queryParams)
  360. this.queryParams = queryParams;
  361. this.changeTab(1);
  362. },
  363. // 跳转详情
  364. toDetail(id, associationType, scode) {
  365. if (scode) {
  366. uni.navigateTo({
  367. url: `/pages/detail/detail?id=${id}&associationType=${associationType}&scode=${scode}`
  368. })
  369. } else {
  370. uni.navigateTo({
  371. url: `/pages/detail/detail?id=${id}&associationType=${associationType}`
  372. })
  373. }
  374. },
  375. // 切换tab
  376. changeTab(id) {
  377. this.selectedTab = id;
  378. switch (id) {
  379. case 1:
  380. this.getInfo(this.queryParams);
  381. break;
  382. case 2:
  383. break;
  384. case 3:
  385. break;
  386. }
  387. },
  388. //获取工单信息数据
  389. getInfo(queryParams) {
  390. uni.showLoading({
  391. mask: true,
  392. title: '加载中',
  393. })
  394. let postData = {
  395. "patientCode": queryParams.patientCode
  396. };
  397. console.log(queryParams.patientCode)
  398. reqGetPatientInspectInfo(postData).then(res => {
  399. uni.hideLoading();
  400. if (res.status == 200) {
  401. // 工单信息
  402. res.data.specimens = res.data.specimens || [];
  403. res.data.inspects = res.data.inspects || [];
  404. this.info = res.data;
  405. } else {
  406. this.$refs.seiminModel.show({
  407. skin: 'toast',
  408. icon: 'error',
  409. content: '请求失败',
  410. })
  411. }
  412. })
  413. },
  414. },
  415. onLoad(queryParams) {
  416. console.log(queryParams);
  417. this.init(queryParams);
  418. },
  419. created() {
  420. this.debouncedChangeTab = debounce(this.changeTab, 166);
  421. },
  422. beforeDestroy() {
  423. this.debouncedChangeTab.cancel()
  424. }
  425. }
  426. </script>
  427. <style lang="scss" scoped>
  428. .orderDetail {
  429. padding-bottom: 108rpx;
  430. // 头部
  431. .orderDetail_header {
  432. position: fixed;
  433. z-index: 98;
  434. width: 100%;
  435. height: 88rpx;
  436. background-color: #fff;
  437. color: #333;
  438. @include flex;
  439. .orderDetail_header_item {
  440. flex: 1;
  441. font-size: 32rpx;
  442. @include border(right);
  443. @include border(bottom);
  444. @include flex(center, center);
  445. &:last-of-type {
  446. border-right: none;
  447. }
  448. &.active {
  449. color: $defaultColor;
  450. border-bottom: 4rpx solid $defaultColor;
  451. }
  452. }
  453. }
  454. // tab
  455. // 工单详情
  456. .orderDetail_info {
  457. padding: 108rpx 24rpx;
  458. .orderDetail_infoItem {
  459. width: 702rpx;
  460. height: 80vh;
  461. background-color: #fff;
  462. margin-top: 8rpx;
  463. border-radius: 8rpx;
  464. position: relative;
  465. padding: 0 24rpx 24rpx;
  466. font-size: 32rpx;
  467. @include border;
  468. @include semicircle(#f9fafb, 82rpx);
  469. @include flex(flex-start, stretch, column);
  470. .ji,
  471. .jiaji {
  472. width: 60rpx;
  473. position: absolute;
  474. right: 0;
  475. top: 0;
  476. }
  477. .orderDetail_infoItem_header {
  478. height: 86rpx;
  479. @include border($directive:bottom, $style:dashed);
  480. @include flex(space-between, center);
  481. .orderDetail_infoItem_header_title {
  482. color: #333;
  483. flex: 1;
  484. @include flex(flex-start, center);
  485. .icon {
  486. width: 10rpx;
  487. height: 46rpx;
  488. border-radius: 2rpx;
  489. background-color: #F0F6ED;
  490. @include btn_background;
  491. }
  492. .taskNameAndWorkerName {
  493. flex: 1;
  494. @include flex;
  495. .taskName {
  496. max-width: 10em;
  497. margin-left: 8rpx;
  498. font-size: 38rpx;
  499. font-weight: bold;
  500. @include clamp;
  501. }
  502. }
  503. }
  504. .orderDetail_infoItem_header_more {
  505. color: $defaultColor;
  506. font-weight: bold;
  507. font-size: 38rpx;
  508. @include clamp;
  509. }
  510. }
  511. .orderDetail_infoItem_item {
  512. padding-top: 12rpx;
  513. padding-bottom: 12rpx;
  514. color: #333;
  515. font-size: 30rpx;
  516. flex: 1;
  517. @include border(bottom);
  518. @include flex(flex-start, stretch, column);
  519. &.process {
  520. padding-top: 90rpx;
  521. padding-bottom: 90rpx;
  522. }
  523. &:last-of-type {
  524. border-bottom: none;
  525. }
  526. // 工单信息
  527. .orderDetail_infoItem_item_content {
  528. margin-top: 20rpx;
  529. @include flex(space-between, stretch);
  530. .orderDetail_infoItem_item_name {
  531. font-size: 34rpx;
  532. color: #666;
  533. max-width: 4em;
  534. }
  535. .orderDetail_infoItem_item_value {
  536. font-size: 38rpx;
  537. color: #333;
  538. font-weight: bold;
  539. max-width: 420rpx;
  540. text-align: justify;
  541. word-break: break-all;
  542. }
  543. }
  544. // 流程信息
  545. .orderDetail_process_item {
  546. min-height: 120rpx;
  547. line-height: 50rpx;
  548. color: #333;
  549. @include flex(center);
  550. &:last-of-type {
  551. .step_icon {
  552. &::after {
  553. display: none;
  554. }
  555. }
  556. }
  557. .step_infoStart {
  558. font-size: 28rpx;
  559. flex: 1;
  560. @include flex(flex-end);
  561. .step_time {
  562. margin-left: 16rpx;
  563. }
  564. }
  565. .step_icon {
  566. font-size: 38rpx;
  567. margin-left: 30rpx;
  568. margin-right: 30rpx;
  569. position: relative;
  570. color: #E5E9ED;
  571. &.active {
  572. color: #07863C;
  573. }
  574. &::after {
  575. content: '';
  576. position: absolute;
  577. top: 60rpx;
  578. left: 18rpx;
  579. width: 1px;
  580. height: calc(100% - 70rpx);
  581. background-color: #DDE1E5;
  582. }
  583. }
  584. .step_infoEnd {
  585. font-size: 34rpx;
  586. flex: 1;
  587. padding-bottom: 16rpx;
  588. }
  589. }
  590. // 业务信息-检查
  591. &.business_inspect {
  592. .inspect_info {
  593. font-size: 34rpx;
  594. color: #333;
  595. padding-top: 20rpx;
  596. padding-bottom: 20rpx;
  597. @include border($directive:bottom, $style:dashed);
  598. .inspect_info_block {
  599. height: 60rpx;
  600. @include flex(space-between, center);
  601. .inspect_info_left {
  602. @include flex;
  603. .inspect_info_icon {
  604. width: 50rpx;
  605. height: 50rpx;
  606. line-height: 50rpx;
  607. border-radius: 50%;
  608. font-size: 28rpx;
  609. margin-right: 8rpx;
  610. @include flex(center, center);
  611. &.green {
  612. color: $defaultColor;
  613. border: 1px solid $defaultColor;
  614. background-color: rgba(73, 184, 86, 0.1);
  615. }
  616. &.red {
  617. color: #FF3B53;
  618. border: 1px solid #FF3B53;
  619. background-color: #FFE8EB;
  620. }
  621. }
  622. .inspect_info_name {
  623. font-weight: bold;
  624. }
  625. }
  626. .inspect_info_right {
  627. font-weight: bold;
  628. }
  629. }
  630. }
  631. .inspect_item {
  632. color: #333;
  633. font-size: 34rpx;
  634. line-height: 48rpx;
  635. padding-top: 26rpx;
  636. padding-bottom: 26rpx;
  637. @include border($directive:bottom, $style:dashed);
  638. .inspect_item_name {
  639. font-weight: bold;
  640. }
  641. .inspect_item_yytime {
  642. font-weight: bold;
  643. }
  644. .inspect_item_info {
  645. margin-top: 16rpx;
  646. margin-bottom: 16rpx;
  647. @include flex(space-between, center);
  648. .inspect_item_dept {
  649. flex: 1;
  650. word-break: break-all;
  651. @include clamp;
  652. }
  653. .inspect_item_number {
  654. flex: 1;
  655. text-align: right;
  656. word-break: break-all;
  657. @include clamp;
  658. }
  659. }
  660. }
  661. }
  662. // 业务信息-标本
  663. &.business_specimen {
  664. font-size: 34rpx;
  665. .th {
  666. background-color: red;
  667. @include btn_background;
  668. th {
  669. color: #fff;
  670. }
  671. }
  672. .td {
  673. position: relative;
  674. .urgent {
  675. width: 60rpx;
  676. position: absolute !important;
  677. right: 0;
  678. top: 0;
  679. }
  680. }
  681. .table--border {
  682. border: none;
  683. }
  684. ::v-deep .uni-table {
  685. min-width: 0;
  686. }
  687. ::v-deep .uni-table-td {
  688. word-break: break-all;
  689. }
  690. }
  691. // 业务信息-药品
  692. &.business_drugsBag {
  693. .drugsBag_item {
  694. color: #333;
  695. font-size: 34rpx;
  696. margin-top: 20rpx;
  697. @include flex(space-between, center);
  698. .drugsBag_item_name {}
  699. .drugsBag_item_value {
  700. font-weight: bold;
  701. }
  702. }
  703. }
  704. }
  705. }
  706. }
  707. }
  708. </style>