refundDetail.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. <template>
  2. <view class="container">
  3. <view class="tui-order-header">
  4. <view class="tui-header-content">
  5. <view>
  6. <view class="tui-status-text">
  7. <!-- 退货 -->
  8. <block v-if="order_refund.refund_type==2">
  9. <block v-if="order_refund.refund_status==0">
  10. <block v-if="order_refund.is_agree==0">等待审核中</block>
  11. <block v-else>
  12. <block v-if="order_refund.is_user_send==0">已同意退货,请及时退回商品</block>
  13. <block v-else>已发货,待平台确认</block>
  14. </block>
  15. </block>
  16. <block style="color:#36ba75" v-if="order_refund.refund_status==1">
  17. 已同意退货并已退款</block>
  18. <block style="color:#ff4544" v-if="order_refund.refund_status==3">
  19. 已拒绝退货</block>
  20. </block>
  21. <!-- 换货 -->
  22. <block v-else>
  23. <block v-if="order_refund.refund_status==0">等待审核中</block>
  24. <block style="color:#36ba75" v-if="order_refund.refund_status==2">等待审核中</block>
  25. <block style="color:#ff4544" v-if="order_refund.refund_status==3">已拒绝换货</block>
  26. </block>
  27. </view>
  28. <!--<view class="tui-reason"><text class="tui-reason-text">退款原路退回 2020-09-02 08:20:19</text></view>-->
  29. </view>
  30. <!-- img_refundfailure.png -->
  31. <!--<image src="/static/images/mall/img_success3x.png" class="tui-status-img" mode="widthFix"></image>-->
  32. </view>
  33. </view>
  34. <view class="tui-order-item"
  35. v-if="(order_refund.refund_type==1 && order_refund.refund_status==0 && order_refund.is_agree!=0) || order_refund.refund_status==2">
  36. <tui-list-cell :hover="false" :lineLeft="false">
  37. <view class="tui-order-title">收件人信息</view>
  38. </tui-list-cell>
  39. <view style="padding-left:24rpx;margin-bottom:20rpx;">
  40. <view class="address-info">
  41. <view style="font-weight:bold">{{order_refund.re_name}} {{order_refund.re_mobile}}</view>
  42. <view style="margin-top:10rpx">{{order_refund.re_address}}</view>
  43. </view>
  44. <view style="height:1rpx;background:#e2e2e2;margin:20rpx 0"></view>
  45. <view style="font-size:10pt;color:#bbbbbb">· 未与卖家协商一致情况下,请勿寄到付或平邮</view>
  46. <view style="height:5rpx"></view>
  47. <view style="font-size:10pt;color:#bbbbbb;padding-bottom:24rpx">· 请填写真实有效物流信息</view>
  48. </view>
  49. </view>
  50. <form @submit="bindSave" report-submit="true">
  51. <block v-if="order_refund.is_agree==1">
  52. <view v-if="order_refund.is_user_send==0" class="express-block">
  53. <view class="flex flex-row" style="border-bottom: 3rpx solid #eee;">
  54. <view class="flex-grow-0 flex-y-center" style="margin-right: 32rpx">物流公司:</view>
  55. <view class="flex-grow-1">
  56. <picker name="express" @change="bindExpressPickerChange" :value="express_index"
  57. :range="express_list" range-key="name" style="padding: 24rpx 0">
  58. <view class="flex flex-row">
  59. <view class="flex-grow-1">
  60. <view v-if="express_index>=0">
  61. {{express_list[express_index].name}}
  62. </view>
  63. <view v-else style="color: #888">请选择物流公司</view>
  64. </view>
  65. <view class="flex-grow-0">
  66. <image src="/static/images/arrow-right.png" style="width: 12rpx;height: 22rpx;">
  67. </image>
  68. </view>
  69. </view>
  70. </picker>
  71. </view>
  72. </view>
  73. <view class="flex flex-row">
  74. <view class="flex-grow-0 flex-y-center" style="margin-right: 32rpx">物流单号:</view>
  75. <view class="flex-grow-1">
  76. <input name="express_no" placeholder="请填写物流单号" style="padding: 24rpx 0;height: auto">
  77. </view>
  78. </view>
  79. </view>
  80. <view v-else class="express-block" style="padding: 32rpx 24rpx">
  81. <view class="flex flex-row" style="margin-bottom: 18rpx">
  82. <view class="flex-grow-0" style="margin-right: 32rpx">物流公司:</view>
  83. <view class="flex-grow-1">{{order_refund.user_send_express}}</view>
  84. </view>
  85. <view class="flex flex-row">
  86. <view class="flex-grow-0" style="margin-right: 32rpx">物流单号:</view>
  87. <view class="flex-grow-1">{{order_refund.user_send_express_no}}</view>
  88. </view>
  89. </view>
  90. </block>
  91. <view class="goods-list">
  92. <block v-for="(item, index) in orderDetail.goods" :key="index">
  93. <view class="a-goods">
  94. <view class="img-box">
  95. <image :src="item.image" class="img"></image>
  96. </view>
  97. <view class="text-box">
  98. <view class="arow arow01">
  99. <view class="goods-name">
  100. <text>{{item.name}}</text>
  101. <view><text v-if="item.label">规格:{{item.label}}</text></view>
  102. </view>
  103. <view class="goods-price">¥{{item.price}}</view>
  104. </view>
  105. <view class="arow">
  106. <view class="goods-label">{{item.goodsO}}</view>
  107. <view class="goods-num">x {{item.quantity}}</view>
  108. </view>
  109. </view>
  110. </view>
  111. </block>
  112. </view>
  113. <view class="bg-white mb-20 data-row">
  114. <view class="mb-20">售后类型:{{order_refund.refund_type==1 ? '退货退款': '换货' }}</view>
  115. <view class="mb-20">退款金额:
  116. <text style="color:#ff4544">¥{{order_refund.refund_price}}</text>
  117. </view>
  118. <view class="mb-20">申请原因:{{order_refund.refund_desc}}</view>
  119. <view v-if="order_refund.refund_status == 3" class="mb-20">拒绝原因:
  120. <text style="color:#ff4544">{{order_refund.refuse_desc}}</text>
  121. </view>
  122. <view class="pic-list mb-20">
  123. <image v-for="(item, index) in order_refund.refund_pic_list" :key="index" @tap="viewImage"
  124. :data-index="index" mode="aspectFill" style="width: 160rpx;height: 160rpx" :src="item"></image>
  125. </view>
  126. </view>
  127. <block v-if="order_refund.is_agree==1 && order_refund.is_user_send==0">
  128. <view style="padding: 24rpx 24rpx 48rpx">
  129. <button form-type="submit" class="goods_send">确认发货
  130. </button>
  131. </view>
  132. </block>
  133. </form>
  134. <view class="tui-order-info">
  135. <tui-list-view unlined="bottom">
  136. <tui-list-cell unlined>
  137. <!-- #ifdef MP-WEIXIN -->
  138. <button v-if="configkefu.minionline==1 || configkefu.minionline==3" @click="toim"
  139. class="tui-contact">
  140. <image src="/static/images/mall/icon_order_contactmerchant.png"></image>
  141. <text>联系商家</text>
  142. </button>
  143. <button v-else-if="configkefu.minionline==2" @click="toimwebview(configkefu.kefuurl)"
  144. class="tui-contact">
  145. <image src="/static/images/mall/icon_order_contactmerchant.png"></image>
  146. <text>联系商家</text>
  147. </button>
  148. <button v-else open-type="contact" class="tui-contact">
  149. <image src="/static/images/mall/icon_order_contactmerchant.png"></image>
  150. <text>联系商家</text>
  151. </button>
  152. <!-- #endif -->
  153. <!-- #ifndef MP-WEIXIN -->
  154. <button @click="toim"
  155. class="tui-contact">
  156. <image src="/static/images/mall/icon_order_contactmerchant.png"></image>
  157. <text>联系商家</text>
  158. </button>
  159. <!-- #endif -->
  160. </tui-list-cell>
  161. </tui-list-view>
  162. </view>
  163. </view>
  164. </template>
  165. <script>
  166. export default {
  167. data() {
  168. return {
  169. configkefu: {},
  170. //1-退款中 2-退款成功 3-退款失败
  171. status: 1,
  172. show: false,
  173. orderDetail: [],
  174. order_refund: [],
  175. express_list: [],
  176. express_index: 0,
  177. };
  178. },
  179. onLoad: function(options) {
  180. let _this = this
  181. var orderid = options.id;
  182. _this.$config.init(function() {
  183. _this.configkefu = _this.$config.getConf("kefu")||{};
  184. });
  185. _this.$request.get('order.detail', {
  186. samkey: (new Date()).valueOf(),
  187. id: orderid
  188. }).then(function(res) {
  189. if (res.errno != 0) {
  190. uni.showModal({
  191. title: '错误',
  192. content: res.msg,
  193. showCancel: false
  194. })
  195. return;
  196. }
  197. _this.orderDetail = res.data;
  198. _this.order_refund = res.data.OrderRefund;
  199. });
  200. _this.$request.get('express.index').then(function(res) {
  201. if (res.errno == 0) {
  202. _this.express_list = res.data;
  203. }
  204. });
  205. },
  206. methods: {
  207. bindExpressPickerChange: function(e) {
  208. this.express_index = e.detail.value;
  209. },
  210. bindSave: function(e) {
  211. var that = this;
  212. const express_no = e.detail.value.express_no;
  213. let express_index = this.express_index;
  214. if (!express_no) {
  215. uni.showToast({
  216. title: '请输入快递单号',
  217. icon: 'none'
  218. });
  219. return;
  220. }
  221. if (!express_index) {
  222. uni.showToast({
  223. title: '请选择快递公司',
  224. icon: 'none'
  225. });
  226. return;
  227. }
  228. that.$request.post('orderrefund.goodssend', {
  229. order_id: that.orderDetail.orderInfo.id,
  230. is_user_send: 1,
  231. user_send_express_no: express_no,
  232. user_send_express: this.express_list[express_index].name,
  233. user_send_express_code: this.express_list[express_index].code
  234. }).then(function(res) {
  235. if (res.errno != 0) {
  236. uni.showToast({
  237. title: res.message,
  238. icon: 'none'
  239. });
  240. return;
  241. } else {
  242. uni.showModal({
  243. title: '提示',
  244. content: res.message,
  245. showCancel: false,
  246. //是否显示取消按钮
  247. success: function(res) {
  248. if (res.cancel) { //点击取消,默认隐藏弹框
  249. } else {
  250. that.sam.navigateTo("/pagesA/my/myOrder/myOrder");
  251. }
  252. }
  253. });
  254. }
  255. });
  256. },
  257. toimwebview(url) {
  258. this.tui.href("/pages/webview/h5?url=" + url)
  259. },
  260. toim() {
  261. if (this.configkefu.minionline == 2 && this.configkefu.kefuurl) {
  262. this.tui.href(this.configkefu.kefuurl);
  263. } else if (this.configkefu.minionline == 3) {
  264. var telstr = this.configkefu.kefutel;
  265. uni.makePhoneCall({
  266. phoneNumber: telstr
  267. });
  268. } else {
  269. this.tui.href("/pages/im/h5");
  270. }
  271. },
  272. },
  273. /**
  274. * 页面相关事件处理函数--监听用户下拉动作
  275. */
  276. onPullDownRefresh: function() {
  277. setTimeout(() => {
  278. uni.stopPullDownRefresh()
  279. }, 200);
  280. },
  281. };
  282. </script>
  283. <style>
  284. .container {
  285. padding-bottom: 80rpx;
  286. background-color: #fff;
  287. }
  288. .tui-order-header {
  289. width: 100%;
  290. height: 160rpx;
  291. position: relative;
  292. background: linear-gradient(90deg, rgb(255, 89, 38), rgb(240, 14, 44));
  293. }
  294. .tui-img-bg {
  295. width: 100%;
  296. height: 160rpx;
  297. }
  298. .tui-header-content {
  299. width: 100%;
  300. height: 160rpx;
  301. position: absolute;
  302. z-index: 10;
  303. left: 0;
  304. top: 0;
  305. display: flex;
  306. align-items: center;
  307. justify-content: space-between;
  308. padding: 0 70rpx;
  309. box-sizing: border-box;
  310. }
  311. .tui-status-text {
  312. font-size: 34rpx;
  313. line-height: 34rpx;
  314. color: #fefefe;
  315. }
  316. .tui-reason {
  317. font-size: 24rpx;
  318. line-height: 24rpx;
  319. color: rgba(254, 254, 254, 0.75);
  320. padding-top: 15rpx;
  321. display: flex;
  322. align-items: center;
  323. }
  324. .tui-reason-text {
  325. padding-right: 12rpx;
  326. }
  327. .tui-status-img {
  328. width: 80rpx;
  329. height: 80rpx;
  330. display: block;
  331. }
  332. .tui-flex-box {
  333. width: 100%;
  334. display: flex;
  335. align-items: center;
  336. }
  337. .tui-icon-img {
  338. width: 44rpx;
  339. height: 44rpx;
  340. flex-shrink: 0;
  341. }
  342. .tui-order-item {
  343. margin-top: 20rpx;
  344. border-radius: 10rpx;
  345. overflow: hidden;
  346. background-color: #fff;
  347. }
  348. .tui-title {
  349. width: 100%;
  350. font-size: 28rpx;
  351. line-height: 28rpx;
  352. display: flex;
  353. align-items: center;
  354. justify-content: space-between;
  355. }
  356. .tui-goods-item {
  357. width: 100%;
  358. padding: 20rpx 30rpx;
  359. box-sizing: border-box;
  360. display: flex;
  361. justify-content: space-between;
  362. }
  363. .tui-goods-img {
  364. width: 180rpx;
  365. height: 180rpx;
  366. display: block;
  367. flex-shrink: 0;
  368. }
  369. .tui-goods-center {
  370. flex: 1;
  371. padding: 20rpx 8rpx;
  372. box-sizing: border-box;
  373. }
  374. .tui-goods-name {
  375. max-width: 310rpx;
  376. word-break: break-all;
  377. overflow: hidden;
  378. text-overflow: ellipsis;
  379. display: -webkit-box;
  380. -webkit-box-orient: vertical;
  381. -webkit-line-clamp: 2;
  382. font-size: 26rpx;
  383. line-height: 32rpx;
  384. }
  385. .tui-goods-attr {
  386. font-size: 22rpx;
  387. color: #888888;
  388. line-height: 32rpx;
  389. padding-top: 20rpx;
  390. word-break: break-all;
  391. overflow: hidden;
  392. text-overflow: ellipsis;
  393. display: -webkit-box;
  394. -webkit-box-orient: vertical;
  395. -webkit-line-clamp: 2;
  396. }
  397. .tui-price-right {
  398. text-align: right;
  399. font-size: 24rpx;
  400. color: #888888;
  401. line-height: 30rpx;
  402. padding-top: 20rpx;
  403. }
  404. .tui-order-title {
  405. position: relative;
  406. font-size: 28rpx;
  407. line-height: 28rpx;
  408. padding-left: 12rpx;
  409. box-sizing: border-box;
  410. }
  411. .tui-order-title::before {
  412. content: '';
  413. position: absolute;
  414. left: 0;
  415. top: 0;
  416. border-left: 4rpx solid #eb0909;
  417. height: 100%;
  418. }
  419. .tui-order-content {
  420. width: 100%;
  421. padding: 24rpx 30rpx;
  422. box-sizing: border-box;
  423. background: #fff;
  424. font-size: 24rpx;
  425. line-height: 30rpx;
  426. }
  427. .tui-order-flex {
  428. display: flex;
  429. padding-top: 18rpx;
  430. }
  431. .tui-order-flex:first-child {
  432. padding-top: 0;
  433. }
  434. .tui-item-title {
  435. width: 132rpx;
  436. flex-shrink: 0;
  437. white-space: nowrap;
  438. }
  439. .tui-item-content {
  440. color: #666;
  441. line-height: 32rpx;
  442. }
  443. .tui-contact {
  444. display: flex;
  445. align-items: center;
  446. justify-content: center;
  447. font-size: 28rpx;
  448. padding-top: 1rpx;
  449. padding-bottom: 1rpx;
  450. padding-left: 0px;
  451. padding-right: 0px;
  452. background-color: #fff;
  453. margin-left: auto;
  454. margin-right: auto;
  455. box-sizing: border-box;
  456. text-align: center;
  457. text-decoration: none;
  458. line-height: 22px;
  459. border-radius: 0px;
  460. -webkit-tap-highlight-color: transparent;
  461. overflow: hidden;
  462. cursor: pointer;
  463. color: #333;
  464. }
  465. .tui-contact image {
  466. width: 36rpx;
  467. height: 36rpx;
  468. margin-right: 16rpx;
  469. }
  470. .address-info {
  471. font-size: 26rpx;
  472. line-height: 30rpx;
  473. margin: 20rpx 40rpx 20rpx 0;
  474. }
  475. .data-row {
  476. color: #333;
  477. font-size: 26rpx;
  478. line-height: 46rpx;
  479. padding: 28rpx 24rpx;
  480. border-top: 1rpx solid #e3e3e3;
  481. }
  482. .pic-list {
  483. margin-left: -20rpx;
  484. margin-top: -20rpx;
  485. }
  486. .pic-list image {
  487. margin-left: 20rpx;
  488. margin-top: 20rpx;
  489. }
  490. .status-bar {
  491. position: relative;
  492. height: 140rpx;
  493. line-height: 140rpx;
  494. color: #fff;
  495. padding: 0 40rpx;
  496. margin-bottom: 20rpx;
  497. }
  498. .status-bar image {
  499. position: absolute;
  500. left: 0;
  501. top: 0;
  502. width: 100%;
  503. height: 100%;
  504. z-index: -1;
  505. background: #fb715a;
  506. }
  507. .express-block {
  508. background: #fff;
  509. margin-bottom: 20rpx;
  510. border-bottom: 1rpx solid #e3e3e3;
  511. padding: 0 24rpx;
  512. }
  513. .copy-fz {
  514. border-radius: 50%;
  515. margin-right: 24rpx;
  516. color: #999999;
  517. width: 100rpx;
  518. height: 100rpx;
  519. border: 1rpx solid #e2e2e2;
  520. font-size: 10pt;
  521. }
  522. .address-info {
  523. justify-content: space-between;
  524. margin: 20rpx 40rpx 20rpx 0;
  525. color: #353535;
  526. }
  527. .goods_send {
  528. border: none;
  529. background: #e41f19;
  530. color: #fff;
  531. border-radius: 10rpx;
  532. height: 80rpx;
  533. line-height: 80rpx;
  534. }
  535. .goods-list {
  536. width: 100%;
  537. background-color: #fff;
  538. margin-bottom: 20rpx;
  539. margin-top: 20rpx;
  540. }
  541. .goods-list .list-title {
  542. font-size: 28rpx;
  543. color: #000;
  544. padding: 30rpx 0 25rpx 30rpx;
  545. }
  546. .goods-list .a-goods {
  547. width: 720rpx;
  548. margin-left: 30rpx;
  549. display: flex;
  550. padding: 30rpx 30rpx 30rpx 0;
  551. }
  552. .goods-list .a-goods .img-box {
  553. width: 160rpx;
  554. height: 160rpx;
  555. overflow: hidden;
  556. margin-right: 20rpx;
  557. background-color: #d8d8d8;
  558. }
  559. .goods-list .img-box .img {
  560. width: 160rpx;
  561. height: 160rpx;
  562. }
  563. .goods-list .a-goods .text-box {
  564. width: 510rpx;
  565. box-sizing: border-box;
  566. padding-top: 10rpx;
  567. }
  568. .goods-list .btn-row {
  569. width: 720rpx;
  570. margin-left: 30rpx;
  571. padding-top: 15rpx;
  572. padding-bottom: 15rpx;
  573. border-top: 1rpx solid #eee;
  574. }
  575. .a-goods .text-box .arow {
  576. display: flex;
  577. justify-content: space-between;
  578. align-items: center;
  579. }
  580. .a-goods .text-box .arow .goods-name {
  581. width: 360rpx;
  582. font-size: 26rpx;
  583. height: 74rpx;
  584. color: #000000;
  585. line-height: 1.6;
  586. overflow: hidden;
  587. }
  588. .a-goods .text-box .arow01 {
  589. margin-bottom: 30rpx;
  590. }
  591. .a-goods .text-box .arow .goods-price {
  592. font-size: 26rpx;
  593. color: #000000;
  594. align-self: flex-start;
  595. }
  596. .a-goods .text-box .arow .goods-label {
  597. font-size: 26rpx;
  598. color: #999;
  599. }
  600. .a-goods .text-box .arow .goods-num {
  601. font-size: 26rpx;
  602. color: #999;
  603. }
  604. .flex-x-center {
  605. display: -webkit-box;
  606. display: -webkit-flex;
  607. display: flex;
  608. -webkit-box-pack: center;
  609. -webkit-justify-content: center;
  610. -ms-flex-pack: center;
  611. justify-content: center;
  612. }
  613. .flex {
  614. display: -webkit-box;
  615. display: -webkit-flex;
  616. display: flex;
  617. }
  618. .flex-row {
  619. font-size: 26rpx;
  620. display: -webkit-box;
  621. display: -webkit-flex;
  622. display: flex;
  623. -webkit-box-orient: horizontal;
  624. -webkit-flex-direction: row;
  625. flex-direction: row;
  626. }
  627. .flex-col {
  628. display: -webkit-box;
  629. display: -webkit-flex;
  630. display: flex;
  631. -webkit-box-orient: vertical;
  632. -webkit-flex-direction: column;
  633. flex-direction: column;
  634. }
  635. .flex-grow-0 {
  636. min-width: 0;
  637. -webkit-box-flex: 0;
  638. -webkit-flex-grow: 0;
  639. -ms-flex-positive: 0;
  640. flex-grow: 0;
  641. -webkit-flex-shrink: 0;
  642. -ms-flex-negative: 0;
  643. flex-shrink: 0;
  644. }
  645. .flex-grow-1 {
  646. min-width: 0;
  647. -webkit-box-flex: 1;
  648. -webkit-flex-grow: 1;
  649. -ms-flex-positive: 1;
  650. flex-grow: 1;
  651. -webkit-flex-shrink: 1;
  652. -ms-flex-negative: 1;
  653. flex-shrink: 1;
  654. }
  655. .flex-x-center {
  656. display: -webkit-box;
  657. display: -webkit-flex;
  658. display: flex;
  659. -webkit-box-pack: center;
  660. -webkit-justify-content: center;
  661. -ms-flex-pack: center;
  662. justify-content: center;
  663. }
  664. .flex-y-center {
  665. display: -webkit-box;
  666. display: -webkit-flex;
  667. display: flex;
  668. -webkit-box-align: center;
  669. -webkit-align-items: center;
  670. -ms-flex-align: center;
  671. -ms-grid-row-align: center;
  672. align-items: center;
  673. }
  674. .flex-y-bottom {
  675. display: -webkit-box;
  676. display: -webkit-flex;
  677. display: flex;
  678. -webkit-box-align: end;
  679. -webkit-align-items: flex-end;
  680. -ms-flex-align: end;
  681. -ms-grid-row-align: flex-end;
  682. align-items: flex-end;
  683. }
  684. .tui-img__box {
  685. width: 100%;
  686. font-size: 0;
  687. padding-top: 4rpx;
  688. }
  689. .tui-img__box image {
  690. width: 200rpx;
  691. height: 200rpx;
  692. margin-right: 12rpx;
  693. margin-top: 12rpx;
  694. }
  695. .tui-image {
  696. width: 400rpx !important;
  697. height: auto;
  698. }
  699. </style>