index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. <template>
  2. <view class="container">
  3. <view class="no_data" v-if="dataError">
  4. <image src="/static/no_data.png" class="image" mode="widthFix" />
  5. <view>没有找到该订单呢……</view>
  6. </view>
  7. <view class="orderDetail_box" v-else>
  8. <view class="sec-wrap">
  9. <view class="order-status">
  10. <view class="icon-box">
  11. <image v-if="orderInfo.order_status === 0" class="icon" src="@/static/order-details/icon-ddfk.png"></image>
  12. <image v-else-if="orderInfo.order_status == 1" class="icon" src="@/static/order-details/icon-ddfh.png"></image>
  13. <image v-else-if="orderInfo.order_status == 2" class="icon" src="@/static/order-details/icon-ddsh.png"></image>
  14. <image v-else class="icon" src="@/static/order-details/icon-ddgb.png"></image>
  15. </view>
  16. <view class="right-text">
  17. <view class="status">{{ tidyStatus([orderInfo.pay_status, orderInfo.order_status]) }}</view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- 配送 -->
  22. <view class="address-box">
  23. <view class="show-address">
  24. <view class="name-tel">{{ orderInfo.consignee }} {{ orderInfo.mobile }}</view>
  25. <view class="addr-text">{{ orderInfo.address }}</view>
  26. </view>
  27. </view>
  28. <!-- <view class="logistics_btn" v-if="orderInfo.logistics && orderInfo.logistics.logistics_no && orderInfo.logistics.logistics_business" @tap="goLogistics">
  29. <view class="l_box" v-if="orderInfo.logistics.statusMsg && orderInfo.logistics.statusMsg != ''">{{ orderInfo.logistics.statusMsg }}</view>
  30. <view class="l_box" v-else>已发货:{{ orderInfo.logistics.logistics_business }},快递单号:{{ orderInfo.logistics.logistics_no }}</view>
  31. </view> -->
  32. <view class="goods-list">
  33. <view class="goods-info_box">
  34. <scroll-view class="goods-img-container">
  35. <view class="img-box">
  36. <image :src="orderInfo.goods.original_img" mode="" class="goods-img"></image>
  37. </view>
  38. <view class="goodsDetail_info">
  39. <view class="goods_name">{{ orderInfo.goods.goods_name }}
  40. <view class="goods_num">×{{ orderInfo.goods_num }}</view>
  41. </view>
  42. <view class="goods_price r_color">¥{{ orderInfo.total_amount }}</view>
  43. </view>
  44. </scroll-view>
  45. </view>
  46. </view>
  47. <view class="order_info">
  48. <view class="li_box">订单状态:
  49. <view class="info_data">{{ tidyStatus([orderInfo.pay_status, orderInfo.order_status]) }}</view>
  50. </view>
  51. <view class="li_box" v-if="orderInfo.order_sn">订单编号:
  52. <view class="info_data">{{ orderInfo.order_sn }}</view>
  53. </view>
  54. <view class="li_box" v-if="orderInfo.add_time">订单创建:
  55. <view class="info_data">{{ $day(orderInfo.add_time * 1000).format("YYYY-MM-DD HH:mm:ss") }}</view>
  56. </view>
  57. <view class="li_box" v-if="orderInfo.pay_name">支付方式:
  58. <view class="info_data">{{ orderInfo.pay_name }}</view>
  59. </view>
  60. <view class="li_box" v-if="orderInfo.total_amount">商品合计:
  61. <view class="info_data">{{ orderInfo.total_amount }}</view>
  62. </view>
  63. <!-- <view class="li_box" v-if="orderInfo.orderTypes == 2">批发积分:
  64. <view class="info_data">{{ orderInfo.totalPfInt }}</view>
  65. </view> -->
  66. <!-- <view class="li_box" v-if="orderInfo.orderTypes == 2">茶宝:
  67. <view class="info_data">{{ orderInfo.totalTeaInt }}</view>
  68. </view> -->
  69. </view>
  70. <view class="detail_btn-row-box">
  71. <view class="detail_btn-row">
  72. <template v-if="orderInfo.order_status != 5">
  73. <view class="btn cancel-btn" @tap="toCancel" v-if="[0,1].includes(orderInfo.order_status)">取消订单</view>
  74. <view class="btn topay-btn" @tap="toPay" v-if="[0,2].includes(orderInfo.pay_status)">立即支付</view>
  75. <view class="btn topay-btn" @tap="toTake" v-if="[0, 1].includes(orderInfo.order_status)&&[1].includes(orderInfo.pay_status)">确认收货</view>
  76. </template>
  77. <view class="btn cancel-btn" @tap="goBack">返回</view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. // var toPayOpre = new ToPayOpre();
  85. var utils = require("@/utils/utils.js");
  86. import { get, post } from "@/request/api.js";
  87. var app = getApp();
  88. var appEv = app.$vm.$options;
  89. export default {
  90. data() {
  91. return {
  92. currentTpye: false,
  93. dataError: false,
  94. orderInfo: {},
  95. isTuanIng: false, // 是否为拼团中订单
  96. isweixin: "",
  97. goodsNum: "",
  98. goodsTotalPrice: "",
  99. pt: "",
  100. order_id: '', //当前订单id
  101. };
  102. },
  103. onLoad: function(e) {
  104. if (!e.id) {
  105. uni.showToast({
  106. title: "参数错误",
  107. image: "/static/static/images/toast_nothing.png",
  108. duration: 1200,
  109. });
  110. setTimeout(() => {
  111. uni.navigateBack({
  112. delta: 1,
  113. });
  114. }, 1200);
  115. return;
  116. }
  117. this.order_id = e.id;
  118. uni.showLoading({
  119. title: "加载中…",
  120. mask: true,
  121. });
  122. this.loadData();
  123. },
  124. methods: {
  125. loadData() {
  126. post("my/orderDetail", {
  127. order_id: this.order_id,
  128. }).then(res => {
  129. uni.hideLoading();
  130. if (res.code === 0) {
  131. this.orderInfo = res.data.data;
  132. }
  133. });
  134. },
  135. // 取消订单
  136. toCancel() {
  137. let that = this;
  138. uni.showModal({
  139. title: "温馨提示",
  140. content: "发起拼单24小时后,若未拼单成功将自动取消订单并退款哦~",
  141. showCancel: false,
  142. confirmText: "知道了",
  143. confirmColor: "#f02f2f",
  144. success(res) {
  145. if (res.confirm) {
  146. post("my/orderCancel",{
  147. order_id: that.order_id
  148. }).then(res => {
  149. if(res.code === 0){
  150. appEv.errTips(res.msg);
  151. that.loadData();
  152. }
  153. })
  154. }
  155. },
  156. });
  157. },
  158. // 立即支付
  159. toPay(e) {
  160. let data = {
  161. orderDetailIds: this.orderId,
  162. types: 1,
  163. price: this.orderInfo.orderDetail.totalWxPrice,
  164. account: this.orderInfo.orderDetail.totalAccount,
  165. teaIntegral: this.orderInfo.orderDetail.totalTeaInt,
  166. pfIntegral: this.orderInfo.orderDetail.totalPfInt,
  167. xfIntegral: this.orderInfo.orderDetail.totalXfInt,
  168. zfType: this.orderInfo.orderDetail.patType,
  169. ojsType: this.orderInfo.orderDetail.ojsType,
  170. };
  171. var info;
  172. info = reqApi.payOrder(data);
  173. var that = this;
  174. if (info) {
  175. info.then((res) => {
  176. if (res.data.status == 200) {
  177. toPayOpre.toPay(res.data.payParam);
  178. } else {
  179. appEv.errTips(res.data.msg || "支付失败");
  180. }
  181. });
  182. }
  183. },
  184. // 确认收货
  185. toTake() {
  186. let that = this;
  187. uni.showModal({
  188. content: "亲,“确定收货”代表着本订单的交付流程已经完成,不再支持任何形式的退换货。",
  189. confirmText: "确认收货",
  190. confirmColor: "#fa2f2e",
  191. cancelText: "取消",
  192. cancelColor: "#bbb",
  193. success(res) {
  194. if (res.confirm) {
  195. post("goods/confirmOrder",{
  196. order_id: that.order_id
  197. }).then(res => {
  198. if(res.code === 0){
  199. appEv.errTips(res.msg);
  200. that.loadData();
  201. }
  202. })
  203. }
  204. },
  205. });
  206. },
  207. //计时
  208. timeChange: function(statusType, finsTime) {
  209. var nowTime = utils.unxiNum();
  210. finsTime = utils.unxiNum(finsTime);
  211. var timeDiffNum = finsTime - nowTime;
  212. var that = this,
  213. text = "";
  214. if (timeDiffNum > 0) {
  215. var timer = setInterval(function() {
  216. --timeDiffNum;
  217. var back_text = utils.changeTimeStamp(timeDiffNum);
  218. if (timeDiffNum <= 0 || !back_text) {
  219. clearInterval(timer);
  220. if (statusType == 0) {
  221. text = "订单未在规定时间内付款已自动关闭";
  222. that.currentTpye = 7;
  223. that.onShow();
  224. }
  225. } else {
  226. if (statusType == 0) {
  227. text = "请于" + back_text + "内付款,超时订单将自动关闭";
  228. }
  229. }
  230. that.timeOver = false; //时间是否已结束
  231. that.changeTimeTexttext;
  232. }, 1000);
  233. } else {
  234. if (statusType == 0) {
  235. text = "订单未在规定时间内付款已自动关闭";
  236. }
  237. that.timeOver = true; //时间是否已结束
  238. that.changeTimeText = text;
  239. }
  240. },
  241. goBack: function() {
  242. uni.navigateBack();
  243. },
  244. // 跳转商品详情
  245. toGoodsDetails(e) {
  246. },
  247. // 跳转物流详情
  248. goLogistics() {
  249. uni.navigateTo({
  250. url: "/pages/logistics/index?id=" +
  251. this.orderInfo.orderDetail.orderDetaillId,
  252. });
  253. },
  254. },
  255. computed: {
  256. tidyStatus() {
  257. return (da) => {
  258. let str;
  259. if (da[1] === 0) str = "待发货";
  260. if (da[1] === 1) str = "待收货";
  261. if (da[1] === 2) str = "已收货";
  262. if (da[1] === 3) str = "申请退货";
  263. if (da[1] === 4) str = "已退货";
  264. if (da[1] === 5) str = "已作废";
  265. if (da[0] === 0 && da[1] != 5) str = "待支付";
  266. return str
  267. };
  268. },
  269. },
  270. };
  271. </script>
  272. <style lang="scss" scoped>
  273. page {
  274. background-color: #f3f5f7;
  275. }
  276. .r_color {
  277. color: #fa2f2e;
  278. }
  279. .sec-wrap {
  280. background-color: #21c792;
  281. margin: 2rpx 0 20rpx;
  282. }
  283. .bottom-fiexd {
  284. position: fixed;
  285. bottom: 0;
  286. left: 0;
  287. }
  288. .flex_hvcc {
  289. display: flex;
  290. display: -webkit-flex;
  291. align-items: center;
  292. justify-content: center;
  293. }
  294. .address-box {
  295. width: 100%;
  296. margin: -20rpx 0 20rpx;
  297. background: #fff url(http://xcx.soowin.com/images/addr-line.png) no-repeat center top;
  298. background-size: 100% 4rpx;
  299. overflow: hidden;
  300. }
  301. .show-address {
  302. width: 100%;
  303. box-sizing: border-box;
  304. padding: 0 30rpx 0 80rpx;
  305. background: url(http://xcx.soowin.com/images/ico-addr.png) no-repeat 25rpx 30rpx;
  306. background-size: 40rpx auto;
  307. }
  308. .show-address .name-tel {
  309. font-size: 28rpx;
  310. color: #000;
  311. padding: 30rpx 0 20rpx 0;
  312. }
  313. .show-address .name-tel-phone {
  314. padding: 30rpx 0;
  315. }
  316. .show-address .addr-text {
  317. font-size: 24rpx;
  318. color: #888;
  319. padding-bottom: 34rpx;
  320. line-height: 36rpx;
  321. }
  322. .show-address .addr-text_lit {
  323. padding-bottom: 10rpx;
  324. }
  325. .sec-wrap .order-status {
  326. width: 100%;
  327. box-sizing: border-box;
  328. padding: 0 30rpx;
  329. height: 160rpx;
  330. display: flex;
  331. align-items: center;
  332. }
  333. .order-status .icon-box {
  334. width: 80rpx;
  335. height: 80rpx;
  336. overflow: hidden;
  337. margin-right: 26rpx;
  338. }
  339. .order-status .icon-box .icon {
  340. width: 100%;
  341. height: 100%;
  342. }
  343. .order-status .right-text {
  344. width: calc(100% - 116rpx);
  345. overflow: hidden;
  346. }
  347. .order-status .right-text .status {
  348. font-size: 36rpx;
  349. color: #fff;
  350. padding: 2rpx 0 4rpx;
  351. font-weight: 500;
  352. }
  353. .order-status .right-text .red {
  354. color: #fa2f2e;
  355. }
  356. .order-status .right-text .des {
  357. font-size: 24rpx;
  358. color: #fff;
  359. padding: 4rpx 0;
  360. }
  361. .address-sec {
  362. width: 720rpx;
  363. margin-left: 30rpx;
  364. display: flex;
  365. align-items: center;
  366. padding: 30rpx 0;
  367. }
  368. .address-sec .icon-box {
  369. width: 30rpx;
  370. align-self: flex-start;
  371. overflow: hidden;
  372. margin-right: 35rpx;
  373. }
  374. .address-sec .icon-box .icon {
  375. width: 30rpx;
  376. height: 30rpx;
  377. }
  378. .address-sec .right-box {
  379. width: 620rpx;
  380. }
  381. .address-sec .right-box .name-tel {
  382. font-size: 28rpx;
  383. color: #000;
  384. margin-bottom: 20rpx;
  385. }
  386. .address-sec .right-box .text {
  387. font-size: 24rpx;
  388. color: #888;
  389. line-height: 36rpx;
  390. height: 72rpx;
  391. overflow: hidden;
  392. }
  393. .wuliu-box {
  394. width: 720rpx;
  395. margin-left: 30rpx;
  396. border-bottom: 1rpx solid #eee;
  397. display: flex;
  398. align-items: center;
  399. padding: 30rpx 0;
  400. }
  401. .wuliu-box .icon-box {
  402. width: 40rpx;
  403. height: 40rpx;
  404. overflow: hidden;
  405. margin-right: 31rpx;
  406. align-self: flex-start;
  407. }
  408. .wuliu-box .icon-box .icon {
  409. width: 40rpx;
  410. height: 40rpx;
  411. }
  412. .wuliu-box .arrow-right {
  413. width: 15rpx;
  414. height: 24rpx;
  415. }
  416. .wuliu-box .arrow-right .arrow {
  417. width: 15rpx;
  418. height: 24rpx;
  419. }
  420. .wuliu-box .right-text {
  421. width: 575rpx;
  422. margin-right: 30rpx;
  423. }
  424. .wuliu-box .right-text .order-number {
  425. font-size: 28rpx;
  426. color: #000;
  427. margin-bottom: 14rpx;
  428. }
  429. .wuliu-box .right-text .wuliu-text,
  430. .wuliu-box .right-text .wuliu-date {
  431. font-size: 24rpx;
  432. color: #888;
  433. line-height: 36rpx;
  434. }
  435. .goods-list {
  436. width: 100%;
  437. background-color: #fff;
  438. margin-bottom: 24rpx;
  439. }
  440. .goods-list .list-title {
  441. font-size: 28rpx;
  442. color: #000;
  443. padding: 16rpx 24rpx;
  444. }
  445. .avaImgs {
  446. width: 50rpx;
  447. height: 50rpx;
  448. overflow: hidden;
  449. border-radius: 50%;
  450. background-color: #f3f5f7;
  451. margin-right: 20rpx;
  452. }
  453. .goods-info_box {
  454. width: 100%;
  455. overflow: hidden;
  456. border-top: 2rpx solid #eee;
  457. }
  458. .goods-img-container {
  459. overflow: hidden;
  460. padding: 30rpx;
  461. margin-bottom: 2rpx;
  462. box-sizing: border-box;
  463. }
  464. .goods-info .goods-des {
  465. width: 540rpx;
  466. height: 78rpx;
  467. line-height: 39rpx;
  468. font-size: 26rpx;
  469. color: #000;
  470. overflow: hidden;
  471. }
  472. .goods-img-container .img-box {
  473. width: 170rpx;
  474. height: 183.6rpx;
  475. background-color: #f7f7f7;
  476. overflow: hidden;
  477. float: left;
  478. display: -webkit-box;
  479. -webkit-box-align: center;
  480. -webkit-box-pack: center;
  481. }
  482. .goodsDetail_info {
  483. overflow: hidden;
  484. float: right;
  485. width: calc(100% - 194rpx);
  486. line-height: 1.5;
  487. position: relative;
  488. height:190rpx;
  489. }
  490. .goodsDetail_info .goods_name {
  491. padding-right: 66rpx;
  492. position: relative;
  493. font-size: 26rpx;
  494. margin-bottom: 6rpx;
  495. overflow: hidden;
  496. display: -webkit-box;
  497. -webkit-box-orient: vertical;
  498. -webkit-line-clamp: 2;
  499. }
  500. .goodsDetail_info .goods_name .goods_num {
  501. font-size: 24rpx;
  502. color: #666;
  503. position: absolute;
  504. top: 0;
  505. right: 0;
  506. }
  507. .goodsDetail_info .unimport {
  508. font-size: 24rpx;
  509. color: #999;
  510. }
  511. .goodsDetail_info .goods_price {
  512. position: absolute;
  513. left: 0;
  514. bottom: 0;
  515. font-size: 28rpx;
  516. line-height: 1.2;
  517. font-weight: 600;
  518. }
  519. .goods-img-container .img-box .goods-img {
  520. width: 100%;
  521. display: block;
  522. height: 100%;
  523. }
  524. .peisong-way {
  525. width: 100%;
  526. background-color: #fff;
  527. margin-bottom: 20rpx;
  528. }
  529. .peisong-way .row-box {
  530. width: 100%;
  531. display: flex;
  532. justify-content: space-between;
  533. align-items: center;
  534. box-sizing: border-box;
  535. padding: 24rpx 30rpx;
  536. font-size: 26rpx;
  537. line-height: 1.6;
  538. }
  539. .goods-info {
  540. width: 100%;
  541. background-color: #fff;
  542. margin-bottom: 20rpx;
  543. }
  544. .goods-info .row-box {
  545. width: calc(100% - 30rpx);
  546. display: flex;
  547. justify-content: space-between;
  548. /* align-items: center; */
  549. box-sizing: border-box;
  550. padding: 30rpx 30rpx 30rpx 0;
  551. margin-left: 30rpx;
  552. border-bottom: 1px solid #f5f5f5;
  553. font-size: 26rpx;
  554. color: #000;
  555. }
  556. .goods-info .row-box .row-label {
  557. width: calc(100% - 140rpx);
  558. }
  559. .goods-info .row-box .right-text {
  560. text-align: right;
  561. }
  562. .goods-info .row-box .right-text.r_color {
  563. font-weight: 600;
  564. }
  565. .order_info {
  566. width: 100%;
  567. background-color: #fff;
  568. box-sizing: border-box;
  569. padding: 16rpx 30rpx;
  570. margin-bottom: 20rpx;
  571. }
  572. .order_info .li_box {
  573. line-height: 1.6;
  574. padding: 10rpx 0;
  575. font-size: 26rpx;
  576. color: #999;
  577. }
  578. .order_info .li_box .info_data {
  579. display: inline-block;
  580. color: #000;
  581. }
  582. .jiesuan-box {
  583. display: flex;
  584. justify-content: space-between;
  585. width: 100%;
  586. height: 100rpx;
  587. position: fixed;
  588. bottom: 0;
  589. left: 0;
  590. border-top: 1px solid #eee;
  591. background-color: #fff;
  592. }
  593. .jiesuan-box .to-pay-btn {
  594. width: 250rpx;
  595. text-align: center;
  596. height: 100%;
  597. line-height: 100rpx;
  598. background-color: #fa2f2e;
  599. font-size: 32rpx;
  600. color: #fff;
  601. border-radius: 0;
  602. }
  603. .jiesuan-box .left-price {
  604. display: flex;
  605. width: 500rpx;
  606. justify-content: flex-start;
  607. line-height: 100rpx;
  608. padding: 0 30rpx;
  609. font-size: 28rpx;
  610. box-sizing: border-box;
  611. }
  612. .jiesuan-box .total {
  613. text-align: right;
  614. }
  615. .jiesuan-box .total .total_price {
  616. color: #fa2f2e;
  617. font-weight: 600;
  618. display: inline-flex;
  619. }
  620. .logistics_btn {
  621. padding: 24rpx 24rpx 24rpx 30rpx;
  622. width: 100%;
  623. overflow: hidden;
  624. box-sizing: border-box;
  625. font-size: 26rpx;
  626. line-height: 1.6;
  627. background-color: #fff;
  628. margin-bottom: 20rpx;
  629. }
  630. .l_box {
  631. width: 100%;
  632. box-sizing: border-box;
  633. overflow: hidden;
  634. padding: 0 28rpx 0 64rpx;
  635. white-space: nowrap;
  636. text-overflow: ellipsis;
  637. /* background: url(http://xcx.soowin.com/images/logis_icon.png) no-repeat left top, url(http://xcx.soowin.com/images/arrow-right.png) no-repeat right center;
  638. background-size: 46rpx auto, 16rpx auto; */
  639. background: url(http://xcx.soowin.com/images/logis_icon.png) no-repeat left top;
  640. background-size: 46rpx auto;
  641. }
  642. .detail_btn-row-box {
  643. height: 104rpx;
  644. }
  645. .detail_btn-row {
  646. width: 100%;
  647. height: 104rpx;
  648. padding: 18rpx 30rpx;
  649. box-sizing: border-box;
  650. overflow: hidden;
  651. position: fixed;
  652. left: 0;
  653. bottom: 0;
  654. background: #fff;
  655. display: flex;
  656. justify-content: flex-end;
  657. font-size: 26rpx;
  658. align-items: center;
  659. box-shadow: 0rpx -2rpx 16rpx rgba(0, 0, 0, 0.04);
  660. }
  661. .detail_btn-row .btn {
  662. box-sizing: border-box;
  663. text-align: center;
  664. border-radius: 6rpx;
  665. margin-left: 20rpx;
  666. border: 1rpx solid #ccc;
  667. padding: 16rpx 24rpx;
  668. }
  669. .detail_btn-row .topay-btn {
  670. border-color: #e05f0b;
  671. background-color: #e05f0b;
  672. color: #fff;
  673. }
  674. .footerMargin {
  675. margin-bottom: 104rpx;
  676. }
  677. // 备注
  678. .remark {
  679. width: 100%;
  680. overflow: hidden;
  681. background: #fff;
  682. padding: 30rpx;
  683. box-sizing: border-box;
  684. margin-top: 3rpx;
  685. }
  686. // 备注-end
  687. </style>