detail copy.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. <template>
  2. <view class="tour-container">
  3. <uni-nav-bar
  4. fixed="true"
  5. statusBar="true"
  6. left-icon="back"
  7. title="巡点检工单详情"
  8. @clickLeft="back"
  9. right-icon="scan"
  10. @clickRight="HandlScanCode"
  11. >
  12. </uni-nav-bar>
  13. <view class="tour-wrapper">
  14. <view class="tour_tally-content">
  15. <KdTabs
  16. v-model="active"
  17. @change="handleTabChange"
  18. :list="['基本信息', '巡点检设备']"
  19. />
  20. <view class="kd-baseInfo" v-show="active === 0">
  21. <view class="kd-cell">
  22. <text class="kd-label">工单编号</text
  23. >{{ worksheetInfo.workOrderCode }}
  24. </view>
  25. <view class="kd-cell">
  26. <text class="kd-label">计划名称</text>
  27. <text class="kd-content">{{ worksheetInfo.planName }}</text>
  28. </view>
  29. <!-- <view class="kd-cell">
  30. <text class="kd-label">巡点检周期</text>
  31. <text class="kd-content"
  32. >{{ worksheetInfo.cycleValue
  33. }}{{ cycleOptObj[worksheetInfo.cycleType] }}</text
  34. >
  35. </view> -->
  36. <view class="kd-cell">
  37. <text class="kd-label">设备分类</text>
  38. <text class="kd-content">{{ worksheetInfo.equiTypeName }}</text>
  39. </view>
  40. <view class="kd-cell">
  41. <text class="kd-label">巡检设备总数</text>
  42. <text class="kd-content text-warning"
  43. >{{
  44. worksheetInfo.equipCount - worksheetInfo.awaitInspectSum || 0
  45. }}/{{ worksheetInfo.equipCount }}</text
  46. >
  47. </view>
  48. <view class="kd-cell">
  49. <text class="kd-label">计划完成时长</text
  50. >{{ worksheetInfo.duration }}分钟
  51. </view>
  52. <view class="kd-cell">
  53. <text class="kd-label">实际完成时长</text
  54. >{{
  55. finishTime(worksheetInfo.acceptTime, worksheetInfo.finishTime)
  56. }}
  57. </view>
  58. <view class="kd-cell">
  59. <text class="kd-label">实际开始时间</text
  60. >{{ worksheetInfo.acceptTime }}
  61. </view>
  62. <view class="kd-cell">
  63. <text class="kd-label">实际完成时间</text
  64. >{{ worksheetInfo.finishTime }}
  65. </view>
  66. <!-- <u-button type="primary" size="large" text="开始执行"></u-button> -->
  67. <template v-if="worksheetInfo.status">
  68. <template v-if="worksheetInfo.status.code === 0">
  69. <button class="btn-execute" type="primary" @click="handleExecute">
  70. 开始执行
  71. </button>
  72. <button
  73. class="btn-reassignment"
  74. type="primary"
  75. @click="handleAssign"
  76. >
  77. 转派
  78. </button>
  79. </template>
  80. <button
  81. v-else-if="worksheetInfo.status.code === 1"
  82. class="btn-execute"
  83. type="primary"
  84. @click="handleReport"
  85. >
  86. 报工
  87. </button>
  88. <button
  89. v-else-if="worksheetInfo.status.code === 3"
  90. :disabled="true"
  91. class="btn-execute"
  92. type="primary"
  93. >
  94. 已报工
  95. </button>
  96. </template>
  97. </view>
  98. <view class="kd-equipment" v-show="active === 1">
  99. <view class="kd-type-box">
  100. <text
  101. :class="{ 'type—active': typeActive === index }"
  102. v-for="(item, index) in equpStatus"
  103. :key="index"
  104. @click="typeChange(index)"
  105. >{{ item.name }}</text
  106. >
  107. </view>
  108. <view class="kd-list-container">
  109. <u-list @scrolltolower="scrolltolower">
  110. <u-list-item v-for="(item, index) in euqiList" :key="index">
  111. <view class="kd-card">
  112. <view class="kd-card-wrapper">
  113. <view class="kd-cell">
  114. <text class="kd-label">设备编码</text>{{ item.equiCode }}
  115. </view>
  116. <view class="kd-cell">
  117. <text class="kd-label">设备名称</text>{{ item.equiName }}
  118. </view>
  119. <view class="kd-cell">
  120. <text class="kd-label">设备型号</text>{{ item.equiModel }}
  121. </view>
  122. <view class="kd-cell">
  123. <text class="kd-label">设备位置</text
  124. >{{ item.equiLocation }}
  125. </view>
  126. <view class="kd-cell">
  127. <text class="kd-label">执行结果</text>
  128. <text
  129. class="status-box text-warning"
  130. v-if="item.resultStatus === 0"
  131. >待检</text
  132. >
  133. <text
  134. class="status-box text-primary"
  135. v-else-if="item.resultStatus === 1"
  136. >正常</text
  137. >
  138. <text
  139. class="status-box text-danger"
  140. v-else-if="item.resultStatus === 2"
  141. >缺陷</text
  142. >
  143. <text
  144. class="status-box text-primary"
  145. v-else-if="item.resultStatus === 3"
  146. >已报修</text
  147. >
  148. </view>
  149. </view>
  150. <view class="card-footer">
  151. <button
  152. type="primary"
  153. class="primary-btn"
  154. @click="handleCheck(item)"
  155. v-if="
  156. worksheetInfo.status && worksheetInfo.status.code === 1
  157. "
  158. >
  159. 检查
  160. </button>
  161. <template
  162. v-if="
  163. worksheetInfo.status && worksheetInfo.status.code === 3
  164. "
  165. >
  166. <button
  167. type="default"
  168. v-if="item.resultStatus === 3"
  169. @click="handLbxDetail(item)"
  170. >
  171. 报修详情
  172. </button>
  173. <button
  174. type="default"
  175. v-else-if="item.resultStatus === 2"
  176. @click="handLbx(item)"
  177. >
  178. 报修
  179. </button>
  180. </template>
  181. <button
  182. type="default"
  183. v-if="
  184. [0, 3].includes(
  185. worksheetInfo.status && worksheetInfo.status.code
  186. )
  187. "
  188. @click="checkDetail(item)"
  189. >
  190. 检查详情
  191. </button>
  192. </view>
  193. </view>
  194. </u-list-item>
  195. </u-list>
  196. </view>
  197. </view>
  198. </view>
  199. <uni-popup ref="inputDialog" type="dialog">
  200. <uni-popup-dialog
  201. ref="inputClose"
  202. mode="input"
  203. title="您当前已超出计划完成时间,请填写原因"
  204. placeholder="请输入内容"
  205. :before-close="true"
  206. @close="handleClose"
  207. @confirm="timeoutCauseConfirm"
  208. ></uni-popup-dialog>
  209. </uni-popup>
  210. </view>
  211. <u-modal :show="modalShow" title="提示" @confirm="modalShow = false">
  212. <view
  213. >您还有
  214. <text class="text-warning">{{ worksheetInfo.awaitInspectSum }}</text>
  215. 台设备待检,不可报工
  216. </view>
  217. </u-modal>
  218. <Assign ref="assignRef" @success="assignSuccess" />
  219. <!-- <ScanCode @scancodedate="scancodedate"></ScanCode> -->
  220. </view>
  221. </template>
  222. <script>
  223. import { get, post, postJ } from '@/utils/api.js'
  224. import Assign from '@/components/Assign.vue'
  225. import CellInfo from '@/components/CellInfo.vue'
  226. import KdTabs from '@/components/KdTabs.vue'
  227. import ScanCode from '@/components/ScanCode.vue'
  228. export default {
  229. components: {
  230. CellInfo,
  231. KdTabs,
  232. Assign,
  233. ScanCode
  234. },
  235. data () {
  236. return {
  237. modalShow: false,
  238. active: 0,
  239. typeActive: 0,
  240. statusList: {
  241. 0: '待接收',
  242. 1: '执行中',
  243. 3: '已完成'
  244. },
  245. pageId: '',
  246. workOrderCode: '',
  247. worksheetInfo: {
  248. equiList: [],
  249. workOrder: {}
  250. },
  251. equpStatus: [
  252. // {
  253. // name: '全部',
  254. // value: []
  255. // },
  256. {
  257. name: '待检',
  258. value: [0]
  259. },
  260. {
  261. name: '已检',
  262. value: [1, 2, 3]
  263. },
  264. {
  265. name: '缺陷',
  266. value: [2]
  267. },
  268. {
  269. name: '全部',
  270. value: []
  271. }
  272. ],
  273. euqiList: [],
  274. equipPage: 1,
  275. isEnd: false,
  276. cycleOptObj: {
  277. 1: '时/次',
  278. 2: '天/次',
  279. 3: '周/次',
  280. 4: '月/次',
  281. 5: '年/次',
  282. 11: '次/天',
  283. 12: '次/周',
  284. 13: '次/月',
  285. 14: '次/年'
  286. },
  287. barType: 0,
  288. qrContent: null,
  289. chooseTab: false
  290. }
  291. },
  292. async onLoad (options) {
  293. console.log('options------------', options)
  294. this.workOrderCode = options.workOrderCode
  295. this.pageId = options.id
  296. this.chooseTab = options.chooseTab
  297. // 设备台账跳转详情
  298. if (options.qrContent) {
  299. this.qrContent = options.qrContent
  300. await this.getInfo()
  301. this.cbScancodedate({
  302. code: this.qrContent
  303. })
  304. }
  305. },
  306. onShow () {
  307. this.getInfo()
  308. if (this.chooseTab) {
  309. this.active = 1
  310. this.typeChange(2)
  311. } else {
  312. this.typeChange(0)
  313. }
  314. let _this = this
  315. uni.$off('scancodedate') // 每次进来先 移除全局自定义事件监听器
  316. uni.$on('scancodedate', function (data) {
  317. _this.cbScancodedate(data)
  318. })
  319. },
  320. onUnload () {
  321. uni.$off('scancodedate')
  322. },
  323. onHide () {
  324. uni.$off('scancodedate')
  325. },
  326. methods: {
  327. // 扫码枪扫码
  328. cbScancodedate (data) {
  329. this.Scancodedate(data.code)
  330. },
  331. // 相机扫码
  332. HandlScanCode () {
  333. let _this = this
  334. uni.scanCode({
  335. onlyFromCamera: true,
  336. success: function (res) {
  337. _this.Scancodedate(res.result)
  338. }
  339. })
  340. },
  341. Scancodedate (code) {
  342. let _this = this
  343. if (this.worksheetInfo.status.code === 0) {
  344. uni.showModal({
  345. title: '提示',
  346. content: '工单未开启执行,不可进行巡点检操作,请先点击“开始执行”!',
  347. confirmText: '开始执行', //这块是确定按钮的文字
  348. cancelText: '取消', //这块是取消的文字
  349. success: function (res) {
  350. if (res.confirm) {
  351. _this.handleExecute() // 执行确认后的操作
  352. } else {
  353. // 执行取消后的操作
  354. }
  355. }
  356. })
  357. return
  358. }
  359. this.qrContent = code.trim()
  360. this.barType = this.setBarType(this.qrContent)
  361. _this.getData()
  362. },
  363. // 设置barType
  364. setBarType (val) {
  365. let index = val.indexOf('@_@')
  366. let result = 0
  367. if (index !== -1) {
  368. let item = val.substr(index + 3, 1)
  369. if (item) {
  370. result = Number(item)
  371. }
  372. }
  373. return result
  374. },
  375. // 根据条码请求设备数据
  376. getData () {
  377. let par = {
  378. barType: this.barType,
  379. qrContent: this.qrContent
  380. }
  381. uni.showLoading({
  382. title: '加载中',
  383. mask: true
  384. })
  385. getWorkOrderDetail()
  386. postJ(this.apiUrl + '/scan/getAssetInfo', par)
  387. .then(res => {
  388. let data = res.data
  389. this.matchEquipment(data)
  390. })
  391. .finally(() => {
  392. uni.hideLoading()
  393. })
  394. },
  395. matchEquipment (data) {
  396. let par = {
  397. assetCode: data.assetCode,
  398. workOrderId: this.worksheetInfo.id
  399. }
  400. console.log('par', par)
  401. post(this.apiUrl + '/workOrder/scanMatching', par).then(res => {
  402. let data = res.data
  403. if (!data) {
  404. uni.showModal({
  405. title: '提示',
  406. content: '本工单中,无此设备!',
  407. confirmText: '好的', //这块是确定按钮的文字
  408. showCancel: false,
  409. success: function (res) {
  410. if (res.confirm) {
  411. // 执行确认后的操作
  412. } else {
  413. // 执行取消后的操作
  414. }
  415. }
  416. })
  417. } else {
  418. // 未报工
  419. if (this.worksheetInfo.status.code === 1) {
  420. this.handleCheck(data)
  421. }
  422. // 已报工
  423. if (this.worksheetInfo.status.code === 3) {
  424. this.checkDetail(data)
  425. }
  426. }
  427. })
  428. },
  429. handleAssign () {
  430. this.$refs.assignRef.open(this.pageId)
  431. },
  432. assignSuccess () {
  433. this.back()
  434. },
  435. // 报工
  436. handleReport () {
  437. // if (
  438. // new Date(this.worksheetInfo.planFinishTime).getTime() <
  439. // new Date().getTime()
  440. // ) {
  441. // this.$refs.inputDialog.open()
  442. // return
  443. // }
  444. this._report()
  445. },
  446. handleClose () {
  447. this.$refs.inputDialog.close()
  448. },
  449. timeoutCauseConfirm (value) {
  450. if (!value) {
  451. uni.showToast({
  452. title: '请输入超时原因',
  453. icon: 'none'
  454. })
  455. return
  456. }
  457. this.$refs.inputDialog.close()
  458. this._report(value)
  459. },
  460. _report (timeoutCause = '') {
  461. post(
  462. this.apiUrl + '/workOrder/reportWork',
  463. {
  464. workOrderId: this.pageId,
  465. timeoutCause
  466. },
  467. true,
  468. false
  469. )
  470. .then(res => {
  471. let _this = this
  472. if (res?.success) {
  473. let data = res.data
  474. if (data.length) {
  475. uni.showModal({
  476. title: '提示',
  477. content: `有${data.length}台设备被标记为缺陷,是否要报修?`,
  478. cancelText: '取消', // 取消按钮的文字
  479. confirmText: '报修', // 确认按钮的文字
  480. showCancel: true, // 是否显示取消按钮,默认为 true
  481. success: res => {
  482. if (res.confirm) {
  483. if (data.length > 1) {
  484. uni.navigateTo({
  485. url: `/pages/tour_tally/detail/detail?workOrderCode=${this.workOrderCode}&id=${this.pageId}&chooseTab=true`
  486. })
  487. } else {
  488. uni.navigateTo({
  489. url: `/pages/repair/repair/index?source=5&workOrderCode=${this.workOrderCode}&equiCode=${data[0].equiCode}&equiId=${data[0].equiId}&workOrderId=${this.pageId}&equiName=${data[0].equiName}&equiModel=${data[0].equiModel}&equiLocation=${data[0].equiLocation}`
  490. })
  491. }
  492. } else {
  493. _this.getInfo()
  494. }
  495. }
  496. })
  497. } else {
  498. uni.showToast({
  499. icon: 'success',
  500. title: '操作成功!',
  501. duration: 2000
  502. })
  503. this.getInfo()
  504. }
  505. }
  506. /* if (res?.success) {
  507. uni.showToast({
  508. icon: "success",
  509. title: "操作成功!",
  510. duration: 2000,
  511. });
  512. this.getInfo();
  513. } */
  514. })
  515. .catch(res => {
  516. if (res.code === '4444') {
  517. this.$refs.inputDialog.open()
  518. } else if (res.code === '5555') {
  519. this.modalShow = true
  520. // uni.showModal({
  521. // title: '提示',
  522. // content: `您还有 ${this.worksheetInfo.awaitInspectSum} 台设备待检,不可报工`,
  523. // success: function (res) {},
  524. // showCancel: false
  525. // })
  526. }
  527. })
  528. },
  529. // 执行工单
  530. handleExecute () {
  531. post(this.apiUrl + '/workOrder/execute', {
  532. workOrderCode: this.workOrderCode
  533. }).then(res => {
  534. if (res?.success) {
  535. uni.showToast({
  536. icon: 'success',
  537. title: '操作成功!',
  538. duration: 2000
  539. })
  540. this.getInfo()
  541. }
  542. })
  543. },
  544. //巡点检设备加载更多
  545. scrolltolower () {
  546. if (this.isEnd) return
  547. this.equipPage++
  548. this.getEquipList()
  549. },
  550. // 巡点检设备列表
  551. getEquipList () {
  552. const params = {
  553. workOrderId: this.pageId,
  554. resultStatus: this.equpStatus[this.typeActive].value
  555. }
  556. post(
  557. this.apiUrl +
  558. `/workOrder/getEquipmentListApp?page=${this.equipPage}&size=10`,
  559. params,
  560. true
  561. ).then(res => {
  562. if (res?.success) {
  563. if (this.equipPage === 1) {
  564. this.euqiList = res.data.records
  565. } else {
  566. this.euqiList.push(...res.data.records)
  567. }
  568. this.isEnd = this.euqiList.length >= res.data.total
  569. }
  570. })
  571. },
  572. handleTabChange (value) {
  573. if (value === 1) {
  574. this.typeChange(0)
  575. }
  576. },
  577. finishTime (start, end) {
  578. if (!end) return ''
  579. let dur = new Date(end).getTime() - new Date(start).getTime()
  580. return Math.ceil(dur / 1000 / 60) + '分钟'
  581. },
  582. // 设备状态切换
  583. typeChange (type) {
  584. this.typeActive = type
  585. this.equipPage = 1
  586. this.getEquipList()
  587. },
  588. handleCheck ({ id, equiName, equiCode }) {
  589. uni.navigateTo({
  590. url: `/pages/tour_tally/check/index?id=${id}&equiName=${equiName}&equiCode=${equiCode}&workOrderId=${this.pageId}&workOrderCode=${this.workOrderCode}`
  591. })
  592. },
  593. checkDetail ({ id, equiName, equiCode }) {
  594. uni.navigateTo({
  595. url: `/pages/tour_tally/check/detail?id=${id}&equiName=${equiName}&equiCode=${equiCode}&workOrderId=${this.pageId}`
  596. })
  597. },
  598. getInfo () {
  599. return post(this.apiUrl + '/workOrder/getDetailsApp', {
  600. workOrderCode: this.workOrderCode
  601. }).then(res => {
  602. if (res?.success) {
  603. this.worksheetInfo = res.data
  604. }
  605. })
  606. },
  607. // 报修
  608. handLbx (item) {
  609. console.log('item', item)
  610. uni.navigateTo({
  611. url: `/pages/repair/repair/index?source=5&workOrderCode=${this.workOrderCode}&equiCode=${item.equiCode}&equiId=${item.equiId}&workOrderId=${this.pageId}&equiName=${item.equiName}&equiModel=${item.equiModel}&equiLocation=${item.equiLocation}`
  612. })
  613. },
  614. // 报修详情
  615. handLbxDetail (item) {
  616. uni.navigateTo({
  617. url: `/pages/repair/detail/detail?id=${item.repairId}`
  618. })
  619. }
  620. }
  621. }
  622. </script>
  623. <style lang="scss" scoped>
  624. @import '@/components/submitted.scss';
  625. .list-cell {
  626. display: flex;
  627. align-items: center;
  628. justify-content: space-between;
  629. color: $uni-text-color-grey;
  630. padding: 5rpx 20rpx;
  631. }
  632. .font-sm {
  633. font-size: $uni-font-size-sm;
  634. }
  635. .font-text {
  636. color: $uni-text-color;
  637. }
  638. .btn-execute {
  639. background-color: $j-primary-border-green;
  640. width: 450rpx;
  641. margin-top: 5vh;
  642. }
  643. .btn-reassignment {
  644. color: $uni-color-primary;
  645. background-color: transparent;
  646. border: none;
  647. box-shadow: none;
  648. &::after {
  649. display: none;
  650. }
  651. }
  652. .tour-container {
  653. position: fixed;
  654. top: 0;
  655. bottom: 0;
  656. width: 100vw;
  657. display: flex;
  658. flex-direction: column;
  659. /deep/.u-popup {
  660. flex: none !important;
  661. }
  662. }
  663. .tour-wrapper {
  664. position: relative;
  665. flex: 1;
  666. }
  667. .tour_tally-content {
  668. padding-top: 40rpx;
  669. box-sizing: border-box;
  670. // height: calc(100vh - 88rpx);
  671. position: absolute;
  672. top: 0;
  673. bottom: 0;
  674. left: 0;
  675. right: 0;
  676. display: flex;
  677. flex-direction: column;
  678. }
  679. .kd-cell {
  680. min-height: 90rpx;
  681. border-bottom: 1px dashed #dadada;
  682. display: flex;
  683. align-items: center;
  684. .kd-label {
  685. display: inline-block;
  686. width: 7em;
  687. font-weight: bold;
  688. }
  689. .kd-content {
  690. flex: 1;
  691. word-break: break-all;
  692. }
  693. }
  694. .kd-baseInfo {
  695. padding: 0 32rpx;
  696. font-size: 28rpx;
  697. }
  698. .kd-equipment {
  699. flex: 1;
  700. display: flex;
  701. flex-direction: column;
  702. overflow: hidden;
  703. .kd-type-box {
  704. text-align: center;
  705. padding: 26rpx 0;
  706. text {
  707. display: inline-block;
  708. width: 120rpx;
  709. padding: 4rpx 0;
  710. color: #333;
  711. margin: 0 8rpx;
  712. &.type—active {
  713. background-color: rgba(215, 215, 215, 1);
  714. }
  715. }
  716. }
  717. .kd-list-container {
  718. flex: 1;
  719. display: flex;
  720. flex-direction: column;
  721. overflow: hidden;
  722. padding: 12rpx 18rpx;
  723. background-color: $page-bg;
  724. .u-list {
  725. flex: 1;
  726. height: 100% !important;
  727. }
  728. }
  729. }
  730. .kd-card {
  731. background-color: #fff;
  732. margin-bottom: 20rpx;
  733. padding: 8rpx 0;
  734. font-size: 28rpx;
  735. word-break: break-all;
  736. .kd-card-wrapper {
  737. padding: 0 30rpx;
  738. border-bottom: 1px solid #dadada;
  739. }
  740. .kd-cell {
  741. line-height: 60rpx;
  742. }
  743. .kd-cell:last-of-type {
  744. border-bottom: none;
  745. }
  746. .status-box {
  747. margin-right: 16rpx;
  748. }
  749. .card-footer {
  750. display: flex;
  751. justify-content: flex-end;
  752. align-items: center;
  753. padding: 8rpx 0 20rpx;
  754. button {
  755. width: 180rpx;
  756. height: 56rpx;
  757. line-height: 56rpx;
  758. font-size: 28rpx;
  759. margin: 0 8rpx;
  760. }
  761. .primary-btn {
  762. background-color: $j-primary-border-green;
  763. }
  764. }
  765. }
  766. </style>