order.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. <template>
  2. <view class="pages">
  3. <u-navbar
  4. title="我的订单"
  5. :placeholder="true"
  6. :autoBack="false"
  7. @leftClick="leftClick"
  8. :safeAreaInsetTop="true"
  9. >
  10. </u-navbar>
  11. <view class="tabs-wrap">
  12. <u-tabs
  13. :list="tabsList"
  14. lineColor="#EE0D0D"
  15. :current="tabsCurrent"
  16. :activeStyle="{color:'#EE0D0D','font-weight': '600','font-size':'30rpx'}"
  17. :inactiveStyle="{color:'#7F7F7F'}"
  18. itemStyle="width:18%;box-sizing:border-box;padding:20rpx 15rpx"
  19. @click="tabsClick"></u-tabs>
  20. </view>
  21. <view class="page-wrap">
  22. <mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
  23. <view class="order">
  24. <view v-for="(item) in orderListWithClass" class="order-item"
  25. :class="item.class"
  26. @click="goOrderDetails(item)" :key="item.id">
  27. <view class="top u-flex u-row-between">
  28. <text>{{item.theatreName}}</text>
  29. <text>{{item.status|filterOrderState}}</text>
  30. </view>
  31. <view class="info u-flex u-col-top">
  32. <image class="img" :src="item.performImg"></image>
  33. <view class="text">
  34. <view class="name">{{item.performName}} - {{item.goodsName}}</view>
  35. <view class="time">{{item.performDate}} {{item.performTimeStart}}</view>
  36. <!-- <view class="position">{{item.performDate}}</view> -->
  37. <view class="statistics">
  38. <text>共{{item.viewerNum}}张</text>
  39. <text class="label">合计:</text>
  40. <text class="price">¥{{item.realPrice}}</text>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="btn-wrap u-flex u-row-right">
  45. <view
  46. class="btn"
  47. :class="btn.class"
  48. @click.stop="clickEven(btn.fun, item)"
  49. v-for="(btn, index) in statusBtn[item.status].filter(b => !b.condition || b.condition(item))"
  50. :key="index"
  51. >
  52. {{ btn.name }}
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </mescroll-body>
  58. </view>
  59. <u-toast ref="uToast"></u-toast>
  60. <tabbar :tabbarIndexProps="1" />
  61. </view>
  62. </template>
  63. <script>
  64. import tabbar from "../components/tabbar.vue";
  65. // 引入mescroll-mixins.js
  66. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  67. // #ifdef H5
  68. import wxH5 from "weixin-jsapi";
  69. // #endif
  70. export default {
  71. mixins: [MescrollMixin], // 使用mixin
  72. components:{
  73. tabbar
  74. },
  75. data() {
  76. return {
  77. staticUrl:this.$commonConfig.staticUrl,
  78. goodsKey:1,
  79. hasfetch:false,
  80. tabsCurrent:1,
  81. tabsList:[
  82. {name:'全部',status:null,},
  83. {name:'待支付',status:'0',badge:{isDot:false,value:null}},
  84. {name:'待使用',status:'3',badge:{isDot:false,value:null}},
  85. {name:'已完成',status:'7',badge:{isDot:false,value:null}},
  86. {name:'已改签/已升舱',status:'10',badge:{isDot:false,value:null}},
  87. {name:'售后',status:'4,5,6',badge:{isDot:false,value:null}}
  88. ],
  89. status:'',
  90. dataList:[],
  91. statusBtn:{// 状态(0待支付,2超时取消,3支付完成,待使用,4退款中,5己退款,6退款失败,7己使用,8己超期 9关闭)
  92. 0:[{name:'取消订单',fun:'cancelOrder',class:''},{name:'去支付',fun:'pay',class:'red'}],
  93. 1:[],
  94. 2:[],
  95. 3:[
  96. {name:'改签',fun:'rebook',class:'',condition: (item) => item.allowReSubmit === 1},
  97. {name:'升舱',fun:'upgrade',class:'',condition: (item) => item.allowReSubmit === 1},
  98. {name:'查看原订单',fun:'viewOldOrder',class:'',condition: (item) => !!item.orgOrderId},
  99. {name:'出示二维码',fun:'goOrderDetails',class:'red'},
  100. ],
  101. //,{name:'评价',fun:'evaluate',class:'green'}
  102. 4:[],
  103. 5:[],
  104. 6:[],
  105. // ,{name:'查看评价',fun:'viewEvaluate',class:'green'}
  106. 7:[],
  107. 8:[],
  108. 9:[],
  109. 10:[{name:'查看新订单',fun:'viewNewOrder',class:'red'}]
  110. },
  111. orderBadge:{
  112. noPayNum:0,
  113. deliverNum:0,
  114. collectNum:0,
  115. commentNum:0,
  116. refundNum:0,
  117. },
  118. templateIdList:[],//微信小程序订阅消息
  119. }
  120. },
  121. computed: {
  122. orderListWithClass() {
  123. return this.dataList.map(order => {
  124. // let spliceData = order.detailList.splice(0,2);
  125. // let moreData = order.detailList.splice(2,order.detailList.length);
  126. // let moreData = order.detailList.slice(2);
  127. // if(order.detailList.length>2){
  128. // moreData = order.detailList;
  129. // }
  130. return {
  131. ...order,
  132. // spliceData:spliceData,
  133. // moreData:moreData,
  134. // showMore:false,
  135. class: {
  136. 0: 'status-0',
  137. 1: 'status-1',
  138. 2: 'status-2',
  139. 3: 'status-3',
  140. 4: 'status-4',
  141. 5: 'status-5',
  142. 6: 'status-6',
  143. 7: 'status-7',
  144. 8: 'status-8'
  145. }[order.status] || ''
  146. }
  147. })
  148. }
  149. },
  150. onLoad(page) {
  151. // console.log('page',page);
  152. const status = page.status;
  153. const index = this.tabsList.findIndex(item => item.status === status);
  154. this.tabsCurrent = index>=0?index:0;
  155. this.getTemplateIdList();//获取模板列表
  156. },
  157. onShow() {
  158. setTimeout(()=>{
  159. this.hasfetch&&this.reloadList()
  160. },500);
  161. // this.statisticsOrder();
  162. },
  163. methods: {
  164. leftClick(){
  165. uni.reLaunch({url: '/center/center'});
  166. },
  167. /*下拉刷新的回调, 重置列表为第一页 (此处可删,mixins已默认)
  168. downCallback(){
  169. this.mescroll.resetUpScroll();
  170. },
  171. /*上拉加载的回调*/
  172. upCallback(page) {
  173. // this.statisticsOrder();
  174. // 此处可以继续请求其他接口
  175. // if(page.num == 1){
  176. // // 请求其他接口...
  177. // }
  178. // 如果希望先请求其他接口,再触发upCallback,可参考以下写法
  179. // if(!this.hasTypeId){
  180. // this.shopNewsType();
  181. // return // 此处return,先获取xx
  182. // }
  183. let pageNum = page.num; // 页码, 默认从1开始
  184. let pageSize = page.size; // 页长, 默认每页10条
  185. let params = {
  186. source:1,
  187. pageNum : page.num,
  188. pageSize : page.size,
  189. statusIn : this.tabsList[this.tabsCurrent]?.status||'',
  190. userid:this.vuex_member_info.id
  191. // status : this.tabsList[this.tabsCurrent].status,
  192. }
  193. // console.log('this.params',params);
  194. this.$u.api.orderList(params).then(data => {
  195. this.hasfetch = true;
  196. console.log('data',JSON.parse(JSON.stringify(data)));
  197. // 接口返回的当前页数据列表 (数组)
  198. let curPageData = data.data.rows;
  199. // console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
  200. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  201. let curPageLen = curPageData.length;
  202. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  203. // let totalPage = data.data.data.totalPage;
  204. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  205. let totalSize = data.data.total;
  206. // 接口返回的是否有下一页 (true/false)
  207. // let hasNext = data.xxx;
  208. // console.log('totalPage',totalPage,'curPageLen',curPageLen);
  209. //设置列表数据
  210. if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
  211. this.dataList = this.dataList.concat(curPageData); //追加新数据
  212. // 请求成功,隐藏加载状态
  213. //方法一(推荐): 后台接口有返回列表的总页数 totalPage
  214. // this.mescroll.endByPage(curPageLen, totalPage);
  215. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  216. this.mescroll.endBySize(curPageLen, totalSize);
  217. }).catch(err => {
  218. this.mescroll.endErr()
  219. console.log(err)
  220. });
  221. },
  222. /*若希望重新加载列表,只需调用此方法即可(内部会自动page.num=1,再主动触发up.callback)*/
  223. reloadList() {
  224. this.mescroll.resetUpScroll();
  225. },
  226. tabsClick(item){
  227. // this.status = item.status;
  228. this.tabsCurrent = item.index;
  229. this.reloadList()
  230. // console.log('item',item);
  231. },
  232. goOrderDetails(item){
  233. uni.$u.route('/center/orderdetails', {
  234. id: item.id
  235. });
  236. },
  237. toggleMore(item,index){
  238. // console.log('toggleMore',item);
  239. this.orderListWithClass[index].showMore = !this.orderListWithClass[index].showMore
  240. this.goodsKey++;
  241. },
  242. clickEven(fun,item){
  243. // console.log('fun',fun);
  244. let funObj = {
  245. pay: this.pay,
  246. goOrderDetails:this.goOrderDetails,
  247. evaluate:this.evaluate,
  248. refund:this.refund,
  249. cancelOrder:this.cancelOrder,
  250. viewRefund:this.viewRefund,
  251. confirmReceipt:this.confirmReceipt,
  252. viewEvaluate:this.viewEvaluate,
  253. rebook:this.rebook,
  254. upgrade:this.upgrade,
  255. viewNewOrder:this.viewNewOrder,
  256. viewOldOrder:this.viewOldOrder,
  257. };
  258. // console.log('funObj[fun]',funObj[fun]);
  259. if (fun in funObj) {
  260. funObj[fun](item);
  261. }
  262. },
  263. getTemplateIdList(){
  264. this.$u.api.templateIdList({templateLabel:'order_pay'}).then(res=>{
  265. console.log('getTemplateIdList',res.data);
  266. this.templateIdList = res.data.list.map(item=>{
  267. return item.templateId
  268. });
  269. // if(this.templateIdList.length>0){
  270. // this.templateEven();
  271. // }
  272. }).catch(err=>{
  273. console.log('getTemplateIdList',err);
  274. })
  275. },
  276. pay(item){
  277. console.log('pay',item);
  278. // #ifdef H5
  279. this.gotoPay(item.id);
  280. // #endif
  281. // #ifdef MP
  282. this.setTemplate(item.id);
  283. // #endif
  284. // uni.$u.route('/shopping/pay', {
  285. // orderId: item.id,
  286. // // openid: that.vuex_wechatOpenid,
  287. // payAmount:item.orderPrice
  288. // });
  289. },
  290. evaluate(item){
  291. // console.log('logistics',item);
  292. uni.$u.route('/shopping/evaluate', {
  293. id: item.id
  294. });
  295. },
  296. comment(orderId,orderDetailId,goodsId){
  297. uni.$u.route('/shopping/addcomment', {
  298. orderId,
  299. orderDetailId,
  300. goodsId
  301. });
  302. },
  303. viewComment(orderDetailId,goodsId,goods){
  304. uni.$u.route('/shopping/viewcomment', {
  305. orderDetailId,
  306. goodsId,
  307. goods:JSON.stringify(goods)
  308. });
  309. },
  310. refund(item){
  311. // console.log('logistics',item);
  312. uni.$u.route('/shopping/refund', {
  313. id: item.id
  314. });
  315. },
  316. cancelOrder(item){
  317. let that = this;
  318. uni.showModal({
  319. title: '提示',
  320. content: '确认取消吗!',
  321. success: res => {
  322. if (res.confirm) {
  323. this.$u.api.cancelOrder({orderId:item.id}).then(res=>{
  324. this.$refs.uToast.show({
  325. message:res.msg,
  326. complete() {
  327. that.reloadList();
  328. }
  329. });
  330. // uni.$u.toast(res.msg);
  331. console.log('res',res.data);
  332. }).catch(err=>{
  333. console.log('cancelOrder',err);
  334. })
  335. }
  336. }
  337. });
  338. // console.log('logistics',item);
  339. },
  340. viewRefund(item){
  341. uni.$u.route('/center/viewRefund', {
  342. orderId: item.id
  343. });
  344. },
  345. confirmReceipt(item){
  346. let that = this;
  347. uni.showModal({
  348. title: '提示',
  349. content: '确认收货吗!',
  350. success: res => {
  351. if (res.confirm) {
  352. this.$u.api.confirmReceipt({orderId:item.id}).then(res=>{
  353. uni.showToast({
  354. title:res.msg,
  355. duration:2000,
  356. complete() {
  357. that.reloadList();
  358. }
  359. });
  360. console.log('res',res.data);
  361. }).catch(err=>{
  362. console.log('confirmReceipt',err);
  363. })
  364. }
  365. }
  366. })
  367. },
  368. viewEvaluate(item){
  369. uni.$u.route('/shopping/orderdetails', {
  370. id: item.id
  371. });
  372. },
  373. rebook(item){
  374. // console.log('rebook',item);
  375. uni.$u.route('pages/ticketlist',{performId:item.performId,orderId:item.id,fromPage:'rebook'})
  376. },
  377. upgrade(item){
  378. uni.$u.route('pages/ticketlist',{performId:item.performId,orderId:item.id,fromPage:'rebook',isUpgrade:true})
  379. },
  380. viewOldOrder(item){
  381. console.log('viewOldOrder',item.orgOrderId);
  382. uni.$u.route('/center/orderdetails', {
  383. id: item.orgOrderId
  384. });
  385. },
  386. viewNewOrder(item){
  387. console.log('viewNewOrder',item.newOrderId);
  388. uni.$u.route('/center/orderdetails', {
  389. id: item.newOrderId
  390. });
  391. },
  392. // 设置小程序订阅消息
  393. setTemplate(orderId) {
  394. let that = this;
  395. console.log('templateIdList',this.templateIdList);
  396. uni.requestSubscribeMessage({
  397. tmplIds: that.templateIdList,
  398. success (res) {
  399. // that.gotoPay();
  400. console.log("success:",res);
  401. },
  402. fail (res) {
  403. console.log("fail:",res);
  404. },
  405. complete (res) {
  406. that.gotoPay(orderId);
  407. console.log("complete:",res);
  408. }
  409. })
  410. },
  411. gotoPay(orderId){
  412. this.$u.api.gotoPay({orderId:orderId,openid:''}).then(res=>{
  413. this.payResult = res.data.payInfo;
  414. this.payResult.package = res.data.payInfo.packageValue;
  415. // #ifdef H5
  416. this.initConfig(this.payResult)
  417. // #endif
  418. // #ifdef MP
  419. this.wxPay()
  420. // #endif
  421. // if(this.params.paymentMode==1||this.params.paymentMode==4){
  422. // this.wxPay()
  423. // }else{
  424. // uni.$u.route('/shopping/paysuccess');
  425. // }
  426. console.log('gotoPayres',res.data);
  427. }).catch(err=>{
  428. this.paypass = '';
  429. this.checkPassShow = false;
  430. console.log('gotoPay',err);
  431. })
  432. },
  433. wxPay(){
  434. let that = this;
  435. uni.requestPayment({
  436. ... this.payResult,
  437. "provider": "wxpay",
  438. "orderInfo": {
  439. // "appid": "wx499********7c70e", // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
  440. // "noncestr": "c5sEwbaNPiXAF3iv", // 随机字符串
  441. // "package": "Sign=WXPay", // 固定值
  442. // "partnerid": "148*****52", // 微信支付商户号
  443. // "prepayid": "wx202254********************fbe90000", // 统一下单订单号
  444. // "timestamp": 1597935292, // 时间戳(单位:秒)
  445. // "sign": "A842B45937F6EFF60DEC7A2EAA52D5A0" // 签名,这里用的 MD5/RSA 签名
  446. },
  447. success(res) {
  448. setTimeout(()=>{
  449. this.tabsCurrent = 2;
  450. this.reloadList();
  451. },1500)
  452. // that.payQuery();
  453. },
  454. fail(e) {
  455. console.log('wxPayfail',e);
  456. }
  457. })
  458. },
  459. payQuery(){
  460. let that = this;
  461. let retryCount = 0;
  462. let maxRetryCount = 5; // 设置最大重试次数
  463. let interval = 2000; // 设置间隔时间为2秒
  464. let timeout = 10000; // 设置超时时间为10秒
  465. let timer;
  466. uni.showLoading({
  467. title:'支付结果查询中'
  468. })
  469. timer = setInterval(() => {
  470. retryCount++;
  471. if (retryCount > maxRetryCount || retryCount * interval > timeout) {
  472. clearInterval(timer);
  473. uni.hideLoading();
  474. console.log("支付查询超时或达到最大重试次数");
  475. // 在这里添加超时或达到最大重试次数的处理逻辑
  476. this.reloadList()
  477. } else {
  478. console.log("第" + retryCount + "次查询");
  479. // 调用查询支付状态的方法
  480. // 如果支付状态为成功,则清除定时器并处理成功的逻辑
  481. // 如果支付状态为失败,则清除定时器并处理失败的逻辑
  482. this.$u.api.payQuery({orderId:this.orderId}).then(res=>{
  483. // 0-未支付 1-已支付 2-支付中 3-支付失败 4-支付退款
  484. let payStatus = res.data.payStatus;
  485. if(payStatus===1){
  486. uni.$u.route('/center/paysuccess');
  487. }else if(payStatus===0||payStatus===2){
  488. this.payQuery()
  489. }else if(payStatus===3){
  490. uni.toast('支付失败')
  491. }
  492. clearInterval(timer);
  493. }).catch(err=>{
  494. console.log('payQuery',err);
  495. }).finally(()=>{
  496. uni.hideLoading()
  497. })
  498. }
  499. }, interval);
  500. },
  501. statisticsOrder(){
  502. this.$u.api.statisticsOrder().then(res=>{
  503. let data = res.data || {};
  504. this.orderBadge = Object.assign(this.orderBadge,data);
  505. let {noPayNum,deliverNum,collectNum,commentNum,refundNum} = res.data;
  506. let noPayNumindex = this.tabsList.findIndex(item => item.status == 0);
  507. this.tabsList[1].badge.isDot = false;
  508. this.tabsList[1].badge.value = noPayNum;
  509. this.tabsList[2].badge.isDot = false;
  510. this.tabsList[2].badge.value = deliverNum;
  511. this.tabsList[3].badge.isDot = false;
  512. this.tabsList[3].badge.value = collectNum;
  513. this.tabsList[4].badge.isDot = false;
  514. this.tabsList[4].badge.value = commentNum;
  515. this.tabsList[5].badge.isDot = false;
  516. this.tabsList[5].badge.value = refundNum;
  517. // console.log('statisticsOrder',res.data);
  518. // console.log('this.orderBadge',this.orderBadge);
  519. }).catch(err=>{
  520. console.log('memberInfo',err.data);
  521. })
  522. },
  523. /**
  524. * 公众号微信支付
  525. */
  526. initConfig() {
  527. // #ifdef H5
  528. let that = this
  529. wxH5.config({
  530. debug: false, // 这里一般在测试阶段先用ture,等打包给后台的时候就改回false,
  531. appId: that.payResult.appId, // 必填,公众号的唯一标识
  532. timestamp: that.payResult.timeStamp, // 必填,生成签名的时间戳
  533. nonceStr: that.payResult.nonceStr, // 必填,生成签名的随机串
  534. signature: that.payResult.paySign, // 必填,签名
  535. jsApiList: ['chooseWXPay', 'checkJsApi'] // 必填,需要使用的JS接口列表
  536. })
  537. wxH5.ready(() => {
  538. wxH5.chooseWXPay({
  539. timestamp: that.payResult.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  540. nonceStr: that.payResult.nonceStr, // 支付签名随机串,不长于 32 位
  541. package: that.payResult.packageValue, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  542. signType: 'SHA1', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  543. paySign: that.payResult.paySign, // 支付签名
  544. success: () => {
  545. setTimeout(()=>{
  546. that.tabsCurrent = 2;
  547. that.reloadList();
  548. },1500)
  549. // that.payQuery();
  550. },
  551. fail: (e) => {
  552. uni.$u.route('/center/order', {
  553. status: 0
  554. });
  555. console.log('wxPayfail', e);
  556. },
  557. cancel: () => {
  558. uni.$u.route('/center/order', {
  559. status: 0
  560. });
  561. that.cansubmit = true;
  562. }
  563. })
  564. })
  565. // #endif
  566. }
  567. }
  568. }
  569. </script>
  570. <style>
  571. page{
  572. background-color: #F5F5F5;
  573. }
  574. </style>
  575. <style lang="scss" scoped>
  576. .tabs-wrap{
  577. background-color: #fff;
  578. margin-bottom: 10rpx;
  579. }
  580. .list-item{
  581. overflow: hidden;
  582. width: 48%;
  583. margin-bottom: 30rpx;
  584. background-color: #fff;
  585. .image-wrap{
  586. margin-bottom: 20rpx;
  587. }
  588. }
  589. .order-item{
  590. margin-bottom: 20rpx;
  591. background: #FFFFFF;
  592. box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(221,221,221,0.5);
  593. border-radius: 20rpx;
  594. padding: 32rpx;
  595. content-visibility: auto;
  596. contain-intrinsic-size: 346rpx;
  597. .top{
  598. font-size: 24rpx;
  599. font-weight: 400;
  600. color: #7F7F7F;
  601. line-height: 36rpx;
  602. margin-bottom: 36rpx;
  603. }
  604. .info{
  605. margin-bottom: 30rpx;
  606. .img{
  607. width: 180rpx;
  608. height: 160rpx;
  609. border-radius: 12rpx;
  610. }
  611. .text{
  612. font-size: 24rpx;
  613. font-weight: 400;
  614. color: #7F7F7F;
  615. padding-left: 26rpx;
  616. flex: 1;
  617. .name{
  618. font-size: 28rpx;
  619. font-weight: bold;
  620. color: #363636;
  621. margin-bottom: 20rpx;
  622. }
  623. .time{
  624. margin-bottom: 20rpx;
  625. }
  626. .position{
  627. margin-bottom: 20rpx;
  628. }
  629. .statistics{
  630. text-align: right;
  631. }
  632. .label{
  633. font-size: 24rpx;
  634. font-weight: 400;
  635. color: #363636;
  636. margin-left: 10rpx;
  637. }
  638. .price{
  639. font-size: 32rpx;
  640. font-weight: bold;
  641. color: #ED0000;
  642. }
  643. }
  644. }
  645. .btn-wrap{
  646. }
  647. .btn{
  648. padding: 12rpx 40rpx;
  649. border: 1px solid #E5E5E5;
  650. color: #7F7F7F;
  651. text-align: center;
  652. border-radius: 8rpx;
  653. font-size: 24rpx;
  654. &.red{border-color: #ED0000;color: #ED0000;}
  655. &.red.solid{border-color: #ED0000;background-color:#ED0000;color: #fff;}
  656. &.green{color: #00A447;border-color: #00A447;}
  657. &:not(:first-child){
  658. margin-left: 20rpx;
  659. }
  660. }
  661. &.status-0{.status{color:#FF3C3F;}}
  662. &.status-1{.status{color:#FF3C3F;}}
  663. &.status-2{.status{color:#0099EB;}}
  664. &.status-3{.status{color:#00A447;}}
  665. &.status-4{.status{color:#FF3C3F;}}
  666. &.status-5{.status{color:#FF3C3F;}}
  667. &.status-6{.status{color:#FF3C3F;}}
  668. &.status-7{.status{color:#FFB100;}}
  669. }
  670. </style>