signUpDetail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. <template>
  2. <!-- <view class="signUpDetail" :style="{paddingTop:statusBarHeight+navBareight +'px'}"> -->
  3. <view class="signUpDetail">
  4. <zs-skeleton type="orderDetail" :loading="pageLoading"></zs-skeleton>
  5. <!-- <zs-header background title="订单详情" customPath="/my/order/index"></zs-header> -->
  6. <view class="status-box">
  7. <view class="text-box">
  8. <view class="status" v-if="info.goodsList[0].goodsState == 'WAIT_PAYMENT'&&!isNotTime">
  9. 等待支付,剩余<u-count-down :time="closeTime" format="mm:ss" @finish="finish"></u-count-down>
  10. </view>
  11. <view class="status" v-else>
  12. {{info.goodsList[0] | filterType}}
  13. </view>
  14. </view>
  15. </view>
  16. <view class="content progress" v-if="info.goodsList[0].goodsState == 'APPLY_REFUND' || info.goodsList[0].goodsState == 'REFUNDED'" @click="refundDetail">
  17. <view class="progress-title">
  18. 退款进度
  19. </view>
  20. <view class="progress-desc">
  21. 查看退款详情
  22. </view>
  23. </view>
  24. <view class="content info">
  25. <view class="order-info">
  26. <!-- <image class="icon" :src="info.goodsList[0].goodsInfo.activityCover" mode=""></image> -->
  27. <view class="shop-info">
  28. <view class="title">
  29. {{info.goodsList[0].goodsInfo.activityName}}
  30. </view>
  31. <view class="goods-desc">
  32. 活动时间:{{info.goodsList[0].goodsInfo&&info.goodsList[0].goodsInfo.activityStartTime.replace('T',' ')}} 至 {{info.goodsList[0].goodsInfo&&info.goodsList[0].goodsInfo.activityEndTime.replace('T',' ')}}
  33. </view>
  34. <view class="num-box">
  35. <view class="label">
  36. 报名人数
  37. </view>
  38. <view class="label">
  39. {{list.length}}
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- <view class="content code-box" v-if="info.goodsList[0].goodsState == 'WAIT_USE'&&info.goodsList[0].goodsName!='二维码支付'">
  46. <view class="left">
  47. <view class="title">
  48. 券码信息
  49. </view>
  50. <view class="codeNum">
  51. </view>
  52. </view>
  53. <view class="code-btn" @click="checkCode">
  54. 查看券码 <image class="jiantou" src="@/static/jiantou-icon.png" mode=""></image>
  55. </view>
  56. </view> -->
  57. <view class="content" v-if="list.length&&list[0].data.length">
  58. <view class="title">
  59. 报名信息
  60. </view>
  61. <view class="box" v-for="(item,index) in list" :key="index">
  62. <view class="item" v-for="(i,d) in item.data" :key="d">
  63. <view class="label">
  64. {{i.key}}
  65. </view>
  66. <view class="image-box" v-if="i.dataType == 5">
  67. <image class="img" :src="img" v-for="(img,key) in i.value" :key="key" mode=""></image>
  68. </view>
  69. <view class="value" v-else>
  70. {{i.value || '-'}}
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. <view class="content">
  76. <view class="title">
  77. 订单信息
  78. </view>
  79. <view class="item">
  80. <view class="label">
  81. 订单编号
  82. </view>
  83. <view class="value">
  84. {{info.orderNo}}
  85. </view>
  86. </view>
  87. <view class="item" v-if="info.payment">
  88. <view class="label">
  89. 付款方式
  90. </view>
  91. <view class="value">
  92. <!-- {{info.payment? (info.payment.paymentWay| filterPay) : '-' }} -->
  93. {{info.payment.paymentWay| filterPay }}
  94. </view>
  95. </view>
  96. <view class="item">
  97. <view class="label">
  98. 下单时间
  99. </view>
  100. <view class="value">
  101. {{$u.timeFormat(info.createTime,'yyyy-mm-dd hh:MM:ss')}}
  102. </view>
  103. </view>
  104. <view class="item" v-if="info.goodsList[0].goodsState != 'WAIT_PAYMENT' && info.goodsList[0].goodsState != 'CLOSE'">
  105. <view class="label">
  106. 支付时间
  107. </view>
  108. <view class="value">
  109. {{$u.timeFormat(info.payment.paymentTime,'yyyy-mm-dd hh:MM:ss')}}
  110. </view>
  111. </view>
  112. </view>
  113. <view class="content">
  114. <view class="title">
  115. 交易信息
  116. </view>
  117. <view class="item">
  118. <view class="label">
  119. 商品金额
  120. </view>
  121. <view class="value black">
  122. ¥{{info.goodsList[0].goodsInfo.price}}
  123. </view>
  124. </view>
  125. <view class="item" >
  126. <view class="label">
  127. 优惠券
  128. </view>
  129. <view class="value red">
  130. -¥{{info.discountAmount}}
  131. </view>
  132. </view>
  133. <view class="item">
  134. <view class="label">
  135. 合计
  136. </view>
  137. <view class="value">
  138. <text class="red fs28">¥{{info.payAmount}}</text>
  139. </view>
  140. </view>
  141. </view>
  142. <template v-if="info.goodsList[0].goodsState == 'APPLY_REFUND'">
  143. <view class="content refund-box">
  144. <view class="title">
  145. 退款原因
  146. </view>
  147. <view class="refund-msg">
  148. {{info.goodsList[0].refundLog.remark}}
  149. </view>
  150. </view>
  151. <template>
  152. <button type="default" :loading="btnLoading" v-if="!info.payment.transferAll" class="pay-btn" @click="cancelReply" >取消退款</button>
  153. </template>
  154. </template>
  155. <button type="default" :loading="btnLoading" class="pay-btn" v-if="info.goodsList[0].goodsState == 'WAIT_PAYMENT'" @click="pay" >立即支付</button>
  156. <view class="content apply-box" v-else-if="(info.goodsList[0].goodsState == 'WAIT_USE'||info.goodsList[0].goodsState == 'USED')&&isRefund()" @click="apply">
  157. <view class="label">
  158. 退款申请
  159. </view>
  160. <view class="value">
  161. 如引发商品争议,可申请平台介入处理
  162. </view>
  163. <image class="jiantou" src="@/static/jiantou-icon.png" mode=""></image>
  164. </view>
  165. <!-- 二维码 -->
  166. <u-overlay :show="show" v-if="show" :opacity="0.6">
  167. <view class="wrap" @click.stop="close">
  168. <uqrcode ref="uqrcode" type="2d" auto canvas-id="qrcode" :value="codeData" :loading="loading" :options="{ margin: 20 }">
  169. <template v-slot:loading>
  170. <text style="color: black;">拼命加载中...</text>
  171. </template>
  172. </uqrcode>
  173. </view>
  174. </u-overlay>
  175. </view>
  176. </template>
  177. <script>
  178. import {qrCode} from '@/api/order.js'
  179. import {payDetails,queryPayOrder,unRefund} from '@/api/payment.js'
  180. import {getOrderDetail} from '@/api/activity.js'
  181. export default {
  182. data() {
  183. return {
  184. codeData:'123',
  185. show:false,
  186. loading:false,
  187. btnLoading:false,
  188. pageLoading:false,
  189. oldBright:0,
  190. info:{
  191. goodsList:[{goodsState:''}]
  192. },
  193. list:[],
  194. isNotTime:false,
  195. statusBarHeight:20,
  196. navBareight: 45,
  197. }
  198. },
  199. watch: {
  200. // isNotTime(val) {
  201. // if(this.isNotTime){
  202. // this.payDetails(this.info.orderNo)
  203. // }
  204. // }
  205. },
  206. filters: {
  207. filterType: function(val) {
  208. if(val.refundLog&&val.refundLog.refund == 'REFUSAL_REFUND'&&!val.change){
  209. return '拒绝退款'
  210. }
  211. else if(val.goodsState == 'APPLY_REFUND'){
  212. return '退款审核中'
  213. }else if(val.goodsState == 'CLOSE'){
  214. return '关闭订单'
  215. }else if(val.goodsState == 'REFUNDED'){
  216. return '已退款'
  217. }else if(val.goodsState == 'REFUSAL_REFUND'){
  218. return '拒绝退款'
  219. }else if(val.goodsState == 'APPLY_REFUNDING'){
  220. return '退款中'
  221. }else if(val.goodsState == 'USED'){
  222. return '订单已完成'
  223. }else if(val.goodsState == 'WAIT_PAYMENT'){
  224. return '待付款'
  225. }else if(val.goodsState == 'WAIT_USE'){
  226. return '待使用'
  227. }else{
  228. return ''
  229. }
  230. },
  231. // filterType: function(val) {
  232. // if(val == 'APPLY_REFUND'){
  233. // return '退款审核中'
  234. // }else if(val == 'CLOSE'){
  235. // return '关闭订单'
  236. // }else if(val == 'REFUNDED'){
  237. // return '已退款'
  238. // }else if(val == 'REFUSAL_REFUND'){
  239. // return '拒绝退款'
  240. // }else if(val == 'USED'){
  241. // return '订单已完成'
  242. // }else if(val == 'WAIT_PAYMENT'){
  243. // return '待付款'
  244. // }else if(val == 'WAIT_USE'){
  245. // return '待使用'
  246. // }
  247. // },
  248. filterPay(val){
  249. if(val == 'wx.unifiedOrder'){
  250. return '微信支付'
  251. }else if(val == 'trade.create'){
  252. return '支付宝支付'
  253. }else if(val == 'uac.miniOrder'){
  254. return '云闪付支付'
  255. }else{
  256. return '-'
  257. }
  258. }
  259. },
  260. computed: {
  261. closeTime() {
  262. return (this.info.createTime + 1000*60*30) - new Date().getTime()
  263. },
  264. },
  265. methods: {
  266. isRefund(){
  267. if(!this.info.goodsList[0].verifyModel){//没核销
  268. return true
  269. }else if(this.info.goodsList[0].verifyModel && (new Date().getTime() < (this.info.goodsList[0].verifyModel.checkTime + 1000*60*60*48))){// 已核销 并且没超过48小时
  270. return true
  271. }else{
  272. return false
  273. }
  274. },
  275. finish(){
  276. this.isNotTime = true
  277. console.log(222222,this.isNotTime);
  278. this.payDetails(this.info.orderNo)
  279. },
  280. refundDetail(){
  281. uni.navigateTo({
  282. url:`./refundDetail?id=${this.info.orderNo}`
  283. })
  284. },
  285. checkCode() {
  286. this.codeData = ''
  287. this.$nextTick(()=>{
  288. this.show = true
  289. this.loading = true
  290. let that = this
  291. // uni.getScreenBrightness({
  292. // success(res) {
  293. // // 获取用户手机亮度 保存起来
  294. // that.oldBright = res.value
  295. // setTimeout(()=>{
  296. // uni.setScreenBrightness({
  297. // value:1
  298. // })
  299. // },200)
  300. // }
  301. // })
  302. qrCode(this.info.goodsList[0].id).then(res=>{
  303. this.loading = false
  304. if(res.state == 'Success'){
  305. this.codeData = res.content
  306. }
  307. })
  308. })
  309. },
  310. close(){
  311. this.show = false
  312. // uni.setScreenBrightness({
  313. // value:this.oldBright
  314. // })
  315. },
  316. apply(){
  317. console.log(1111111);
  318. let that = this
  319. uni.navigateTo({
  320. url:'./refund',
  321. success: function(res) {
  322. console.log(222222);
  323. // 通过eventChannel向被打开页面传送数据
  324. res.eventChannel.emit('orderInfo', that.info)
  325. }
  326. })
  327. },
  328. getOrderDetail(orderNo,activityId){
  329. getOrderDetail({activityId,orderNo}).then(res=>{
  330. if (res.state == 'Success') {
  331. this.list = []
  332. res.content.records.map(item=>{
  333. let obj = {data:[]}
  334. item.data.map(i=>{
  335. let dataItem = {}
  336. if(i.content.length>1){
  337. if(i.dataType == 5){
  338. dataItem.value = i.content
  339. }else{
  340. dataItem.value = i.content.toString()
  341. }
  342. }else{
  343. if(i.dataType == 5){
  344. dataItem.value = i.content
  345. }else{
  346. dataItem.value = i.content[0]
  347. }
  348. }
  349. dataItem.key = i.dataName
  350. dataItem.dataType = i.dataType
  351. obj.data.push(dataItem)
  352. })
  353. this.list.push(obj)
  354. })
  355. console.log(this.list);
  356. }
  357. })
  358. },
  359. // 获取订单详情
  360. payDetails(orderNo){
  361. payDetails(orderNo).then(res=>{
  362. this.pageLoading = false
  363. if (res.state == 'Success') {
  364. this.info = res.content
  365. this.getOrderDetail(this.info.orderNo,this.info.goodsList[0].goodsInfo.id)
  366. }
  367. })
  368. },
  369. // 支付
  370. pay(){
  371. if (this.btnLoading) return
  372. this.btnLoading = true
  373. uni.showLoading({
  374. title: '支付中'
  375. })
  376. let that = this
  377. let miniPayRequest = JSON.parse(this.info.payment.miniPayRequest)
  378. uni.requestPayment({
  379. "provider": "wxpay",
  380. "orderInfo": miniPayRequest,
  381. "appid": miniPayRequest.appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  382. "paySign": miniPayRequest.paySign,
  383. "nonceStr": miniPayRequest.nonceStr, // 随机字符串
  384. "package": miniPayRequest.package, // 固定值
  385. // "prepayid": miniPayRequest.package, // 统一下单订单号
  386. "timeStamp": miniPayRequest.timeStamp, // 时间戳(单位:秒)
  387. "signType": miniPayRequest.signType, //签名算法
  388. success(msg) {
  389. console.log('msg', msg);
  390. queryPayOrder(that.info.orderNo).then(res1 => {
  391. if (res1.state == 'Success') {
  392. uni.hideLoading()
  393. uni.showToast({
  394. title: '支付成功',
  395. icon: 'success'
  396. })
  397. that.btnLoading = false
  398. that.payDetails(that.info.orderNo)
  399. }
  400. })
  401. },
  402. fail(e) {
  403. that.btnLoading = false
  404. uni.hideLoading()
  405. uni.showToast({
  406. title: '取消支付',
  407. icon: 'fail'
  408. })
  409. // 取消支付后,获取支付信息以备再次支付
  410. that.payDetails(that.info.orderNo)
  411. console.log('err', e,this);
  412. }
  413. })
  414. },
  415. // 取消退款申请
  416. cancelReply(){
  417. if (this.btnLoading) return
  418. this.btnLoading = true
  419. uni.showLoading({
  420. title: '取消中'
  421. })
  422. unRefund({id:this.info.goodsList[0].id}).then(res=>{
  423. this.btnLoading = false
  424. uni.hideLoading()
  425. if (res.state == 'Success') {
  426. this.payDetails(this.info.orderNo)
  427. uni.showToast({
  428. title:'取消成功',
  429. icon:'success'
  430. })
  431. }
  432. })
  433. }
  434. },
  435. onReady() {
  436. },
  437. onLoad(options) {
  438. this.info.orderNo = options.id
  439. },
  440. onShow() {
  441. this.pageLoading = true
  442. this.payDetails(this.info.orderNo)
  443. },
  444. created() {
  445. //获取手机系统信息 -- 状态栏高度
  446. let {
  447. statusBarHeight,
  448. } = uni.getSystemInfoSync()
  449. this.statusBarHeight = statusBarHeight
  450. //去除
  451. //#ifndef H5 || MP-ALIPAY ||APP-PLUS
  452. //获取小程序胶囊的高度
  453. let {
  454. top,
  455. bottom,
  456. left
  457. } = uni.getMenuButtonBoundingClientRect()
  458. //高度 =(胶囊底部高低-状态栏高度)+(胶囊顶部高度-状态栏内的高度)
  459. this.navBareight = (bottom - statusBarHeight) + (top - statusBarHeight)
  460. //#endif
  461. // this.info = JSON.parse(uni.getStorageSync('order'))
  462. }
  463. }
  464. </script>
  465. <style lang="scss">
  466. .signUpDetail{
  467. background: #F9F9F9;
  468. min-height: 100vh;
  469. padding-bottom: 100rpx;
  470. .status-box{
  471. padding: 24rpx 24rpx 4rpx;
  472. display: flex;
  473. justify-content: space-between;
  474. .text-box{
  475. color: #181818;
  476. .status{
  477. font-weight: bold;
  478. font-size: 32rpx;
  479. display: flex;
  480. .u-count-down__text{
  481. color: $uni-color-primary!important;
  482. }
  483. }
  484. .notice{
  485. font-size: 24rpx;
  486. margin-top: 20rpx;
  487. }
  488. }
  489. }
  490. .progress{
  491. .progress-title{
  492. font-weight: 600;
  493. font-size: 32rpx;
  494. color: #181818;
  495. }
  496. .progress-desc{
  497. font-weight: 300;
  498. font-size: 24rpx;
  499. color: #AAAAAA;
  500. margin-top: 15rpx;
  501. }
  502. }
  503. .shop-box{
  504. width: 690rpx;
  505. // margin: 0 30rpx;
  506. // padding: 24rpx 24rpx 30rpx;
  507. background: #fff;
  508. border-radius: 16rpx;
  509. margin-top: -30rpx;
  510. box-sizing: border-box;
  511. .shop-name{
  512. font-weight: 600;
  513. font-size: 32rpx;
  514. color: #181818;
  515. width: 100%;
  516. white-space: nowrap;
  517. overflow: hidden;
  518. text-overflow: ellipsis;
  519. }
  520. .address{
  521. font-weight: 300;
  522. font-size: 24rpx;
  523. color: #AAAAAA;
  524. margin-top: 20rpx;
  525. width: 100%;
  526. white-space: nowrap;
  527. overflow: hidden;
  528. text-overflow: ellipsis;
  529. }
  530. }
  531. .black{
  532. color: #222222!important;
  533. }
  534. .red{
  535. color: red!important;
  536. }
  537. .fs28{
  538. font-size: 28rpx!important;
  539. font-weight: bold;
  540. }
  541. .code-box{
  542. display: flex;
  543. align-items: center;
  544. justify-content: space-between;
  545. .left{
  546. .title{
  547. font-weight: 500;
  548. font-size: 28rpx;
  549. color: #222222;
  550. }
  551. .codeNum{
  552. font-weight: 300;
  553. font-size: 24rpx;
  554. color: #AAAAAA;
  555. margin-top: 15rpx;
  556. }
  557. }
  558. .code-btn{
  559. display: flex;
  560. align-items: center;
  561. font-weight: 300;
  562. font-size: 24rpx;
  563. color: #AAAAAA;
  564. .jiantou{
  565. width: 24rpx;
  566. height: 24rpx;
  567. }
  568. }
  569. }
  570. .input-box{
  571. margin: 20rpx 30rpx;
  572. padding: 28rpx 24rpx;
  573. background: #FFFFFF;
  574. border-radius: 16rpx 16rpx 16rpx 16rpx;
  575. display: flex;
  576. align-items: center;
  577. justify-content: space-between;
  578. .label {
  579. color: #222;
  580. font-size: 28rpx;
  581. }
  582. .value {
  583. font-size: 28rpx;
  584. color: #AAAAAA;
  585. }
  586. }
  587. .box{
  588. border-top: 1rpx solid #F0F0F0;
  589. margin-top: 28rpx;
  590. }
  591. .content{
  592. margin: 20rpx 30rpx;
  593. padding: 28rpx 24rpx;
  594. border-radius: 16rpx;
  595. background: #fff;
  596. .title{
  597. font-weight: 600;
  598. font-size: 28rpx;
  599. color: #222222;
  600. }
  601. .item{
  602. display: flex;
  603. align-items: center;
  604. justify-content: space-between;
  605. margin-top: 28rpx;
  606. .label{
  607. color: #222222;
  608. font-size: 28rpx;
  609. padding-right: 20rpx;
  610. white-space: nowrap;
  611. align-self: flex-start;
  612. }
  613. .value{
  614. color: #999999;
  615. font-size: 28rpx;
  616. word-break: break-all;
  617. }
  618. .image-box{
  619. display: flex;
  620. overflow: auto;
  621. .img{
  622. flex-shrink: 0;
  623. width: 100rpx;
  624. height: 100rpx;
  625. border-radius: 8rpx;
  626. margin-right: 10rpx;
  627. }
  628. }
  629. }
  630. }
  631. .pay-btn{
  632. background: $uni-color-primary;
  633. width: 688rpx;
  634. height: 80rpx;
  635. line-height: 80rpx;
  636. border-radius: 46rpx;
  637. color: #fff;
  638. margin-top: 50rpx;
  639. }
  640. .refund-box{
  641. .refund-msg{
  642. font-weight: 300;
  643. font-size: 24rpx;
  644. color: #222222;
  645. margin-top: 15rpx;
  646. line-height: 40rpx;
  647. }
  648. }
  649. .apply-box{
  650. position: relative;
  651. .label{
  652. font-weight: 600;
  653. font-size: 28rpx;
  654. color: #222222;
  655. }
  656. .value{
  657. color: #999999;
  658. font-size: 24rpx;
  659. margin-top: 15rpx;
  660. }
  661. .jiantou{
  662. position: absolute;
  663. top: 50%;
  664. right: 24rpx;
  665. transform: translateY(-50%);
  666. width: 24rpx;
  667. height: 24rpx;
  668. }
  669. }
  670. .info{
  671. .order-info{
  672. display: flex;
  673. .icon{
  674. width: 164rpx;
  675. height: 164rpx;
  676. border-radius: 16rpx;
  677. flex-shrink: 0;
  678. }
  679. .shop-info{
  680. display: flex;
  681. flex-direction: column;
  682. justify-content: space-between;
  683. // padding-left: 24rpx;
  684. flex: 1;
  685. box-sizing: border-box;
  686. .title{
  687. color: #181818;
  688. font-size: 28rpx;
  689. width: 620rpx;
  690. white-space: nowrap;
  691. overflow: hidden;
  692. text-overflow: ellipsis;
  693. }
  694. .num-box{
  695. display: flex;
  696. align-items: center;
  697. justify-content: space-between;
  698. .label{
  699. font-weight: 300;
  700. font-size: 24rpx;
  701. color: #181818;
  702. }
  703. .num{
  704. font-weight: 400;
  705. font-size: 24rpx;
  706. color: #222222;
  707. }
  708. }
  709. .start-time,.goods-desc{
  710. font-size: 24rpx;
  711. color: #AAAAAA;
  712. width: 620rpx;
  713. white-space: nowrap;
  714. overflow: hidden;
  715. text-overflow: ellipsis;
  716. margin: 20rpx 0;
  717. }
  718. }
  719. }
  720. }
  721. .wrap{
  722. display: flex;
  723. justify-content: center;
  724. align-items: center;
  725. height: 100vh;
  726. overflow: hidden;
  727. }
  728. }
  729. </style>