orderDetail.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796
  1. <template>
  2. <view class="container">
  3. <view class="order-type-info">
  4. <view class="order-type-title">{{orderType.title}}</view>
  5. <view class="order-type-text">{{orderType.text}}</view>
  6. </view>
  7. <view class="address-info-box">
  8. <view class="address-icon">
  9. <text class="iconfont icondizhi"></text>
  10. </view>
  11. <view class="address-content">
  12. <text class="address-info">
  13. <text class="address-name">{{orderData.recName}}</text>
  14. <text class="address-phone">{{orderData.recMobile}}</text>
  15. </text>
  16. <view class="address-detail">{{orderData.address}}</view>
  17. </view>
  18. </view>
  19. <view class="goods-info-box">
  20. <view class="shop-info">
  21. <text class="iconfont icondianpu"></text>
  22. <text class="shop-name">{{orderData.merchantInfoResVO.supplierName}}</text>
  23. <text class="iconfont iconfangxiang"></text>
  24. </view>
  25. <view class="goods-list">
  26. <view class="goods-row" v-for="(item, index) in orderData.merchantInfoResVO.products" :key="index">
  27. <cover-image class="goods-img" :src="item.imgUrl"></cover-image>
  28. <view class="goods-info">
  29. <view class="goods-name">{{item.productName}}</view>
  30. <view class="goods-type">
  31. 类型:{{item.productType == 1 ? '普通商品' : (item.productType == 2 ? '拍卖商品' : (item.productType == 3 ? '自助采摘' : '共享种植'))}}
  32. </view>
  33. <view class="plant-area" v-if="item.productType == 4">面积:{{item.areaSize}}㎡</view>
  34. <view class="goods-price-number">
  35. <text class="goods-unit">¥</text>
  36. <text class="goods-price">{{item.bizPrice}}</text>
  37. <text class="goods-number">x{{item.buyNum}}</text>
  38. <text class="plant-text" v-if="item.productType == 4">有效期:{{item.term}}天</text>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="order-info">
  44. <u-cell-group :border="false">
  45. <u-cell-item title="商品金额" :value="'¥' + orderData.orderSum" :arrow="false" :border-bottom="false"></u-cell-item>
  46. <u-cell-item title="积分抵扣" :value="'-¥' + orderData.integralAmount" :arrow="false" :border-bottom="false" v-if="goodType == 1"></u-cell-item>
  47. <u-cell-item title="优惠卷" :value="'-¥' + orderData.couponDiscountAmount" :arrow="false" :border-bottom="false" v-if="goodType == 1"></u-cell-item>
  48. <u-cell-item title="备注" :value="orderData.notes" :arrow="false" :border-bottom="false"></u-cell-item>
  49. </u-cell-group>
  50. </view>
  51. <view class="pay-info">
  52. <text class="pay-text">实付款</text>
  53. <text class="pay-price">¥{{orderData.paySum}}</text>
  54. </view>
  55. </view>
  56. <view class="order-info-box" @click="goToMessage()">
  57. <view class="info-title-box">
  58. <view class="info-title">留言板</view>
  59. <text class="iconfont iconfangxiang"></text>
  60. </view>
  61. <view class="info-content-box">
  62. <view class="message-row" v-for="(item, index1) in orderData.leas" :key="index1">
  63. <cover-image class="message-head" :src="item.imgUrl"></cover-image>
  64. <view class="message-info-box">
  65. <view class="message-name">{{item.leaMsgType}}</view>
  66. <view class="message-date">{{item.leaMsgTime}}</view>
  67. <view class="message-text">{{item.leaMsgContent}}</view>
  68. <view class="message-img-box" v-for="(site, index2) in item.orderLeaImgResVOs" :key="index2">
  69. <cover-image class="message-img" :src="site.imgUrl"></cover-image>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. <view class="order-info-box">
  76. <view class="info-title-box">
  77. <view class="info-title">订单信息</view>
  78. </view>
  79. <view class="info-content-box">
  80. <view class="order-info-row">订单编号:{{orderData.orderCode}}</view>
  81. <view class="order-info-row">创建时间:{{orderData.addOrderTime}}</view>
  82. <view class="order-info-row" v-if="orderData.orderStatus > 1 && orderData.orderStatus != 6">支付时间:{{orderData.payTime}}</view>
  83. <view class="order-info-row" v-if="orderData.orderStatus > 2 && orderData.orderStatus != 6">发货时间:{{orderData.sendTime}}</view>
  84. <view class="order-info-row" v-if="orderData.orderStatus > 3 && orderData.orderStatus != 6">收货时间:{{orderData.confirmTime}}</view>
  85. <view class="order-info-row" v-if="orderData.orderStatus == 6">取消时间:{{orderData.cancelTime}}</view>
  86. </view>
  87. </view>
  88. <uni-goods-nav :fill="true" :options="[]" @click="" @buttonClick="orderHandle" class="order-handle" :buttonGroup="buttonGroup" />
  89. <u-modal v-model="modalShow" :content="modalContent" @confirm="submitHandle" :async-close="true" :show-cancel-button="true"></u-modal>
  90. <u-top-tips ref="uTips"></u-top-tips>
  91. </view>
  92. </template>
  93. <script>
  94. const NET = require('@/utils/request')
  95. const API = require('@/config/api')
  96. export default {
  97. data() {
  98. return {
  99. orderType: {
  100. title: '',
  101. text: '',
  102. },
  103. orderData: {
  104. orderId: '',
  105. addOrderTime: '',
  106. recName: '',
  107. recMobile: '',
  108. address: '',
  109. merchantInfoResVO: {
  110. supplierName: '',
  111. products: [],
  112. },
  113. orderSum: 0,
  114. integralAmount: 0,
  115. couponDiscountAmount: 0,
  116. notes: 'xxxxx',
  117. paySum: 0,
  118. leas: [],
  119. orderCode: '',
  120. payTime: '',
  121. sendTime: '',
  122. confirmTime: '',
  123. cancelTime: '',
  124. tenantCode: '',
  125. evaluateReplyStatus: 1,
  126. },
  127. goodType: 1,
  128. buttonGroup: [],
  129. modalShow: false,
  130. handleType: '',
  131. modalContent: '',
  132. }
  133. },
  134. onLoad(options) {
  135. this.userData = uni.getStorageSync("userData")
  136. NET.request(API.getOrderDetail, {
  137. flag: 1,
  138. orderId: options.orderId,
  139. orderStatus: options.orderStatus,
  140. }, 'GET').then(res => {
  141. this.orderData = res.data
  142. if (this.orderData.merchantInfoResVO.products.length && this.orderData.merchantInfoResVO.products[0].productType !=
  143. 2 && this.orderData.merchantInfoResVO.products[0].productType != 4) {
  144. this.goodType = 1
  145. } else {
  146. this.goodType = 2
  147. }
  148. switch (JSON.stringify(this.orderData.orderStatus)) {
  149. case '1':
  150. this.buttonGroup = [{
  151. text: '取消订单',
  152. backgroundColor: '#75BD60',
  153. color: '#fff'
  154. }, {
  155. text: '立即支付',
  156. backgroundColor: '#52A63A',
  157. color: '#fff'
  158. }]
  159. break;
  160. case '2':
  161. this.buttonGroup = [{
  162. text: '申请售后',
  163. backgroundColor: '#75BD60',
  164. color: '#fff'
  165. }, {
  166. text: '自助采摘',
  167. backgroundColor: '#52A63A',
  168. color: '#fff'
  169. }]
  170. break;
  171. case '3':
  172. this.buttonGroup = [{
  173. text: '申请售后',
  174. backgroundColor: '#52A63A',
  175. color: '#fff'
  176. }, {
  177. text: '确认收货',
  178. backgroundColor: '#52A63A',
  179. color: '#fff'
  180. }, {
  181. text: '追踪物流',
  182. backgroundColor: '#52A63A',
  183. color: '#fff'
  184. }]
  185. break;
  186. case '4':
  187. this.buttonGroup = [{
  188. text: '申请售后',
  189. backgroundColor: '#75BD60',
  190. color: '#fff'
  191. }]
  192. break;
  193. default:
  194. this.buttonGroup = [{
  195. text: '申请售后',
  196. backgroundColor: '#52A63A',
  197. color: '#fff'
  198. }]
  199. }
  200. if (this.orderData.orderStatus == 4 && this.orderData.evaluateReplyStatus == 1) {
  201. this.buttonGroup.push({
  202. text: '评价',
  203. backgroundColor: '#52A63A',
  204. color: '#fff'
  205. })
  206. }
  207. }).catch(error => {
  208. this.$refs.uTips.show({
  209. title: error.data.msg,
  210. type: 'warning',
  211. })
  212. })
  213. this.getOrderType()
  214. },
  215. onShow() {},
  216. methods: {
  217. // 获取订单类型
  218. getOrderType() {
  219. switch (this.orderData.orderStatus) {
  220. case 1:
  221. this.orderType = {
  222. title: '等待买家付款',
  223. text: '订单将于' + this.orderData.addOrderTime + '关闭',
  224. }
  225. break;
  226. case 2:
  227. this.orderType = {
  228. title: '等待卖家发货',
  229. text: '您的商品正在打包等待发货',
  230. }
  231. break;
  232. case 3:
  233. this.orderType = {
  234. title: '等待商品送达',
  235. text: '您的商品已发出正在路上,请耐心等待',
  236. }
  237. break;
  238. case 4:
  239. this.orderType = {
  240. title: '商品已送达',
  241. text: '',
  242. }
  243. break;
  244. case 5:
  245. this.orderType = {
  246. title: '交易已完成',
  247. text: '',
  248. }
  249. break;
  250. default:
  251. this.orderType = {
  252. title: '交易已取消',
  253. text: '',
  254. }
  255. }
  256. },
  257. // 操作
  258. orderHandle(e) {
  259. if (this.orderData.orderStatus == 1) {
  260. if (e.index == 0) {
  261. // 取消订单
  262. this.modalContent = '请确定是否取消订单'
  263. this.handleType = 1
  264. this.modalShow = true
  265. } else if (e.index == 1) {
  266. // 立即支付
  267. this.modalContent = '请确定是否立即支付'
  268. this.handleType = 2
  269. this.modalShow = true
  270. }
  271. } else {
  272. if (e.index == 0) {
  273. // 申请售后
  274. NET.request(API.applyService, {
  275. tenantCode: this.orderData.tenantCode
  276. }, 'GET').then(res => {
  277. uni.makePhoneCall({
  278. phoneNumber: res.data.contactTel
  279. });
  280. }).catch(error => {
  281. this.$refs.uTips.show({
  282. title: error.data.msg,
  283. type: 'warning',
  284. })
  285. })
  286. } else {
  287. if (this.orderData.orderStatus == 2) {
  288. // 自助采摘
  289. uni.navigateTo({
  290. url: '/pagesGood/pickVideo?orderId=' + this.orderData.orderId
  291. });
  292. } else if (this.orderData.orderStatus == 3) {
  293. if (e.index == 1) {
  294. // 确认收货
  295. this.modalContent = '请确定是否确认收货'
  296. this.handleType = 3
  297. this.modalShow = true
  298. } else {
  299. // 追踪物流
  300. uni.navigateTo({
  301. url: '/pagesMain/logisticsDeatil?orderId=' + this.orderData.orderId
  302. });
  303. }
  304. } else {
  305. // 评价
  306. uni.navigateTo({
  307. url: '/pagesMain/evaluateForm?orderId=' + this.orderData.orderId + '&tenantCode=' + this.orderData.tenantCode +
  308. '&productIds=' + this.orderData.merchantInfoResVO.products.map(site => {
  309. return site.productId
  310. }).join(',')
  311. });
  312. }
  313. }
  314. }
  315. },
  316. // 状态流转
  317. submitHandle() {
  318. if (this.handleType == 1) {
  319. // 取消订单
  320. NET.request(API.cancelOrder, {
  321. orderId: this.orderData.orderId
  322. }, 'GET').then(res => {
  323. this.modalShow = false
  324. this.$refs.uTips.show({
  325. title: '取消订单成功',
  326. type: 'success',
  327. })
  328. setTimeout(() => {
  329. uni.reLaunch({
  330. url: '/pagesMain/orderList?type=' + 1
  331. });
  332. }, 1000)
  333. }).catch(error => {
  334. this.modalShow = false
  335. this.$refs.uTips.show({
  336. title: error.data.msg,
  337. type: 'warning',
  338. })
  339. })
  340. } else if (this.handleType == 2) {
  341. // 立即支付
  342. this.modalShow = false
  343. setTimeout(() => {
  344. uni.reLaunch({
  345. url: '/pagesMain/orderList?type=' + 3
  346. });
  347. }, 1000)
  348. } else if (this.handleType == 3) {
  349. // 确认收货
  350. NET.request(API.confirmOrder, {
  351. orderId: this.orderData.orderId
  352. }, 'GET').then(res => {
  353. this.modalShow = false
  354. this.$refs.uTips.show({
  355. title: '确认收货成功',
  356. type: 'success',
  357. })
  358. setTimeout(() => {
  359. uni.reLaunch({
  360. url: '/pagesMain/orderList?type=' + 5
  361. });
  362. }, 1000)
  363. }).catch(error => {
  364. this.modalShow = false
  365. this.$refs.uTips.show({
  366. title: error.data.msg,
  367. type: 'warning',
  368. })
  369. })
  370. }
  371. },
  372. // 跳转留言列表
  373. goToMessage() {
  374. uni.navigateTo({
  375. url: '/pagesMain/messageList?orderId=' + this.orderData.orderId + '&tenantCode=' + this.orderData.tenantCode
  376. });
  377. }
  378. }
  379. }
  380. </script>
  381. <style lang="less" scoped>
  382. page {
  383. width: 100%;
  384. height: 100%;
  385. }
  386. .container {
  387. width: 100%;
  388. height: 100%;
  389. float: left;
  390. background-color: #f7f7f7;
  391. // box-sizing: border-box;
  392. // padding-bottom: 50px;
  393. overflow-y: auto;
  394. .order-type-info {
  395. width: 100%;
  396. height: 115px;
  397. float: left;
  398. box-sizing: border-box;
  399. padding: 22px 100px 0 15px;
  400. background: #52A63A;
  401. border-radius: 0px 0px 20px 20px;
  402. background-size: 62px;
  403. background-position: calc(100% - 48px) 12px;
  404. background-repeat: no-repeat;
  405. background-image: url(@/static/images/orderDetail.png);
  406. .order-type-title {
  407. width: 100%;
  408. float: left;
  409. height: 20px;
  410. line-height: 20px;
  411. font-size: 15px;
  412. font-family: PingFang SC;
  413. color: #FFFFFF;
  414. margin-bottom: 4px;
  415. }
  416. .order-type-text {
  417. width: 100%;
  418. float: left;
  419. height: 20px;
  420. line-height: 20px;
  421. font-size: 12px;
  422. font-family: PingFang SC;
  423. color: #FFFFFF;
  424. }
  425. }
  426. .address-info-box {
  427. width: calc(100% - 30px);
  428. float: left;
  429. box-sizing: border-box;
  430. padding: 16px 18px 16px 16px;
  431. margin: -34px 15px 10px 15px;
  432. background: #FFFFFF;
  433. border-radius: 10px;
  434. .address-icon {
  435. width: 36px;
  436. height: 40px;
  437. float: left;
  438. align-items: center;
  439. display: flex;
  440. .iconfont {
  441. color: #52A63A;
  442. font-size: 36px;
  443. }
  444. }
  445. .address-content {
  446. width: calc(100% - 56px);
  447. height: 40px;
  448. float: left;
  449. margin: 0 8px 0 12px;
  450. .address-info {
  451. height: 20px;
  452. font-family: PingFang SC;
  453. line-height: 20px;
  454. overflow: hidden;
  455. text-overflow: ellipsis;
  456. white-space: nowrap;
  457. .address-name {
  458. font-size: 16px;
  459. color: #333333;
  460. margin-right: 14px;
  461. }
  462. .address-phone {
  463. font-size: 12px;
  464. color: #666666;
  465. }
  466. }
  467. .address-detail {
  468. height: 20px;
  469. font-size: 16px;
  470. font-family: PingFang SC;
  471. color: #333333;
  472. line-height: 20px;
  473. overflow: hidden;
  474. text-overflow: ellipsis;
  475. white-space: nowrap;
  476. }
  477. }
  478. }
  479. .goods-info-box {
  480. width: calc(100% - 30px);
  481. float: left;
  482. margin: 0 15px 10px 15px;
  483. background: #FFFFFF;
  484. border-radius: 10px;
  485. .shop-info {
  486. width: 100%;
  487. height: 48px;
  488. float: left;
  489. box-sizing: border-box;
  490. padding: 13px 15px 12px 15px;
  491. border-bottom: 1px solid #EEEEEE;
  492. line-height: 22px;
  493. .icondianpu {
  494. font-size: 22px;
  495. color: #333333;
  496. }
  497. .shop-name {
  498. font-size: 15px;
  499. font-family: PingFang SC;
  500. color: #333333;
  501. margin: 0 8px 0 10px;
  502. }
  503. .iconshangjia {
  504. font-size: 12px;
  505. color: #999999;
  506. }
  507. }
  508. .goods-list {
  509. width: 100%;
  510. float: left;
  511. box-sizing: border-box;
  512. padding: 10px 15px 0 15px;
  513. .goods-row {
  514. width: 100%;
  515. height: 90px;
  516. float: left;
  517. display: flex;
  518. margin-bottom: 10px;
  519. .goods-img {
  520. width: 90px;
  521. height: 90px;
  522. border-radius: 5px;
  523. object-fit: cover;
  524. }
  525. .goods-info {
  526. width: calc(100% - 106px);
  527. height: 90px;
  528. margin-left: 16px;
  529. .goods-name {
  530. width: 100%;
  531. height: 36px;
  532. float: left;
  533. font-size: 14px;
  534. font-family: PingFang SC;
  535. color: #333333;
  536. line-height: 18px;
  537. overflow: hidden;
  538. text-overflow: ellipsis;
  539. display: -webkit-box;
  540. -webkit-line-clamp: 2;
  541. -webkit-box-orient: vertical;
  542. word-wrap: break-word;
  543. }
  544. .goods-type {
  545. height: 20px;
  546. float: left;
  547. background: #F0F0F0;
  548. border-radius: 4px;
  549. padding: 0 8px;
  550. margin: 6px 0;
  551. font-size: 10px;
  552. font-family: PingFang SC;
  553. color: #666666;
  554. line-height: 20px;
  555. }
  556. .plant-area {
  557. height: 20px;
  558. float: right;
  559. margin: 6px 0;
  560. font-size: 12px;
  561. font-family: PingFang SC;
  562. color: #333333;
  563. }
  564. .goods-price-number {
  565. width: 100%;
  566. height: 20px;
  567. float: left;
  568. line-height: 20px;
  569. font-family: PingFang SC;
  570. color: #333333;
  571. .goods-unit {
  572. font-size: 12px;
  573. }
  574. .goods-price {
  575. font-size: 15px;
  576. margin-right: 6px;
  577. }
  578. .goods-number {
  579. font-size: 12px;
  580. }
  581. }
  582. .plant-text {
  583. float: right;
  584. font-size: 12px;
  585. font-family: PingFang SC;
  586. color: #333333;
  587. }
  588. }
  589. }
  590. }
  591. .order-info {
  592. width: 100%;
  593. float: left;
  594. /deep/.u-cell {
  595. padding: 6px 16px;
  596. }
  597. }
  598. .pay-info {
  599. width: 100%;
  600. height: 46px;
  601. float: left;
  602. box-sizing: border-box;
  603. border-top: 1px solid #EEEEEE;
  604. padding-right: 15px;
  605. line-height: 44px;
  606. font-family: PingFang SC;
  607. font-size: 14px;
  608. text-align: right;
  609. white-space: nowrap;
  610. .pay-text {
  611. float: left;
  612. color: #333333;
  613. margin-left: 15px;
  614. }
  615. .pay-price {
  616. color: #52A63A;
  617. }
  618. }
  619. }
  620. .order-info-box {
  621. width: calc(100% - 30px);
  622. float: left;
  623. margin: 0 15px 10px 15px;
  624. background: #FFFFFF;
  625. border-radius: 10px;
  626. .info-title-box {
  627. width: 100%;
  628. height: 48px;
  629. float: left;
  630. box-sizing: border-box;
  631. padding: 15px 15px 14px 15px;
  632. border-bottom: 1px solid #EEEEEE;
  633. line-height: 18px;
  634. white-space: nowrap;
  635. .info-title {
  636. height: 18px;
  637. float: left;
  638. font-size: 15px;
  639. font-family: PingFang SC;
  640. color: #333333;
  641. margin-right: 8px;
  642. padding-left: 10px;
  643. border-left: 2px solid #74BD60;
  644. }
  645. .iconfangxiang {
  646. float: right;
  647. font-size: 12px;
  648. color: #999999;
  649. }
  650. }
  651. .info-content-box {
  652. width: 100%;
  653. float: left;
  654. padding: 15px 0;
  655. .message-row {
  656. width: 100%;
  657. float: left;
  658. box-sizing: border-box;
  659. padding: 0 15px;
  660. margin-bottom: 15px;
  661. .message-head {
  662. width: 50px;
  663. height: 50px;
  664. object-fit: cover;
  665. float: left;
  666. border-radius: 50%;
  667. overflow: hidden;
  668. }
  669. .message-info-box {
  670. width: calc(100% - 75px);
  671. float: right;
  672. .message-name {
  673. width: 50%;
  674. height: 30px;
  675. float: left;
  676. font-size: 15px;
  677. font-family: PingFang SC;
  678. color: #333333;
  679. line-height: 30px;
  680. overflow: hidden;
  681. text-overflow: ellipsis;
  682. white-space: nowrap;
  683. }
  684. .message-date {
  685. width: 50%;
  686. height: 30px;
  687. float: left;
  688. font-size: 12px;
  689. font-family: PingFang SC;
  690. color: #666666;
  691. text-align: right;
  692. line-height: 30px;
  693. overflow: hidden;
  694. text-overflow: ellipsis;
  695. white-space: nowrap;
  696. }
  697. .message-text {
  698. width: 100%;
  699. height: 20px;
  700. float: left;
  701. font-size: 12px;
  702. font-family: PingFang SC;
  703. color: #666666;
  704. line-height: 20px;
  705. overflow: hidden;
  706. text-overflow: ellipsis;
  707. white-space: nowrap;
  708. }
  709. .message-img-box {
  710. width: 100%;
  711. float: left;
  712. .message-img {
  713. width: 76px;
  714. height: 76px;
  715. object-fit: cover;
  716. float: left;
  717. margin: 0 10px 10px 0;
  718. }
  719. }
  720. }
  721. }
  722. .message-row:last-child {
  723. margin-bottom: 0;
  724. }
  725. .order-info-row {
  726. width: 100%;
  727. float: left;
  728. box-sizing: border-box;
  729. padding: 0 15px;
  730. font-size: 12px;
  731. font-family: PingFang SC;
  732. color: #333333;
  733. line-height: 26px;
  734. word-break:break-all;
  735. }
  736. }
  737. }
  738. .order-handle {
  739. width: 100%;
  740. height: 50px;
  741. float: left;
  742. border-top: 1px solid #cccccc;
  743. }
  744. }
  745. </style>