index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. <template>
  2. <view class="pos-order-list" ref="container">
  3. <view class="nav acea-row row-around row-middle">
  4. <view class="item" :class="where.status == 1 ? 'on' : ''" @click="changeStatus(1)">
  5. 待付款
  6. </view>
  7. <view class="item" :class="where.status == 2 ? 'on' : ''" @click="changeStatus(2)">
  8. 待发货
  9. </view>
  10. <view class="item" :class="where.status == 3 ? 'on' : ''" @click="changeStatus(3)">
  11. 待收货
  12. </view>
  13. <view class="item" :class="where.status == 4 ? 'on' : ''" @click="changeStatus(4)">
  14. 待评价
  15. </view>
  16. <view class="item" :class="where.status == 5 ? 'on' : ''" @click="changeStatus(5)">
  17. 已完成
  18. </view>
  19. <view class="item" :class="where.status == 6 ? 'on' : ''" @click="changeStatus(6)">
  20. 退款
  21. </view>
  22. </view>
  23. <view v-if="where.status == 6" class="list">
  24. <view class="item" v-for="(item, index) in list" :key="index">
  25. <view class="order-num acea-row row-middle">
  26. <text v-if="item.order && item.order.activity_type != 0" class="activity_type">
  27. {{ item.order.activity_type == 1 ? '秒杀' : item.order.activity_type == 2 ? '预售' : item.order.activity_type == 3 ? '助力' : item.order.activity_type == 4 ? '拼团' : item.order.activity_type == 10 ? '套餐' :'' }}
  28. </text>
  29. 退款单号:{{ item.refund_order_sn }}
  30. <text class="time">申请时间:{{ item.create_time }}</text>
  31. </view>
  32. <view class="pos-order-goods" v-for="(val, key) in item.refundProduct" :key="key" @click="toRefundDetail(item)">
  33. <view class="goods acea-row row-between-wrapper">
  34. <view class="picTxt acea-row row-between-wrapper">
  35. <view class="pictrue">
  36. <image :src="val.product.cart_info.product.image" />
  37. </view>
  38. <view class="text acea-row row-between row-column">
  39. <view class="info line1 refund-info">
  40. {{ val.product.cart_info.product.store_name }}
  41. </view>
  42. <view class="attr" v-if="val.product.cart_info.productAttr.sku">
  43. {{ val.product.cart_info.productAttr.sku }}
  44. </view>
  45. <view class="y-money refund-y-money">
  46. 退款:¥{{ val.refund_price }}
  47. </view>
  48. </view>
  49. </view>
  50. <view class="money refund-money">
  51. <view class="num">x{{ val.refund_num }}</view>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="item-status">
  56. <text v-if="item.status == -1" class="iconfont icon-yijujue1"></text>
  57. <text v-if="item.status == 0" class="iconfont icon-tuikuanzhong on"></text>
  58. <text v-if="item.status == 1 || item.status == 2" class="iconfont icon-tuihuozhong on"></text>
  59. <text v-if="item.status == 3" class="iconfont icon-yituikuan1"></text>
  60. </view>
  61. <view class="operation acea-row row-between-wrapper">
  62. <view class="more">
  63. </view>
  64. <view class="acea-row row-middle">
  65. <view class="bnt" @click="refundModify(item, 1)">订单备注</view>
  66. <navigator class="bnt bnt_color" v-if="item.status == 0" :url="'/pages/admin/orderRefund/index?id='+item.refund_order_id+'&merId='+merId">立即退款</navigator>
  67. <navigator class="bnt" v-if="item.status == 2" :url="'/pages/users/goods_logistics/index?refundId='+item.refund_order_id+'&merId='+merId">查看物流</navigator>
  68. <view class="bnt bnt_color" v-if="item.status == 2" @tap='confirmOrder(item)'>确认收货</view>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. <view v-else class="list">
  74. <view class="item" v-for="(item, index) in list" :key="index">
  75. <view class="order-num acea-row row-middle">
  76. <text v-if="item.activity_type != 0" class="activity_type">
  77. {{ item.activity_type == 1 ? '秒杀' : item.activity_type == 2 ? '预售' : item.activity_type == 3 ? '助力' : item.activity_type == 4 ? '拼团' : item.activity_type == 10 ? '套餐' :'' }}
  78. </text>
  79. 订单号:{{ item.order_sn }}
  80. <text class="time">下单时间:{{ item.create_time }}</text>
  81. <text class="order-status" v-if="item.refunding != 0 && where.status != 1">{{item.refunding==1 ? '退款中' : item.refunding==2 ? '部分退款' : '全部退款'}}</text>
  82. </view>
  83. <view class="pos-order-goods" v-for="(val, key) in item.orderProduct" :key="key" @click="toDetail(item)">
  84. <view class="goods acea-row row-between-wrapper">
  85. <view class="picTxt acea-row row-between-wrapper">
  86. <view class="pictrue">
  87. <image :src="val.cart_info.product.image" />
  88. </view>
  89. <view class="text acea-row row-between row-column">
  90. <view class="info line2">
  91. {{ val.cart_info.product.store_name }}
  92. </view>
  93. <view class="attr" v-if="val.cart_info.productAttr.sku">
  94. {{ val.cart_info.productAttr.sku }}
  95. </view>
  96. </view>
  97. </view>
  98. <view class="money">
  99. <view class="x-money">¥{{ val.cart_info.productAttr.price }}</view>
  100. <view class="num">x{{ val.product_num }}</view>
  101. <view class="refund-num" v-if="val.product_num-val.refund_num>0">{{val.product_num-val.refund_num}}件{{val.is_refund==1?'退款中' : val.is_refund==2 ? '已退款' : val.is_refund==3?'全部退款':''}}</view>
  102. </view>
  103. </view>
  104. </view>
  105. <view class="public-total">
  106. 共{{ item.total_num }}件商品,
  107. <span v-if="where.status <= 1">应</span>
  108. <span v-else>已</span>
  109. 支付
  110. <span class="money">¥{{ item.pay_price }}</span> (邮费 ¥{{ item.total_postage}})
  111. </view>
  112. <view class="operation acea-row row-between-wrapper">
  113. <view class="more">
  114. </view>
  115. <view class="acea-row row-middle">
  116. <view class="bnt" @click="modify(item, 0)" v-if="where.status == 1 && item.activity_type != 2">
  117. 一键改价
  118. </view>
  119. <view class="bnt" @click="modify(item, 1)">订单备注</view>
  120. <view class="bnt bnt_color" v-if="where.status == 2" @click="toPostage(item)">去发货</view>
  121. </view>
  122. </view>
  123. </view>
  124. </view>
  125. <Loading :loaded="loaded" :loading="loading"></Loading>
  126. <view v-if="!loading && list.length <= 0" class="nothing">
  127. <image src="http://ygs.hqgjsmc.com/baseimg/no_thing.png" mode="widthFix"></image>
  128. <view class="nothing_text">暂无订单~</view>
  129. </view>
  130. <PriceChange :change="change" :orderInfo="orderInfo" v-on:closechange="changeclose($event)" v-on:savePrice="savePrice"
  131. :status="status"></PriceChange>
  132. <view>
  133. <view class="priceChange" :class="refundMark === true ? 'on' : ''">
  134. <view class="priceTitle">
  135. 订单备注
  136. <span class="iconfont icon-guanbi" @click="refundMark = false"></span>
  137. </view>
  138. <view class="listChange">
  139. <textarea
  140. placeholder="请填写备注信息..."
  141. v-model="refundInfo.mer_mark"
  142. ></textarea>
  143. </view>
  144. <view class="modify" @click="save">
  145. 确认提交
  146. </view>
  147. </view>
  148. <view class="mask" @touchmove.prevent v-show="refundMark === true"></view>
  149. </view>
  150. </view>
  151. </template>
  152. <script>
  153. // +----------------------------------------------------------------------
  154. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  155. // +----------------------------------------------------------------------
  156. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  157. // +----------------------------------------------------------------------
  158. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  159. // +----------------------------------------------------------------------
  160. // | Author: CRMEB Team <admin@crmeb.com>
  161. // +----------------------------------------------------------------------
  162. import {
  163. getOrderList,
  164. getRefundOrderList,
  165. setAdminOrderPrice,
  166. setAdminOrderRemark,
  167. setOfflinePay,
  168. setOrderRefund,
  169. refundOrderReceive,
  170. setRefundMark
  171. } from "@/api/admin";
  172. import Loading from '@/components/Loading/index'
  173. import PriceChange from '@/components/PriceChange/index'
  174. import { isMoney } from '@/utils/validate.js'
  175. export default {
  176. name: "AdminOrderList",
  177. components: {
  178. Loading,
  179. PriceChange
  180. },
  181. data() {
  182. return {
  183. current: "",
  184. change: false,
  185. refundMark: false,
  186. types: 1,
  187. where: {
  188. page: 1,
  189. limit: 10,
  190. status: 1
  191. },
  192. list: [],
  193. loaded: false,
  194. loading: false,
  195. refundInfo: {},
  196. orderInfo: {},
  197. status: "",
  198. merId: ''
  199. };
  200. },
  201. watch: {
  202. "$route.params.types": function(newVal) {
  203. let that = this;
  204. if (newVal != undefined) {
  205. that.where.status = newVal;
  206. that.init();
  207. }
  208. },
  209. types: function() {
  210. this.getIndex();
  211. }
  212. },
  213. onLoad(option) {
  214. this.where.status = option.types
  215. this.current = "";
  216. this.merId = option.merId;
  217. this.getIndex();
  218. },
  219. methods: {
  220. // 获取数据
  221. getIndex() {
  222. let that = this;
  223. if (that.loading || that.loaded) return;
  224. that.loading = true;
  225. if(that.where.status == 6){
  226. getRefundOrderList(that.where, that.merId).then(
  227. res => {
  228. that.loading = false;
  229. that.loaded = res.data.list.length < that.where.limit;
  230. that.list.push.apply(that.list, res.data.list);
  231. that.where.page = that.where.page + 1;
  232. },
  233. err => {
  234. that.$util.Tips({title: err});
  235. }
  236. );
  237. }else{
  238. getOrderList(that.where, that.merId).then(
  239. res => {
  240. that.loading = false;
  241. that.loaded = res.data.list.length < that.where.limit;
  242. that.list.push.apply(that.list, res.data.list);
  243. that.where.page = that.where.page + 1;
  244. },
  245. err => {
  246. that.$util.Tips({title: err});
  247. }
  248. );
  249. }
  250. },
  251. // 初始化
  252. init: function() {
  253. this.list = [];
  254. this.where.page = 1;
  255. this.loaded = false;
  256. this.loading = false;
  257. this.getIndex();
  258. this.current = "";
  259. },
  260. // 导航切换
  261. changeStatus(val) {
  262. if (this.where.status != val) {
  263. this.where.status = val;
  264. this.init();
  265. }
  266. },
  267. // 商品操作
  268. modify: function(item, status) {
  269. let temp = status.toString()
  270. this.change = true;
  271. this.orderInfo = item;
  272. this.status = temp;
  273. },
  274. refundModify(item){
  275. this.refundInfo = item;
  276. this.refundMark = true;
  277. },
  278. // 退款单备注
  279. save(item) {
  280. let that = this;
  281. if (!that.refundInfo.mer_mark) {
  282. return this.$util.Tips({
  283. title: '请输入备注'
  284. })
  285. }
  286. setRefundMark(that.merId,that.refundInfo.refund_order_id,{ mer_mark: that.refundInfo.mer_mark }).then(
  287. res => {
  288. that.refundMark = false;
  289. this.$util.Tips({
  290. title: res.message,
  291. icon: 'success'
  292. })
  293. },
  294. err => {
  295. that.refundMark = false;
  296. that.$util.Tips({
  297. title: err
  298. });
  299. }
  300. );
  301. },
  302. changeclose: function(msg) {
  303. this.change = msg;
  304. },
  305. // 确认收货
  306. confirmOrder: function(item) {
  307. let that = this;
  308. uni.showModal({
  309. title: '确认收货',
  310. content: '为保障权益,请收到货确认无误后,再确认收货',
  311. success: function(res) {
  312. if (res.confirm) {
  313. refundOrderReceive(that.merId,item.refund_order_id).then(res => {
  314. return that.$util.Tips({
  315. title: '操作成功',
  316. icon: 'success'
  317. }, function() {
  318. item.status = 3;
  319. });
  320. }).catch(err => {
  321. return that.$util.Tips({
  322. title: err
  323. });
  324. })
  325. }
  326. }
  327. })
  328. },
  329. toPostage(item){
  330. let that = this;
  331. if(item.refunding != 0){
  332. uni.showModal({
  333. title: '标题',
  334. content: '该订单有售后申请,请确认已处理!',
  335. success: function(res) {
  336. if (res.confirm) {
  337. uni.navigateTo({
  338. url:`/pages/admin/delivery/index?id=${item.order_id}&merId=${that.merId}`
  339. })
  340. }
  341. }
  342. })
  343. }else{
  344. uni.navigateTo({
  345. url:`/pages/admin/delivery/index?id=${item.order_id}&merId=${that.merId}`
  346. })
  347. }
  348. },
  349. async savePrice(opt) {
  350. let that = this,
  351. data = {},
  352. price = opt.orderInfo.pay_postage,
  353. refund_price = opt.refund_price,
  354. refund_status = that.orderInfo.refund_status,
  355. remark = opt.remark;
  356. let parmas = {
  357. pay_postage: opt.orderInfo.pay_postage,
  358. coupon_price: opt.orderInfo.coupon_price,
  359. total_price: Number(opt.orderInfo.total_price)
  360. }
  361. let id = that.orderInfo.order_id;
  362. if (that.status == 0) {
  363. if(!isMoney(opt.orderInfo.pay_postage || opt.orderInfo.total_price)){
  364. return that.$util.Tips({title: '请输入正确的金额'});
  365. }
  366. data.pay_price = price;
  367. setAdminOrderPrice(this.merId,id,parmas).then(
  368. function() {
  369. that.change = false;
  370. that.$util.Tips({
  371. title:'改价成功',
  372. icon:'success'
  373. })
  374. that.init();
  375. },
  376. function(res) {
  377. that.change = false;
  378. that.$util.Tips({
  379. title:res,
  380. icon:'none'
  381. })
  382. }
  383. );
  384. } else {
  385. if(!remark){
  386. return this.$util.Tips({
  387. title:'请输入备注'
  388. })
  389. }
  390. setAdminOrderRemark(this.merId,id, {remark: remark}).then(
  391. res => {
  392. that.change = false;
  393. this.$util.Tips({
  394. title:res.message,
  395. icon:'success'
  396. })
  397. that.init();
  398. },
  399. err => {
  400. that.change = false;
  401. that.$util.Tips({title: err});
  402. }
  403. );
  404. }
  405. },
  406. toDetail(item){
  407. uni.navigateTo({
  408. url:`/pages/admin/orderDetail/index?id=${item.order_id}&mer_id=${item.mer_id}`
  409. })
  410. },
  411. toRefundDetail(item){
  412. uni.navigateTo({
  413. url:`/pages/admin/refundDetail/index?id=${item.refund_order_id}&mer_id=${item.mer_id}`
  414. })
  415. }
  416. },
  417. onReachBottom() {
  418. this.getIndex()
  419. }
  420. }
  421. </script>
  422. <style lang="scss">
  423. .pos-order-list .nav {
  424. width: 100%;
  425. height: 96upx;
  426. background-color: #fff;
  427. font-size: 30upx;
  428. color: #282828;
  429. position: fixed;
  430. top: 0;
  431. left: 0;
  432. z-index: 9999;
  433. }
  434. .pos-order-list .nav .item.on {
  435. color: #2291f8;
  436. }
  437. .pos-order-list .list {
  438. margin-top: 120upx;
  439. }
  440. .pos-order-list .list .item {
  441. background-color: #fff;
  442. width: 100%;
  443. position: relative;
  444. }
  445. .pos-order-list .list .item .item-status{
  446. position: absolute;
  447. top: 14rpx;
  448. right: 20rpx;
  449. .iconfont{
  450. font-size: 98rpx;
  451. color: #CCCCCC;
  452. &.on{
  453. color: #FFE3BC;
  454. }
  455. }
  456. }
  457. .pos-order-list .list .item~.item {
  458. margin-top: 24upx;
  459. }
  460. .pos-order-list .list .activity_type {
  461. display: inline-block;
  462. color: #E93323;
  463. font-size: 20rpx;
  464. text-align: center;
  465. border-radius: 5rpx;
  466. padding: 0 4rpx;
  467. line-height: 28rpx;
  468. margin-right: 8rpx;
  469. border: 1rpx solid #E93323;
  470. }
  471. .pos-order-list .list .item .order-num {
  472. height: 124upx;
  473. border-bottom: 1px solid #eee;
  474. font-size: 30upx;
  475. font-weight: bold;
  476. color: #282828;
  477. padding: 0 30upx;
  478. position: relative;
  479. }
  480. .pos-order-list .list .item .order-status{
  481. color: #2291F8;
  482. position: absolute;
  483. top: 24rpx;
  484. right: 20rpx;
  485. text-align: right;
  486. width: 160rpx;
  487. font-weight: normal;
  488. font-size: 26rpx;
  489. }
  490. .pos-order-list .list .item .order-num .time {
  491. font-size: 26upx;
  492. font-weight: normal;
  493. color: #999;
  494. margin-top: -40upx;
  495. }
  496. .pos-order-list .list .item .operation {
  497. padding: 20upx 30upx 20upx 0;
  498. margin: 30upx 0 0 30upx;
  499. border-top: 1rpx solid #EEEEEE;
  500. }
  501. .pos-order-list .list .item .operation .more {
  502. position: relative;
  503. }
  504. .pos-order-list .list .item .operation .icon-gengduo {
  505. font-size: 50upx;
  506. color: #aaa;
  507. }
  508. .pos-order-list .list .item .operation .order .arrow {
  509. width: 0;
  510. height: 0;
  511. border-left: 11upx solid transparent;
  512. border-right: 11upx solid transparent;
  513. border-top: 20upx solid #e5e5e5;
  514. position: absolute;
  515. left: 15upx;
  516. bottom: -18upx;
  517. }
  518. .pos-order-list .list .item .operation .order .arrow:before {
  519. content: '';
  520. width: 0;
  521. height: 0;
  522. border-left: 7upx solid transparent;
  523. border-right: 7upx solid transparent;
  524. border-top: 20upx solid #fff;
  525. position: absolute;
  526. left: -7upx;
  527. bottom: 0;
  528. }
  529. .pos-order-list .list .item .operation .order {
  530. width: 200upx;
  531. background-color: #fff;
  532. border: 1px solid #eee;
  533. border-radius: 10upx;
  534. position: absolute;
  535. top: -100upx;
  536. z-index: 9;
  537. }
  538. .pos-order-list .list .item .operation .order .items {
  539. height: 77upx;
  540. line-height: 77upx;
  541. text-align: center;
  542. }
  543. .pos-order-list .list .item .operation .order .items~.items {
  544. border-top: 1px solid #f5f5f5;
  545. }
  546. .pos-order-list .list .item .operation .bnt {
  547. font-size: 28upx;
  548. color: #5c5c5c;
  549. width: 170upx;
  550. height: 60upx;
  551. border-radius: 30upx;
  552. border: 1px solid #bbb;
  553. text-align: center;
  554. line-height: 60upx;
  555. }
  556. .pos-order-list .list .item .operation .bnt_color{
  557. border: none;
  558. color: #fff;
  559. background: linear-gradient(90deg, #2291F8 0%, #1CD1DC 100%);
  560. }
  561. .pos-order-list .list .item .operation .bnt~.bnt {
  562. margin-left: 14upx;
  563. }
  564. .pos-order-goods {
  565. padding: 0 30upx;
  566. background-color: #fff;
  567. }
  568. .pos-order-goods .goods {
  569. height: 185upx;
  570. }
  571. .pos-order-goods .goods~.goods {
  572. border-top: 1px dashed #e5e5e5;
  573. }
  574. .pos-order-goods .goods .picTxt {
  575. width: 515upx;
  576. }
  577. .pos-order-goods .goods .picTxt .pictrue {
  578. width: 130upx;
  579. height: 130upx;
  580. }
  581. .pos-order-goods .goods .picTxt .pictrue image {
  582. width: 100%;
  583. height: 100%;
  584. border-radius: 6upx;
  585. }
  586. .pos-order-goods .goods .picTxt .text {
  587. flex-direction: column;
  588. width: 365upx;
  589. }
  590. .pos-order-goods .goods .picTxt .text .info {
  591. font-size: 28upx;
  592. color: #282828;
  593. &.refund-info{
  594. width: 460upx;
  595. }
  596. }
  597. .refund-y-money{
  598. margin-top: 16rpx;
  599. font-size: 26rpx;
  600. }
  601. .pos-order-goods .goods .picTxt .text .attr {
  602. margin-top: 5rpx;
  603. font-size: 24upx;
  604. color: #999;
  605. }
  606. .pos-order-goods .goods .money {
  607. width: 164upx;
  608. text-align: right;
  609. font-size: 28upx;
  610. &.refund-money{
  611. width: auto;
  612. position: relative;
  613. top: -50rpx;
  614. .num{
  615. color: #999999;
  616. }
  617. }
  618. .refund-num{
  619. font-size: 24rpx;
  620. color: #282828;
  621. }
  622. }
  623. .pos-order-goods .goods .money .x-money {
  624. color: #282828;
  625. }
  626. .pos-order-goods .goods .money .num {
  627. color: #ff9600;
  628. margin: 5upx 0;
  629. }
  630. .pos-order-goods .goods .money .y-money {
  631. color: #999;
  632. text-decoration: line-through;
  633. }
  634. .pos-order-goods .goods .refund_num{
  635. display: inline-block;
  636. margin-left: 10rpx;
  637. }
  638. .public-total {
  639. font-size: 28upx;
  640. color: #282828;
  641. height: 92upx;
  642. line-height: 92upx;
  643. text-align: right;
  644. padding: 0 30upx;
  645. background-color: #fff;
  646. }
  647. .public-total .money {
  648. color: #ff4c3c;
  649. }
  650. .nothing {
  651. margin-top: 200rpx;
  652. text-align: center;
  653. }
  654. .nothing_text{
  655. margin-top: 20rpx;
  656. color: #999999;
  657. }
  658. .priceChange{position:fixed;width:580upx;background-color:#fff;border-radius:10upx;top:50%;left:50%;margin-left:-290upx;margin-top:-335upx;z-index:666;transition:all 0.3s ease-in-out 0s;transform: scale(0);opacity:0;}
  659. .priceChange.on{opacity:1;transform: scale(1);}
  660. .priceChange .priceTitle{background:url("~@/static/images/pricetitle.jpg") no-repeat;background-size:100% 100%;width:100%;height:160upx;border-radius:10upx 10upx 0 0;text-align:center;font-size:40upx;color:#fff;line-height:160upx;position:relative;}
  661. .priceChange .priceTitle .iconfont{position:absolute;font-size:40upx;right:26upx;top:23upx;width:40upx;height:40upx;line-height:40upx;}
  662. .priceChange .listChange{padding:0 40upx;}
  663. .priceChange .listChange textarea{box-sizing: border-box;}
  664. .priceChange .listChange .item{height:103upx;border-bottom:1px solid #e3e3e3;font-size:32upx;color:#333;}
  665. .priceChange .modify{font-size:32upx;color:#fff;width:490upx;height:90upx;text-align:center;line-height:90upx;border-radius:45upx;background-color:#2291f8;margin:53upx auto;}
  666. .priceChange .listChange textarea {
  667. border: 1px solid #eee;
  668. width: 100%;
  669. height: 200upx;
  670. margin-top: 50upx;
  671. border-radius: 10upx;
  672. color: #333;
  673. padding: 20upx;
  674. }
  675. </style>