index.vue 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079
  1. <template>
  2. <view :style="{ height: pageHeight,colorStyle }">
  3. <view class="top custom_box" style="background: linear-gradient(180deg, rgb(254,245,246), rgb(245,245,245)); color: black;" >
  4. <!-- #ifdef MP || APP-PLUS -->
  5. <view class="sys-head">
  6. <view class="sys-bar" :style="{ height: sysHeight }"></view>
  7. <!-- #ifdef MP -->
  8. <view class="sys-title">订单列表</view>
  9. <!-- #endif -->
  10. </view>
  11. <!-- #endif -->
  12. </view>
  13. <view class="my-order" :style="{ top: sysHeightTop}">
  14. <view class="header-group" style="padding-left: 20rpx;" >
  15. <view class="tabs">
  16. <u-tabs :is-scroll="true" :list="navigationList" @change="statusClick()" lineColor="#B22338"
  17. :inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
  18. keyName="title" :current="current"></u-tabs>
  19. </view>
  20. </view>
  21. <view v-for="(item, index) in orderList" :key="index">
  22. <view class="list" >
  23. <view class="myclient_list" @click="goOrderDetails(item.orderId)">
  24. <view class="myclient_list_name">
  25. <view class="nl ">
  26. {{item.mainTitle}}
  27. </view>
  28. <view v-if="item.orderState == 4" class="success_status">{{item.orderStateDesc}}</view>
  29. <view v-else-if="item.orderState == 8" class="after_sales_status">{{item.orderStateDesc}}</view>
  30. <view v-else class="status">{{item.orderStateDesc}}</view>
  31. </view>
  32. <!-- <view class="grouponTitle ">-->
  33. <!-- <text class="subTitle ">{{ item.subTitle}} </text>-->
  34. <!-- </view>-->
  35. <view class="myclient_list_content">
  36. <view class="phone">
  37. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  38. <text>
  39. 团购日期: {{item.grouponStartTime}} 至 {{item.grouponEndTime}}
  40. </text>
  41. </view>
  42. <view class="phone">
  43. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  44. <text>
  45. 提货日期: {{item.takeStartTime}} 至 {{item.takeEndTime}}
  46. </text>
  47. </view>
  48. <view class="time">
  49. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
  50. <text>
  51. 订单编号: {{item.orderNo}}
  52. </text>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="all-products-body" v-for="(goods, index2) in item.goodsList" :key="index2">
  57. <view class="all-products-item" @click="addGoodPopupShow = true">
  58. <image
  59. :src="goods.goodsImage"
  60. mode="scaleToFill" />
  61. <view class="all-products-item-content">
  62. <view class="all-products-item-content-t">
  63. {{goods.goodsName}}
  64. </view>
  65. <view class="all-products-item-content-b">
  66. <view style="display:flex;">
  67. <text class="red"> ¥{{goods.goodsPrice}}</text>
  68. </view>
  69. <view>
  70. <view class="count"> x {{goods.goodsNum}}</view>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="self-pickup-point">
  77. <view class="a-t">
  78. 最近的自提网点:
  79. </view>
  80. <view class="a-m">
  81. <view class="am1">
  82. <view class="am1-1">
  83. {{item.selfTakeName}}
  84. </view>
  85. <view class="am1-2" @click="openmap(item)">
  86. <image src="http://www.gzzzyd.com/groupon/order_details/导航图标@2x.png" mode="scaleToFill" />
  87. </view>
  88. </view>
  89. </view>
  90. <vie class="white_line"></vie>
  91. <view class="a-b">
  92. <view class="a-b1">
  93. 对接团长:
  94. <text class="red">
  95. &nbsp;&nbsp;{{item.commander}}
  96. </text>
  97. </view>
  98. <view class="a-b2">
  99. <image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" @click="openPopup(item.qrCode)"></image>
  100. <image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" @click="callPhone(item.phone)"></image>
  101. </view>
  102. </view>
  103. </view>
  104. <view class="op-area">
  105. <button v-if="item.orderState == 1" class="action-btn" @click="cancelOrder(item.orderId)">取消订单</button>
  106. <button v-if="item.orderState == 1" class="action-btn" @click="goPay(item)">立即付款</button>
  107. <button v-if="item.orderState == 4" class="info-btn" @click="salesReturn(item)">申请退货</button>
  108. <button v-if="item.canRefund" class="info-btn" @click="refundOrder(item.orderId)">申请退款</button>
  109. <button v-if="item.orderState == 2" class="action-btn" @click="viewPickCode(item.pickupCode)">取货码 {{item.pickupCode}}</button>
  110. </view>
  111. </view>
  112. </view>
  113. <view class="loadingicon acea-row row-center-wrapper" v-if="orderList.length > 0">
  114. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  115. {{ loadTitle }}
  116. </view>
  117. <view v-if="orderList.length == 0">
  118. <emptyPage v-if="!loading" :title="$t(`暂无订单`)"></emptyPage>
  119. <view class="loadingicon acea-row row-center-wrapper">
  120. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  121. </view>
  122. </view>
  123. </view>
  124. <!-- #ifndef MP -->
  125. <home></home>
  126. <!-- #endif -->
  127. <payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
  128. :totalPrice="totalPrice"></payment>
  129. <uni-popup ref="popup" type="center">
  130. <view class="block_3">
  131. <image @click="closePopup"
  132. class="icon_1"
  133. referrerpolicy="no-referrer"
  134. src="/static/images/X.png"
  135. />
  136. <image
  137. class="image_3"
  138. referrerpolicy="no-referrer"
  139. :src="qrCode"
  140. show-menu-by-longpress="true"
  141. />
  142. <text class="text_23">长按图片识别&nbsp;“加团长微信”</text>
  143. </view>
  144. </uni-popup>
  145. <u-popup :show="pickupCodeShow" mode="center" @close="pickupCodeShow = false">
  146. <view>
  147. <!-- <text>-->
  148. <uqrcode ref="uqrcode" canvas-id="qrcode" :value="pickupCode" :options="{ margin: 10 }"></uqrcode>
  149. <!-- </text>-->
  150. </view>
  151. </u-popup>
  152. </view>
  153. </template>
  154. <script>
  155. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  156. let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
  157. const app = getApp();
  158. import {
  159. getUserOrderPage,
  160. orderCancel,
  161. postUserOrderRefund
  162. } from '@/api/home.js';
  163. import {
  164. getOrderList,
  165. orderData,
  166. orderDel,
  167. orderPay
  168. } from '@/api/order.js';
  169. import {
  170. getUserInfo
  171. } from '@/api/user.js';
  172. import {
  173. openOrderSubscribe
  174. } from '@/utils/SubscribeMessage.js';
  175. import home from '@/components/home';
  176. import payment from '@/components/payment';
  177. import {
  178. toLogin
  179. } from '@/libs/login.js';
  180. import {
  181. mapGetters
  182. } from 'vuex';
  183. // #ifdef MP
  184. import authorize from '@/components/Authorize';
  185. // #endif
  186. import emptyPage from '@/components/emptyPage.vue';
  187. import colors from '@/mixins/color.js';
  188. export default {
  189. components: {
  190. payment,
  191. home,
  192. emptyPage,
  193. // #ifdef MP
  194. authorize
  195. // #endif
  196. },
  197. mixins: [colors],
  198. data () {
  199. return {
  200. pickupCodeShow: false,
  201. pickupCode: '',
  202. qrCode:'',
  203. navigationList: [{
  204. title: '全部',
  205. id: 0,
  206. orderStatus: 0,
  207. }
  208. ,
  209. {
  210. title: '待付款',
  211. id: 1,
  212. orderStatus: 1,
  213. },
  214. {
  215. title: '待提货',
  216. id: 2,
  217. orderStatus: 2,
  218. },
  219. {
  220. title: '已完成',
  221. id: 3,
  222. orderStatus: 4,
  223. },
  224. {
  225. title: '售后',
  226. id: 4,
  227. orderStatus: 8,
  228. },
  229. ],
  230. pageHeight: app.globalData.windowHeight,
  231. sysHeight: sysHeight,
  232. sysHeightTop: sysHeightTop,
  233. loading: false, //是否加载中
  234. loadend: false, //是否加载完毕
  235. loadTitle: this.$t(`加载更多`), //提示语
  236. orderList: [], //订单数组
  237. orderData: {}, //订单详细统计
  238. orderStatus: 0, //订单状态
  239. page: 1,
  240. limit: 5,
  241. payMode: [{
  242. name: this.$t(`微信支付`),
  243. icon: 'icon-weixinzhifu',
  244. value: 'weixin',
  245. title: this.$t(`使用微信快捷支付`),
  246. payStatus: true
  247. },
  248. // {
  249. // name: this.$t(`支付宝支付`),
  250. // icon: 'icon-zhifubao',
  251. // value: 'alipay',
  252. // title: this.$t(`使用支付宝支付`),
  253. // payStatus: true
  254. // },
  255. // {
  256. // name: this.$t(`余额支付`),
  257. // icon: 'icon-yuezhifu',
  258. // value: 'yue',
  259. // title: this.$t(`可用余额`),
  260. // number: 0,
  261. // payStatus: true
  262. // }, {
  263. // "name": this.$t(`好友代付`),
  264. // "icon": "icon-haoyoudaizhifu",
  265. // value: 'friend',
  266. // title: this.$t(`找微信好友支付`),
  267. // payStatus: 1,
  268. // }
  269. ],
  270. pay_close: false,
  271. pay_order_id: '',
  272. pay_orderId: '',
  273. totalPrice: '0',
  274. isAuto: false, //没有授权的不会自动授权
  275. isShowAuth: false ,//是否隐藏授权
  276. current: 0
  277. };
  278. },
  279. computed: mapGetters(['isLogin']),
  280. onShow () {
  281. let allPages = getCurrentPages(); //获取当前页面栈的实例;
  282. console.log("allPages->", allPages);
  283. let lastPages = allPages.length - 1; // 获得倒数第二个元素的索引;
  284. console.log("lastPages->", lastPages);
  285. let option = allPages[lastPages].options; // 获得上个页面传递的参数;
  286. console.log("option->", option);
  287. console.log("onShow事件,全局变量1--------", getApp().globalData.switchId, this.$route)
  288. let ContentIndex = getApp().globalData.switchId//获取到传参
  289. if(ContentIndex == '待付款') {
  290. this.current = 1;
  291. this.orderStatus = 1;
  292. } else if (ContentIndex == '待提货') {
  293. this.current = 2;
  294. this.orderStatus = 2;
  295. } else if (ContentIndex == '已完成') {
  296. this.current = 3;
  297. this.orderStatus = 4;
  298. } else if (ContentIndex == '全部') {
  299. this.current = 0;
  300. this.orderStatus = 0;
  301. }
  302. if (this.isLogin) {
  303. this.page = 1;
  304. this.orderList = []
  305. this.loadend = false;
  306. // this.onLoadFun();
  307. this.getOrderList();
  308. } else {
  309. toLogin();
  310. }
  311. },
  312. methods: {
  313. salesReturn(item){
  314. uni.navigateTo({
  315. url:'/pages/order/orderAfterSales/orderAfterSales?item='+encodeURIComponent(JSON.stringify(item))
  316. })
  317. },
  318. openmap(selfTake) {
  319. uni.openLocation({
  320. latitude: selfTake.latitude,
  321. longitude: selfTake.longitude,
  322. address: selfTake.address,
  323. success: function () {
  324. console.log('success');
  325. }
  326. });
  327. },
  328. closePopup(){
  329. this.$refs.popup.close()
  330. },
  331. openPopup(qrCode){
  332. let that = this;
  333. this.qrCode = qrCode;
  334. if (!this.qrCode) {
  335. return that.$util.Tips({
  336. title: that.$t(`团长未设置微信号`)
  337. });
  338. }
  339. this.$refs.popup.open()
  340. },
  341. callPhone(phone){
  342. uni.makePhoneCall({
  343. phoneNumber: phone
  344. })
  345. },
  346. onLoadFun () {
  347. this.getOrderData();
  348. this.getUserInfo();
  349. },
  350. // 授权关闭
  351. authColse: function (e) {
  352. this.isShowAuth = e;
  353. },
  354. /**
  355. * 事件回调
  356. *
  357. */
  358. onChangeFun: function (e) {
  359. let opt = e;
  360. let action = opt.action || null;
  361. let value = opt.value != undefined ? opt.value : null;
  362. action && this[action] && this[action](value);
  363. },
  364. /**
  365. * 获取用户信息
  366. *
  367. */
  368. getUserInfo: function () {
  369. let that = this;
  370. getUserInfo().then(res => {
  371. that.payMode[2].number = res.data.now_money;
  372. that.$set(that, 'payMode', that.payMode);
  373. });
  374. },
  375. /**
  376. * 关闭支付组件
  377. *
  378. */
  379. payClose: function () {
  380. this.pay_close = false;
  381. },
  382. /**
  383. * 查看取货码
  384. * @param {Object} code
  385. */
  386. viewPickCode(code) {
  387. this.pickupCodeShow = true;
  388. this.pickupCode = code;
  389. },
  390. /**
  391. * 生命周期函数--监听页面加载
  392. */
  393. onLoad: function (options) {
  394. console.log('onLoad事件', options);
  395. if ('params' in options) {
  396. this.obj = JSON.parse(decodeURIComponent(options.params));
  397. }
  398. if (options.status) this.orderStatus = options.status;
  399. },
  400. /**
  401. * 取消订单
  402. *
  403. */
  404. cancelOrder: function (order_id) {
  405. let that = this;
  406. if (!order_id)
  407. return that.$util.Tips({
  408. title: that.$t(`缺少订单号无法取消订单`)
  409. });
  410. uni.showModal({
  411. title: that.$t(`取消订单`),
  412. content: that.$t(`确定取消该订单`),
  413. success: function (res) {
  414. if (res.confirm) {
  415. orderCancel(order_id)
  416. .then(res => {
  417. that.orderList = [];
  418. that.getOrderList()
  419. return that.$util.Tips({
  420. title: res.msg,
  421. icon: 'success'
  422. });
  423. })
  424. .catch(err => {
  425. return that.$util.Tips({
  426. title: err
  427. });
  428. });
  429. } else if (res.cancel) {
  430. return that.$util.Tips({
  431. title: that.$t(`已取消`)
  432. });
  433. }
  434. }
  435. });
  436. },
  437. refundOrder: function (orderId) {
  438. let that = this;
  439. if (!orderId)
  440. return that.$util.Tips({
  441. title: that.$t(`缺少订单号无法申请退款订单`)
  442. });
  443. uni.showModal({
  444. title: that.$t(`申请退款`),
  445. content: that.$t(`确定申请退款该订单`),
  446. success: function (res) {
  447. if (res.confirm) {
  448. postUserOrderRefund({ id: orderId })
  449. .then(res => {
  450. that.orderList = [];
  451. that.getOrderList()
  452. return that.$util.Tips({
  453. title: "申请成功",
  454. icon: 'success'
  455. });
  456. })
  457. .catch(err => {
  458. return that.$util.Tips({
  459. title: err
  460. });
  461. });
  462. } else if (res.cancel) {
  463. return that.$util.Tips({
  464. title: that.$t(`已取消`)
  465. });
  466. }
  467. }
  468. });
  469. },
  470. /**
  471. * 打开支付组件
  472. *
  473. */
  474. goPay: function (item) {
  475. this.$set(this, 'pay_close', true);
  476. this.$set(this, 'pay_order_id', item.orderNo);
  477. this.$set(this, 'pay_orderId', item.orderId);
  478. this.$set(this, 'totalPrice', item.paymentAmount);
  479. },
  480. /**
  481. * 支付成功回调
  482. *
  483. */
  484. pay_complete: function () {
  485. this.loadend = false;
  486. this.page = 1;
  487. this.$set(this, 'orderList', []);
  488. this.pay_close = false;
  489. // uni.navigateTo({
  490. // url: '/pages/goods/order_pay_status/index?order_id=' + this.pay_orderId +
  491. // '&msg=' + this.$t(`支付成功`) + '&type=3&totalPrice=' + this.totalPrice
  492. // })
  493. this.pay_order_id = '';
  494. this.pay_orderId = '';
  495. this.getOrderData();
  496. this.getOrderList();
  497. },
  498. /**
  499. * 支付失败回调
  500. *
  501. */
  502. pay_fail: function () {
  503. this.pay_close = false;
  504. this.pay_order_id = '';
  505. },
  506. /**
  507. * 去订单详情
  508. */
  509. goOrderDetails (orderId) {
  510. uni.navigateTo({
  511. url: '/pages/groupbuying_details/order_details_list/index?orderId=' + orderId
  512. });
  513. },
  514. /**
  515. * 切换类型
  516. */
  517. statusClick: function (status) {
  518. if (status.orderStatus == this.orderStatus) return;
  519. this.orderStatus = status.orderStatus;
  520. this.loadend = false;
  521. this.page = 1;
  522. this.$set(this, 'orderList', []);
  523. this.getOrderList();
  524. },
  525. /**
  526. * 获取订单列表
  527. */
  528. getOrderList: function () {
  529. let that = this;
  530. if (that.loadend) return;
  531. if (that.loading) return;
  532. that.loading = true;
  533. that.loadTitle = that.$t(`加载更多`);
  534. getUserOrderPage({
  535. current: that.page,
  536. size: that.limit,
  537. orderState: this.orderStatus
  538. }).then(res => {
  539. let list = res.data.records || [];
  540. let loadend = list.length < that.limit;
  541. that.orderList = that.$util.SplitArray(list, that.orderList);
  542. that.$set(that, 'orderList', that.orderList);
  543. that.loadend = loadend;
  544. that.loading = false;
  545. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  546. that.page = that.page + 1;
  547. }).catch(err => {
  548. that.loading = false;
  549. that.loadTitle = that.$t(`加载更多`);
  550. });
  551. },
  552. /**
  553. * 删除订单
  554. */
  555. delOrder: function (order_id, index) {
  556. let that = this;
  557. uni.showModal({
  558. title: that.$t(`删除订单`),
  559. content: that.$t(`确定删除该订单`),
  560. success: function (res) {
  561. if (res.confirm) {
  562. orderDel(order_id)
  563. .then(res => {
  564. that.orderList.splice(index, 1);
  565. that.$set(that, 'orderList', that.orderList);
  566. that.$set(that.orderData, 'unpaid_count', that.orderData
  567. .unpaid_count - 1);
  568. that.getOrderData();
  569. return that.$util.Tips({
  570. title: that.$t(`删除成功`),
  571. icon: 'success'
  572. });
  573. })
  574. .catch(err => {
  575. return that.$util.Tips({
  576. title: err
  577. });
  578. });
  579. } else if (res.cancel) {
  580. return that.$util.Tips({
  581. title: that.$t(`已取消`)
  582. });
  583. }
  584. }
  585. });
  586. },
  587. },
  588. onReachBottom: function () {
  589. this.getOrderList();
  590. }
  591. };
  592. </script>
  593. <style scoped lang="scss">
  594. .my-order {
  595. position: relative;
  596. }
  597. .my-order .header {
  598. height: 220rpx;
  599. padding: 0 30rpx;
  600. }
  601. .my-order .header .picTxt {
  602. height: 160rpx;
  603. }
  604. .my-order .header .picTxt .text {
  605. color: rgba(255, 255, 255, 0.8);
  606. font-size: 26rpx;
  607. font-family: 'Guildford Pro';
  608. }
  609. .my-order .header .picTxt .text .name {
  610. font-size: 34rpx;
  611. font-weight: bold;
  612. color: #fff;
  613. margin-bottom: 20rpx;
  614. }
  615. .my-order .header .picTxt .pictrue {
  616. width: 122rpx;
  617. height: 109rpx;
  618. }
  619. .my-order .header .picTxt .pictrue image {
  620. width: 100%;
  621. height: 100%;
  622. }
  623. .my-order .nav {
  624. background-color: #F9F9F9;
  625. width: 100%;
  626. // height: 140rpx;
  627. }
  628. .my-order .nav .item {
  629. text-align: center;
  630. font-size: 26rpx;
  631. color: #282828;
  632. padding: 27rpx 0;
  633. border-bottom: 5rpx solid transparent;
  634. }
  635. .my-order .nav .item.on {
  636. /* #ifdef H5 || MP */
  637. font-weight: bold;
  638. /* #endif */
  639. /* #ifdef APP-PLUS */
  640. color: #000;
  641. /* #endif */
  642. border-color: var(--view-theme);
  643. }
  644. .my-order .nav .item .num {
  645. margin-top: 18rpx;
  646. }
  647. .list {
  648. width: 100%;
  649. background: white;
  650. margin: 14rpx auto 0 auto;
  651. }
  652. .noCart {
  653. margin-top: 171rpx;
  654. padding-top: 0.1rpx;
  655. }
  656. .noCart .pictrue {
  657. width: 414rpx;
  658. height: 336rpx;
  659. margin: 78rpx auto 56rpx auto;
  660. }
  661. .noCart .pictrue image {
  662. width: 100%;
  663. height: 100%;
  664. }
  665. .my-order .list .item .item-info .text .money .return {
  666. // color: var(--view-priceColor);
  667. margin-top: 10rpx;
  668. font-size: 24rpx;
  669. }
  670. .myclient_list {
  671. padding-left: 30px;
  672. padding-top: 30rpx;
  673. padding-bottom: 30rpx;
  674. margin-top: 30rpx;
  675. background: #FFFFFF;
  676. .myclient_list_name {
  677. display: flex;
  678. justify-content: space-between;
  679. min-height: 44rpx;
  680. font-size: 28rpx;
  681. font-weight: 500;
  682. color: #111111;
  683. line-height: 44rpx;
  684. .nv {
  685. flex-grow: 1;
  686. }
  687. .nl {
  688. width: 550rpx;
  689. font-weight: bold;
  690. display: -webkit-box;
  691. -webkit-box-orient: vertical;
  692. -webkit-line-clamp: 1;
  693. overflow: hidden;
  694. text-overflow: ellipsis;
  695. }
  696. .status {
  697. min-width: 100rpx;
  698. text-align: right;
  699. margin-right: 30rpx;
  700. color: #FEA800;
  701. }
  702. .success_status {
  703. min-width: 100rpx;
  704. text-align: right;
  705. margin-right: 30rpx;
  706. color: #75BE00;
  707. }
  708. .after_sales_status {
  709. min-width: 100rpx;
  710. text-align: right;
  711. margin-right: 30rpx;
  712. color: #666666;
  713. }
  714. }
  715. .myclient_list_content {
  716. image {
  717. width: 28rpx;
  718. height: 28rpx;
  719. margin-top: 9rpx;
  720. margin-right: 10rpx;
  721. }
  722. .phone {
  723. display: flex;
  724. flex-direction: row;
  725. margin-bottom: 15rpx;
  726. height: 44rpx;
  727. font-size: 24rpx;
  728. font-weight: 400;
  729. color: #999999;
  730. line-height: 44rpx;
  731. }
  732. .time {
  733. display: flex;
  734. flex-direction: row;
  735. height: 44rpx;
  736. font-size: 24rpx;
  737. font-weight: 400;
  738. color: #999999;
  739. line-height: 44rpx;
  740. }
  741. }
  742. }
  743. .all-products-body {
  744. background: white;
  745. padding-left: 30px;
  746. .all-products-item {
  747. display: flex;
  748. margin-bottom: 20rpx;
  749. image {
  750. width: 132rpx;
  751. height: 132rpx;
  752. border-radius: 4px;
  753. }
  754. .all-products-item-content {
  755. display: flex;
  756. flex-direction: column;
  757. margin-left: 20rpx;
  758. width: calc(100% - 132rpx);
  759. .all-products-item-content-t {
  760. font-size: 24rpx;
  761. font-weight: 400;
  762. margin-right: 30rpx;
  763. height: 80rpx;
  764. color: #333333;
  765. line-height: 40rpx;
  766. }
  767. .all-products-item-content-b {
  768. font-size: 28rpx;
  769. font-weight: 500;
  770. line-height: 52rpx;
  771. display: flex;
  772. justify-content: space-between;
  773. .red {
  774. display: block;
  775. font-size: 28rpx;
  776. font-weight: bold;
  777. color: #B22338 !important;
  778. margin-right: 10rpx;
  779. }
  780. .line-thr {
  781. display: block;
  782. font-size: 28rpx;
  783. font-weight: 400;
  784. color: #999999;
  785. text-decoration: line-through;
  786. }
  787. .count {
  788. font-size: 24rpx;
  789. font-weight: 400;
  790. color: #999999;
  791. margin-right: 30rpx;
  792. }
  793. }
  794. }
  795. }
  796. }
  797. .a-t {
  798. padding: 0 30rpx;
  799. display: flex;
  800. justify-content: space-between;
  801. height: 44rpx;
  802. margin-bottom: 20rpx;
  803. font-size: 20rpx;
  804. font-weight: 400;
  805. color: #666666;
  806. line-height: 44rpx;
  807. }
  808. .a-m {
  809. padding: 0 30rpx;
  810. .am1 {
  811. display: flex;
  812. justify-content: space-between;
  813. margin-bottom: 20rpx;
  814. .am1-1 {
  815. height: 32rpx;
  816. font-size: 20rpx;
  817. font-weight: bold;
  818. color: #B22338;
  819. line-height: 32rpx;
  820. }
  821. .am1-2 {
  822. height: 36rpx;
  823. font-size: 20rpx;
  824. font-weight: 400;
  825. color: #666666;
  826. line-height: 36rpx;
  827. image {
  828. margin-left: 30rpx;
  829. vertical-align: middle;
  830. height: 34rpx;
  831. width: 34rpx;
  832. }
  833. }
  834. }
  835. .am2 {
  836. margin-bottom: 20rpx;
  837. height: 34rpx;
  838. font-size: 24rpx;
  839. font-weight: 400;
  840. color: #999999;
  841. line-height: 34rpx;
  842. }
  843. }
  844. .a-b {
  845. padding: 0 30rpx;
  846. width: 100%;
  847. background: #FFF7F8;
  848. height: 60rpx;
  849. line-height: 60rpx;
  850. display: flex;
  851. justify-content: space-between;
  852. .a-b1 {
  853. font-size: 20rpx;
  854. font-weight: 400;
  855. color: #666666;
  856. .red {
  857. font-size: 20rpx;
  858. font-weight: bold;
  859. color: #B22338;
  860. }
  861. }
  862. .a-b2 {
  863. image {
  864. vertical-align: middle;
  865. margin-left: 30rpx;
  866. height: 34rpx;
  867. width: 34rpx;
  868. }
  869. }
  870. }
  871. .self-pickup-point {
  872. display: flex;
  873. flex-direction: column;
  874. background: #FFF7F8;
  875. padding-top: 20rpx;
  876. margin: 0 30rpx;
  877. }
  878. .op-area {
  879. /*height: 120rpx;*/
  880. display: flex;
  881. justify-content: flex-end;
  882. line-height: 120rpx;
  883. padding: 20rpx 0;
  884. text-align: right;
  885. .action-btn {
  886. min-width: 200rpx;
  887. background: #FFF7F8;
  888. border-radius: 32rpx;
  889. border: 2rpx solid #B22338;
  890. margin-right: 30rpx;
  891. height: 64rpx;
  892. font-size: 24rpx;
  893. font-weight: 400;
  894. color: #B22338;
  895. line-height: 64rpx;
  896. }
  897. .info-btn {
  898. width: 200rpx;
  899. background: #F5F5F5;
  900. border-radius: 32rpx;
  901. margin-right: 30rpx;
  902. height: 64rpx;
  903. font-size: 24rpx;
  904. font-weight: 400;
  905. color: #666666;
  906. line-height: 64rpx;
  907. }
  908. }
  909. .sys-head {
  910. position: relative;
  911. width: 100%;
  912. // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
  913. .bg {
  914. position: absolute;
  915. left: 0;
  916. top: 0;
  917. width: 100%;
  918. height: 100%;
  919. background: var(--view-theme);
  920. background-size: 100% auto;
  921. background-position: left bottom;
  922. }
  923. .sys-title {
  924. font-family: STYuanti-SC-Regular, STYuanti-SC;
  925. z-index: 10;
  926. position: relative;
  927. height: 43px;
  928. text-align: left;
  929. line-height: 43px;
  930. font-size: 36rpx;
  931. color: rgba(17, 17, 17, 1);
  932. /*font-weight: bolder;*/
  933. font-weight: 400;
  934. padding-left: 36rpx;
  935. color: #333333;
  936. }
  937. }
  938. .block_3 {
  939. background-color: rgba(255, 255, 255, 1);
  940. border-radius: 4px;
  941. padding: 16rpx 16rpx 32rpx 24rpx;
  942. display: flex;
  943. flex-direction: column;
  944. }
  945. .icon_1 {
  946. width: 32rpx;
  947. height: 32rpx;
  948. margin-left: 566rpx;
  949. }
  950. .image_3 {
  951. width: 590rpx;
  952. height: 766rpx;
  953. margin: 16rpx 8rpx 0 0;
  954. }
  955. .text_23 {
  956. overflow-wrap: break-word;
  957. color: rgba(51, 51, 51, 1);
  958. font-size: 28rpx;
  959. font-weight: NaN;
  960. text-align: center;
  961. white-space: nowrap;
  962. line-height: 40rpx;
  963. margin: 24rpx 128rpx 0 122rpx;
  964. }
  965. .white_line{
  966. width: 90%;
  967. height: 2rpx;
  968. margin-left: 5%;
  969. background-color: white;
  970. }
  971. .bord{
  972. border: 1px solid red;
  973. }
  974. .grouponTitle{
  975. display: flex;
  976. flex-direction: column;
  977. height: 44rpx;
  978. }
  979. .subTitle{
  980. font-size: 28rpx;
  981. color: #666666;
  982. font-weight: 400;
  983. line-height: 44rpx;
  984. display: -webkit-box;
  985. -webkit-box-orient: vertical;
  986. -webkit-line-clamp: 1;
  987. overflow: hidden;
  988. text-overflow: ellipsis;
  989. }
  990. </style>