index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. <template>
  2. <div class="app-container">
  3. <el-row>
  4. <el-col :span="24">
  5. <div class="cell">
  6. <div class="cell-title">
  7. <div class="title-left">
  8. <div class="title">台账管理</div>
  9. </div>
  10. </div>
  11. <div class="calc">
  12. <div class="calc-item">
  13. <div class="calc-item-text">{{ tongji.orderT }}</div>
  14. <div class="calc-item-desc">订单总额(元)</div>
  15. </div>
  16. <div class="calc-item">
  17. <div class="calc-item-text">{{ tongji.payT }}</div>
  18. <div class="calc-item-desc">支付总额(元)</div>
  19. </div>
  20. <div class="calc-item">
  21. <div class="calc-item-text">{{ tongji.refundT }}</div>
  22. <div class="calc-item-desc">退款总额(元)</div>
  23. </div>
  24. <div class="calc-item">
  25. <div class="calc-item-text">{{ tongji.inT }}</div>
  26. <div class="calc-item-desc">入账总额(元)</div>
  27. </div>
  28. </div>
  29. <div class="cell-body">
  30. <div class="controls">
  31. <el-form :inline="true" :model="formInline" class="demo-form-inline">
  32. <el-form-item label="所属乡镇">
  33. <el-select v-model="formInline.id" clearable placeholder="请选择" style="width: 120px;">
  34. <el-option v-for="item in formInline.options" :key="item.id" :label="item.hotelTownship" :value="item.id">
  35. </el-option>
  36. </el-select>
  37. </el-form-item>
  38. <el-form-item label="订单金额">
  39. <el-input placeholder="请输入金额" v-model="formInline.amount1" clearable style="width: 118px;">
  40. </el-input>
  41. -
  42. <el-input placeholder="请输入金额" v-model="formInline.amount2" clearable style="width: 118px;">
  43. </el-input>
  44. </el-form-item>
  45. <el-form-item label="交易时间">
  46. <el-date-picker v-model="formInline.search_datatime" type="daterange" align="right" start-placeholder="开始日期"
  47. end-placeholder="结束日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd">
  48. </el-date-picker>
  49. </el-form-item>
  50. <el-form-item label="清账状态">
  51. <el-select v-model="formInline.qz_id" clearable placeholder="请选择" style="width: 120px;">
  52. <el-option v-for="item in formInline.clear_qz" :key="item.qz_id" :label="item.label" :value="item.qz_id">
  53. </el-option>
  54. </el-select>
  55. </el-form-item>
  56. <el-form-item label="">
  57. <el-input v-model="formInline.keyword" style="width: 150px;" prefix-icon="el-icon-search" clearable
  58. placeholder="请输入关键字"></el-input>
  59. </el-form-item>
  60. <el-form-item>
  61. <el-button type="primary" class="btn-search" @click="btn_search">查询</el-button>
  62. </el-form-item>
  63. </el-form>
  64. <div class="btns">
  65. <el-button type="primary" class="qingzhang" @click="toggle_qingzhang">清账/取消</el-button>
  66. <el-button type="primary" icon="el-icon-download" class="btn-export" @click="exportExcel">导出订单</el-button>
  67. </div>
  68. </div>
  69. <el-table :data="tableData" height="466" style="width: 100%" :cell-style="cell_style" v-loading="loading"
  70. :header-cell-style="header_cell_style" @selection-change="handle_table_change">
  71. <el-table-column type="selection" width="50"></el-table-column>
  72. <el-table-column label="交易时间" align="center" width="155" fixed="left">
  73. <template slot-scope="scope">
  74. <span>{{ scope.row.payTime }}</span>
  75. </template>
  76. </el-table-column>
  77. <el-table-column label="所属乡镇" align="center" width="120" fixed="left">
  78. <template slot-scope="scope">
  79. <span>{{ scope.row.hotelTownshipName }}</span>
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="民宿名称" align="center" width="120" fixed="left">
  83. <template slot-scope="scope">
  84. <span>{{ scope.row.hotelName }}</span>
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="订单号" align="center" width="160">
  88. <template slot-scope="scope">
  89. <span>{{ scope.row.orderNum }}</span>
  90. </template>
  91. </el-table-column>
  92. <el-table-column label="订单金额(元)" align="center" width="150">
  93. <template slot-scope="scope">
  94. <span>{{ scope.row.orderAccount }}</span>
  95. </template>
  96. </el-table-column>
  97. <el-table-column label="支付金额(元)" align="center" width="150">
  98. <template slot-scope="scope">
  99. <span>{{ scope.row.payAccount }}</span>
  100. </template>
  101. </el-table-column>
  102. <el-table-column label="退款金额(元)" align="center" width="150">
  103. <template slot-scope="scope">
  104. <span>{{ scope.row.refundAmount }}</span>
  105. </template>
  106. </el-table-column>
  107. <el-table-column label="入账金额(元)" align="center" width="160">
  108. <template slot-scope="scope">
  109. <span>{{ scope.row.inAccount }}</span>
  110. </template>
  111. </el-table-column>
  112. <el-table-column label="退房时间" align="center" width="155" fixed="right">
  113. <template slot-scope="scope">
  114. <span>{{ scope.row.checkOutTime }}</span>
  115. </template>
  116. </el-table-column>
  117. <el-table-column label="清账状态" align="center" width="100" fixed="right">
  118. <template slot-scope="scope">
  119. <span v-if="scope.row.saccountState == 1" style="color: rgba(10, 118, 78, 1.0);">已清账</span>
  120. <span v-else style="color: rgba(248, 138, 100, 1.0);">未清账</span>
  121. </template>
  122. </el-table-column>
  123. <el-table-column label="清账时间" align="center" width="155" fixed="right">
  124. <template slot-scope="scope">
  125. <span>{{ scope.row.saccountTime }}</span>
  126. </template>
  127. </el-table-column>
  128. </el-table>
  129. <div class="pagination-table">
  130. <el-pagination @current-change="currentPageChange" :current-page.sync="pagination.currentPage" :page-size="pagination.pageSize"
  131. layout="prev, pager, next, jumper" :total="pagination.total">
  132. </el-pagination>
  133. </div>
  134. </div>
  135. </div>
  136. </el-col>
  137. </el-row>
  138. <el-dialog custom-class="dialog-qingzhang" :visible.sync="dialog_qingzhang" :close-on-click-modal="false" :close-on-press-escape="false"
  139. :show-close="false">
  140. <div slot="" class="dialog-qingzhang-body">
  141. <img src="../../icons/serveAC/del_warning.png" alt="">
  142. <div class="dialog-qingzhang-body-txt">确定对已选的订单进行【清账/取消清账】处理吗?<br>处理后清账状态将变更。</div>
  143. </div>
  144. <div slot="footer" class="dialog-footer">
  145. <el-button class="add-user-cancel-btn" @click="dialog_qingzhang = false"> 取消 </el-button>
  146. <el-button class="add-user-confirm-btn" @click="handle_qingzhang"> 确定 </el-button>
  147. </div>
  148. </el-dialog>
  149. </div>
  150. </template>
  151. <script>
  152. import {
  153. getTableData,
  154. getTowns,
  155. downloadExcel,
  156. bookmodifyAaccountStatus,
  157. bookqueryLedgerTj
  158. } from '@/api/stdbookMgr'
  159. import {
  160. isEmpty
  161. } from '@/js/common'
  162. export default {
  163. data() {
  164. return {
  165. currentUserLevel: this.$store.state.user.level, // 当前用户的权限
  166. dialogImageUrl: '',
  167. formLabelWidth: '120px',
  168. // 表格单元格样式
  169. cell_style: {
  170. color: '#1A202B',
  171. 'font-size': '14px',
  172. 'font-family': 'Microsoft YaHei-3970(82674968)'
  173. },
  174. // 表格头部样式
  175. header_cell_style: {
  176. background: '#E6ECFE',
  177. color: '#1A202B',
  178. 'font-size': '16px',
  179. 'font-family': 'Microsoft YaHei-3970(82674968)'
  180. },
  181. // 查询数据
  182. formInline: {
  183. options: [],
  184. id: '',
  185. amount1: '',
  186. amount2: '',
  187. search_datatime: '',
  188. clear_qz: [{
  189. qz_id: 1,
  190. label: '已清账'
  191. }, {
  192. qz_id: 0,
  193. label: '未清账'
  194. }],
  195. qz_id: '',
  196. keyword: ''
  197. },
  198. tableData: [],
  199. cond_data: {},
  200. // 分页参数
  201. pagination: {
  202. currentPage: 1,
  203. pageSize: 8,
  204. total: 0
  205. },
  206. loading: true,
  207. dialog_qingzhang: false,
  208. bookmodifyAaccountStatus_data: {
  209. saccountState: 1,
  210. hotelConfigList: []
  211. },
  212. tongji: {
  213. orderT: 0.00.toFixed(2),
  214. payT: 0.00.toFixed(2),
  215. refundT: 0.00.toFixed(2),
  216. inT: 0.00.toFixed(2)
  217. }
  218. }
  219. },
  220. created() {
  221. // 检测权限
  222. if (this.currentUserLevel !== 2) {
  223. this.$router.replace({
  224. path: '/data'
  225. })
  226. return
  227. }
  228. // 获取消费记录,表格数据
  229. this.get_table_data('list')
  230. // 调用台账统计查询
  231. this.bookqueryLedgerTj()
  232. // 获取乡镇
  233. this.get_towns()
  234. },
  235. mounted() {
  236. document.getElementsByClassName("el-pagination__jump")[0].childNodes[0].nodeValue = "跳至";
  237. },
  238. methods: {
  239. // 台账统计查询实现
  240. bookqueryLedgerTj() {
  241. this.get_condtion();
  242. var that = this
  243. bookqueryLedgerTj(this.cond_data).then((res) => {
  244. // console.log(res);
  245. if (res.code === 200) {
  246. that.tongji.orderT = res.orderT.tj.toFixed(2)
  247. that.tongji.payT = res.payT.tj.toFixed(2)
  248. that.tongji.refundT = res.refundT.tj.toFixed(2)
  249. that.tongji.inT = res.inT.tj.toFixed(2)
  250. } else {
  251. that.tongji.orderT = 0.00.toFixed(2)
  252. that.tongji.payT = 0.00.toFixed(2)
  253. that.tongji.refundT = 0.00.toFixed(2)
  254. that.tongji.inT = 0.00.toFixed(2)
  255. }
  256. }).catch((err) => {
  257. that.$message.error(err.message)
  258. });
  259. },
  260. // 获取选择的文章ids
  261. handle_table_change(selection) {
  262. // console.log(selection);
  263. // 保存要删除和更新的ids
  264. var qz = 0
  265. var clear_qz = 0
  266. this.bookmodifyAaccountStatus_data.hotelConfigList = []
  267. selection.forEach(row => {
  268. this.bookmodifyAaccountStatus_data.hotelConfigList.push(row.id)
  269. if (row.saccountState == 1) {
  270. clear_qz++
  271. } else {
  272. qz++
  273. }
  274. });
  275. if (qz > 0 && clear_qz > 0) {
  276. const h = this.$createElement;
  277. this.$msgbox({
  278. title: '消息',
  279. message: h('p', null, [
  280. h('div', {
  281. style: 'color: red; text-align: center;'
  282. }, '选择存在【待清账】和【待取消清账】:'),
  283. h('div', {
  284. style: 'color: teal; text-align: center;'
  285. }, '【待清账】 ' + qz + ' 条'),
  286. h('div', {
  287. style: 'color: teal; text-align: center;'
  288. }, '【待取消】 ' + clear_qz + ' 条')
  289. ]),
  290. confirmButtonText: '我知道了',
  291. }).then(action => {});
  292. }
  293. },
  294. // 清账/取消清账
  295. handle_qingzhang() {
  296. bookmodifyAaccountStatus(this.bookmodifyAaccountStatus_data).then((res) => {
  297. if (res.code === 200) {
  298. this.get_table_data('list')
  299. this.$message.success(res.message)
  300. this.dialog_qingzhang = false
  301. } else {
  302. this.$message.warning(res.message)
  303. }
  304. }).catch((err) => {
  305. this.$message.error(err.message)
  306. });
  307. },
  308. // 清账切换
  309. toggle_qingzhang() {
  310. if (isEmpty(this.bookmodifyAaccountStatus_data.hotelConfigList)) {
  311. this.$message.warning('请选择记录')
  312. return
  313. }
  314. this.dialog_qingzhang = true
  315. },
  316. // 获取乡镇列表
  317. get_towns() {
  318. getTowns().then((res) => {
  319. if (res.code === 200) {
  320. this.formInline.options = []
  321. for (var i = 0; i < res.data.length; i++) {
  322. let town = {
  323. id: res.data[i].id,
  324. hotelTownship: res.data[i].name
  325. }
  326. this.formInline.options.push(town)
  327. }
  328. } else {
  329. if (res.data.length === 0) {
  330. this.formInline.options = []
  331. this.$message.warning('没有符合条件的数据!')
  332. } else {
  333. this.$message.warning(res.message)
  334. }
  335. }
  336. }).catch((err) => {
  337. // console.log(err);
  338. this.$message.error(err.message)
  339. });
  340. },
  341. /**
  342. * 获取消费记录,表格数据
  343. */
  344. get_table_data(param) {
  345. this.loading = true
  346. this.get_condtion();
  347. let data = this.cond_data;
  348. if (param == 'search') {
  349. data.page = 1
  350. this.pagination.currentPage = 1
  351. }
  352. var that = this
  353. // console.log(data);
  354. getTableData(data).then((res) => {
  355. // console.log(res);
  356. if (res.code === 200) {
  357. var d = res.data
  358. that.pagination.total = d.bookIPage.total
  359. that.tableData = []
  360. for (var i = 0; i < d.bookIPage.pageList.length; i++) {
  361. that.tableData.push(d.bookIPage.pageList[i])
  362. }
  363. } else {
  364. that.tableData = []
  365. that.$message.warning('没有符合条件的数据!')
  366. }
  367. }).catch((err) => {
  368. // console.log(err);
  369. that.$message.error(err.message)
  370. });
  371. that.loading = false;
  372. },
  373. /**
  374. * 查询条件
  375. */
  376. get_condtion() {
  377. let data = {
  378. page: this.pagination.currentPage,
  379. rows: this.pagination.pageSize
  380. }
  381. if (this.formInline.id !== '') {
  382. data.id = this.formInline.id
  383. }
  384. if (this.formInline.amount1 !== '') {
  385. data.amount1 = this.formInline.amount1
  386. }
  387. if (this.formInline.amount2 !== '') {
  388. data.amount2 = this.formInline.amount2
  389. }
  390. if (this.formInline.search_datatime !== '') {
  391. data.search_datatime = this.formInline.search_datatime
  392. }
  393. if (this.formInline.qz_id !== '') {
  394. data.qz_id = this.formInline.qz_id
  395. }
  396. if (this.formInline.keyword !== '') {
  397. data.keyword = this.formInline.keyword
  398. }
  399. this.cond_data = data;
  400. },
  401. /**
  402. * 导出为Excel
  403. */
  404. exportExcel() {
  405. var that = this
  406. downloadExcel(this.cond_data).then((res) => {
  407. // console.log(res);
  408. if (res.code === 200) {
  409. that.$message.success(res.message)
  410. let xls = res.downurl
  411. window.open(xls)
  412. } else {
  413. that.tableData = []
  414. that.$message.warning(res.message)
  415. }
  416. }).catch((err) => {
  417. // console.log(err);
  418. that.$message.error(err.message)
  419. });
  420. },
  421. /**
  422. * 搜索
  423. */
  424. btn_search() {
  425. this.bookqueryLedgerTj()
  426. this.get_table_data('search')
  427. },
  428. /**
  429. * currentPage 改变时会触发
  430. * @param {Object} val
  431. */
  432. currentPageChange(val) {
  433. this.pagination.currentPage = val
  434. this.get_table_data('pages')
  435. }
  436. }
  437. }
  438. </script>
  439. <style lang="scss" scoped>
  440. .app-container {
  441. background-color: #EFF2F7;
  442. padding: 10px;
  443. .el-row {
  444. .el-col {
  445. padding: 10px;
  446. .cell {
  447. padding: 30px;
  448. border-radius: 10px;
  449. background-color: #FFFFFF;
  450. box-shadow: 0px 3px 21px 0px rgba(60, 108, 254, 0.16);
  451. .cell-title {
  452. display: flex;
  453. justify-content: space-between;
  454. align-items: center;
  455. margin-bottom: 30px;
  456. padding-bottom: 30px;
  457. border-bottom: 1px solid #CCCCCC;
  458. .title-left {
  459. display: flex;
  460. align-items: center;
  461. .title {
  462. font-size: 22px;
  463. font-family: Microsoft YaHei-3970(82674968);
  464. font-weight: bold;
  465. color: #1A202B;
  466. }
  467. .title-detail {
  468. margin-left: 50px;
  469. font-size: 18px;
  470. font-family: Microsoft YaHei-3970(82674968);
  471. color: #1A202B;
  472. }
  473. }
  474. .title-right {
  475. display: flex;
  476. justify-content: space-between;
  477. align-items: center;
  478. .el-button {
  479. width: 110px;
  480. height: 46px;
  481. background: #2B4CFE;
  482. font-size: 18px;
  483. color: #FFFFFF;
  484. font-family: Microsoft YaHei-3970(82674968);
  485. border-radius: 5px;
  486. }
  487. .el-button--warning {
  488. background: #F88A64;
  489. }
  490. }
  491. }
  492. .calc {
  493. display: flex;
  494. justify-content: space-between;
  495. margin: -18px 0 18px;
  496. .calc-item {
  497. display: flex;
  498. flex-direction: column;
  499. justify-content: center;
  500. align-items: center;
  501. width: 23.55%;
  502. height: 98px;
  503. opacity: 1;
  504. border-radius: 10px;
  505. background-color: rgba(242, 242, 242, 1);
  506. box-shadow: 5px 5px 5px rgba(181, 181, 181, 0.6);
  507. .calc-item-text {
  508. font-size: 38px;
  509. font-weight: 700;
  510. height: 58px;
  511. line-height: 58px;
  512. color: rgba(0, 0, 0, 1);
  513. text-shadow: 3px 3px 0px rgba(255, 255, 255, 1.0);
  514. }
  515. .calc-item-desc {
  516. font-size: 18px;
  517. font-weight: 600;
  518. color: rgba(0, 0, 0, 1);
  519. text-shadow: 2px 2px 0px rgba(198, 198, 198, 1.0);
  520. }
  521. }
  522. }
  523. .cell-body {
  524. .controls {
  525. display: flex;
  526. justify-content: space-between;
  527. align-items: center;
  528. .demo-form-inline {
  529. display: inline-flex;
  530. flex-wrap: wrap;
  531. align-items: center;
  532. justify-content: flex-start;
  533. .el-form-item {
  534. margin-bottom: 16px;
  535. margin-right: 5px;
  536. }
  537. .btn-search {
  538. background: rgba(9, 101, 98, 1);
  539. font-size: 14px;
  540. color: #FFFFFF;
  541. font-family: Microsoft YaHei-3970(82674968);
  542. border-radius: 5px;
  543. border: none;
  544. }
  545. }
  546. .qingzhang {
  547. height: 37px;
  548. opacity: 1;
  549. border-radius: 5px;
  550. background: rgba(250, 127, 100, 1);
  551. border: none;
  552. }
  553. .btn-export {
  554. background: rgba(9, 101, 98, 1);
  555. font-size: 14px;
  556. color: #FFFFFF;
  557. font-family: Microsoft YaHei-3970(82674968);
  558. border-radius: 5px;
  559. border: none;
  560. }
  561. .btns {
  562. display: flex;
  563. align-items: center;
  564. margin-bottom: 16px;
  565. }
  566. }
  567. .pagination-table {
  568. display: flex;
  569. justify-content: flex-end;
  570. align-items: center;
  571. height: 30px;
  572. margin-top: 20px;
  573. .txt-notice {
  574. span {
  575. font-size: 28px;
  576. font-weight: 500;
  577. font-family: '微软雅黑';
  578. }
  579. }
  580. ::v-deep .el-pagination {
  581. display: flex;
  582. justify-content: flex-end;
  583. align-items: center;
  584. }
  585. ::v-deep .el-pagination ul {
  586. display: flex;
  587. }
  588. ::v-deep .el-pagination button,
  589. ::v-deep .el-pagination li {
  590. display: flex;
  591. justify-content: center;
  592. align-items: center;
  593. width: 50px;
  594. height: 36px;
  595. border: 1px solid #626262;
  596. border-radius: 3px;
  597. font-size: 14px;
  598. margin: 0 5px;
  599. }
  600. ::v-deep .el-pagination span {
  601. margin-left: 10px;
  602. }
  603. ::v-deep .el-pagination .el-pagination__jump {
  604. font-size: 16px;
  605. }
  606. ::v-deep .el-pagination .el-pagination__editor {
  607. width: 50px;
  608. height: 36px;
  609. margin: 0 5px;
  610. }
  611. ::v-deep .el-pagination .el-input__inner {
  612. width: 50px;
  613. height: 36px;
  614. border: 1px solid #626262;
  615. margin: -4px 0 0 0;
  616. }
  617. }
  618. }
  619. }
  620. }
  621. }
  622. .dialog-qingzhang-body {
  623. display: flex;
  624. flex-direction: column;
  625. justify-content: center;
  626. align-items: center;
  627. height: 180px;
  628. img {
  629. width: 72px;
  630. }
  631. .dialog-qingzhang-body-txt {
  632. height: 38px;
  633. line-height: 38px;
  634. text-align: center;
  635. font-size: 18px;
  636. font-family: Microsoft YaHei-3970(82674968);
  637. color: #333333;
  638. margin-top: 20px;
  639. }
  640. }
  641. }
  642. </style>
  643. <style>
  644. .el-date-editor--daterange.el-input__inner {
  645. width: 280px !important;
  646. }
  647. .demo-table-expand {
  648. font-size: 0;
  649. }
  650. .demo-table-expand label {
  651. width: 180px;
  652. color: #99a9bf;
  653. }
  654. .demo-table-expand .el-form-item {
  655. margin-right: 0;
  656. margin-bottom: 0;
  657. width: 33%;
  658. }
  659. .dialog-footer {
  660. display: flex;
  661. justify-content: flex-end;
  662. margin-top: -10px;
  663. }
  664. .dialog-qingzhang {
  665. height: 300px !important;
  666. width: 500px !important;
  667. margin-top: 330px !important;
  668. border-radius: 8px;
  669. }
  670. .dialog-qingzhang .el-dialog__header {
  671. display: none !important;
  672. }
  673. .add-user-cancel-btn {
  674. color: rgba(9, 101, 98, 1) !important;
  675. border: 1px solid rgba(9, 101, 98, 1) !important;
  676. }
  677. .add-user-confirm-btn {
  678. border: none !important;
  679. background: rgba(9, 101, 98, 1) !important;
  680. color: #fff !important;
  681. border-radius: 5px !important;
  682. margin-left: 28px !important;
  683. }
  684. </style>