index.vue 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070
  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" v-if="item.qrCoded" @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: '',
  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. this.qrCode = qrCode;
  333. this.$refs.popup.open()
  334. },
  335. callPhone(phone){
  336. uni.makePhoneCall({
  337. phoneNumber: phone
  338. })
  339. },
  340. onLoadFun () {
  341. this.getOrderData();
  342. this.getUserInfo();
  343. },
  344. // 授权关闭
  345. authColse: function (e) {
  346. this.isShowAuth = e;
  347. },
  348. /**
  349. * 事件回调
  350. *
  351. */
  352. onChangeFun: function (e) {
  353. let opt = e;
  354. let action = opt.action || null;
  355. let value = opt.value != undefined ? opt.value : null;
  356. action && this[action] && this[action](value);
  357. },
  358. /**
  359. * 获取用户信息
  360. *
  361. */
  362. getUserInfo: function () {
  363. let that = this;
  364. getUserInfo().then(res => {
  365. that.payMode[2].number = res.data.now_money;
  366. that.$set(that, 'payMode', that.payMode);
  367. });
  368. },
  369. /**
  370. * 关闭支付组件
  371. *
  372. */
  373. payClose: function () {
  374. this.pay_close = false;
  375. },
  376. /**
  377. * 查看取货码
  378. * @param {Object} code
  379. */
  380. viewPickCode(code) {
  381. this.pickupCodeShow = true;
  382. this.pickupCode = code;
  383. },
  384. /**
  385. * 生命周期函数--监听页面加载
  386. */
  387. onLoad: function (options) {
  388. console.log('onLoad事件', options);
  389. if ('params' in options) {
  390. this.obj = JSON.parse(decodeURIComponent(options.params));
  391. }
  392. if (options.status) this.orderStatus = options.status;
  393. },
  394. /**
  395. * 取消订单
  396. *
  397. */
  398. cancelOrder: function (order_id) {
  399. let that = this;
  400. if (!order_id)
  401. return that.$util.Tips({
  402. title: that.$t(`缺少订单号无法取消订单`)
  403. });
  404. uni.showModal({
  405. title: that.$t(`取消订单`),
  406. content: that.$t(`确定取消该订单`),
  407. success: function (res) {
  408. if (res.confirm) {
  409. orderCancel(order_id)
  410. .then(res => {
  411. that.orderList = [];
  412. that.getOrderList()
  413. return that.$util.Tips({
  414. title: res.msg,
  415. icon: 'success'
  416. });
  417. })
  418. .catch(err => {
  419. return that.$util.Tips({
  420. title: err
  421. });
  422. });
  423. } else if (res.cancel) {
  424. return that.$util.Tips({
  425. title: that.$t(`已取消`)
  426. });
  427. }
  428. }
  429. });
  430. },
  431. refundOrder: function (orderId) {
  432. let that = this;
  433. if (!orderId)
  434. return that.$util.Tips({
  435. title: that.$t(`缺少订单号无法申请退款订单`)
  436. });
  437. uni.showModal({
  438. title: that.$t(`申请退款`),
  439. content: that.$t(`确定申请退款该订单`),
  440. success: function (res) {
  441. if (res.confirm) {
  442. postUserOrderRefund({ id: orderId })
  443. .then(res => {
  444. that.orderList = [];
  445. that.getOrderList()
  446. return that.$util.Tips({
  447. title: "申请成功",
  448. icon: 'success'
  449. });
  450. })
  451. .catch(err => {
  452. return that.$util.Tips({
  453. title: err
  454. });
  455. });
  456. } else if (res.cancel) {
  457. return that.$util.Tips({
  458. title: that.$t(`已取消`)
  459. });
  460. }
  461. }
  462. });
  463. },
  464. /**
  465. * 打开支付组件
  466. *
  467. */
  468. goPay: function (item) {
  469. this.$set(this, 'pay_close', true);
  470. this.$set(this, 'pay_order_id', item.orderNo);
  471. this.$set(this, 'pay_orderId', item.orderId);
  472. this.$set(this, 'totalPrice', item.paymentAmount);
  473. },
  474. /**
  475. * 支付成功回调
  476. *
  477. */
  478. pay_complete: function () {
  479. this.loadend = false;
  480. this.page = 1;
  481. this.$set(this, 'orderList', []);
  482. this.pay_close = false;
  483. uni.navigateTo({
  484. url: '/pages/goods/order_pay_status/index?order_id=' + this.pay_orderId +
  485. '&msg=' + this.$t(`支付成功`) + '&type=3&totalPrice=' + this.totalPrice
  486. })
  487. this.pay_order_id = '';
  488. this.pay_orderId = '';
  489. this.getOrderData();
  490. this.getOrderList();
  491. },
  492. /**
  493. * 支付失败回调
  494. *
  495. */
  496. pay_fail: function () {
  497. this.pay_close = false;
  498. this.pay_order_id = '';
  499. },
  500. /**
  501. * 去订单详情
  502. */
  503. goOrderDetails (orderId) {
  504. uni.navigateTo({
  505. url: '/pages/groupbuying_details/order_details_list/index?orderId=' + orderId
  506. });
  507. },
  508. /**
  509. * 切换类型
  510. */
  511. statusClick: function (status) {
  512. if (status.orderStatus == this.orderStatus) return;
  513. this.orderStatus = status.orderStatus;
  514. this.loadend = false;
  515. this.page = 1;
  516. this.$set(this, 'orderList', []);
  517. this.getOrderList();
  518. },
  519. /**
  520. * 获取订单列表
  521. */
  522. getOrderList: function () {
  523. let that = this;
  524. if (that.loadend) return;
  525. if (that.loading) return;
  526. that.loading = true;
  527. that.loadTitle = that.$t(`加载更多`);
  528. getUserOrderPage({
  529. current: that.page,
  530. size: that.limit,
  531. orderState: this.orderStatus
  532. }).then(res => {
  533. let list = res.data.records || [];
  534. let loadend = list.length < that.limit;
  535. that.orderList = that.$util.SplitArray(list, that.orderList);
  536. that.$set(that, 'orderList', that.orderList);
  537. that.loadend = loadend;
  538. that.loading = false;
  539. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  540. that.page = that.page + 1;
  541. }).catch(err => {
  542. that.loading = false;
  543. that.loadTitle = that.$t(`加载更多`);
  544. });
  545. },
  546. /**
  547. * 删除订单
  548. */
  549. delOrder: function (order_id, index) {
  550. let that = this;
  551. uni.showModal({
  552. title: that.$t(`删除订单`),
  553. content: that.$t(`确定删除该订单`),
  554. success: function (res) {
  555. if (res.confirm) {
  556. orderDel(order_id)
  557. .then(res => {
  558. that.orderList.splice(index, 1);
  559. that.$set(that, 'orderList', that.orderList);
  560. that.$set(that.orderData, 'unpaid_count', that.orderData
  561. .unpaid_count - 1);
  562. that.getOrderData();
  563. return that.$util.Tips({
  564. title: that.$t(`删除成功`),
  565. icon: 'success'
  566. });
  567. })
  568. .catch(err => {
  569. return that.$util.Tips({
  570. title: err
  571. });
  572. });
  573. } else if (res.cancel) {
  574. return that.$util.Tips({
  575. title: that.$t(`已取消`)
  576. });
  577. }
  578. }
  579. });
  580. },
  581. },
  582. onReachBottom: function () {
  583. this.getOrderList();
  584. }
  585. };
  586. </script>
  587. <style scoped lang="scss">
  588. .my-order {
  589. position: relative;
  590. }
  591. .my-order .header {
  592. height: 220rpx;
  593. padding: 0 30rpx;
  594. }
  595. .my-order .header .picTxt {
  596. height: 160rpx;
  597. }
  598. .my-order .header .picTxt .text {
  599. color: rgba(255, 255, 255, 0.8);
  600. font-size: 26rpx;
  601. font-family: 'Guildford Pro';
  602. }
  603. .my-order .header .picTxt .text .name {
  604. font-size: 34rpx;
  605. font-weight: bold;
  606. color: #fff;
  607. margin-bottom: 20rpx;
  608. }
  609. .my-order .header .picTxt .pictrue {
  610. width: 122rpx;
  611. height: 109rpx;
  612. }
  613. .my-order .header .picTxt .pictrue image {
  614. width: 100%;
  615. height: 100%;
  616. }
  617. .my-order .nav {
  618. background-color: #F9F9F9;
  619. width: 100%;
  620. // height: 140rpx;
  621. }
  622. .my-order .nav .item {
  623. text-align: center;
  624. font-size: 26rpx;
  625. color: #282828;
  626. padding: 27rpx 0;
  627. border-bottom: 5rpx solid transparent;
  628. }
  629. .my-order .nav .item.on {
  630. /* #ifdef H5 || MP */
  631. font-weight: bold;
  632. /* #endif */
  633. /* #ifdef APP-PLUS */
  634. color: #000;
  635. /* #endif */
  636. border-color: var(--view-theme);
  637. }
  638. .my-order .nav .item .num {
  639. margin-top: 18rpx;
  640. }
  641. .list {
  642. width: 100%;
  643. background: white;
  644. margin: 14rpx auto 0 auto;
  645. }
  646. .noCart {
  647. margin-top: 171rpx;
  648. padding-top: 0.1rpx;
  649. }
  650. .noCart .pictrue {
  651. width: 414rpx;
  652. height: 336rpx;
  653. margin: 78rpx auto 56rpx auto;
  654. }
  655. .noCart .pictrue image {
  656. width: 100%;
  657. height: 100%;
  658. }
  659. .my-order .list .item .item-info .text .money .return {
  660. // color: var(--view-priceColor);
  661. margin-top: 10rpx;
  662. font-size: 24rpx;
  663. }
  664. .myclient_list {
  665. padding-left: 30px;
  666. padding-top: 30rpx;
  667. padding-bottom: 30rpx;
  668. margin-top: 30rpx;
  669. background: #FFFFFF;
  670. .myclient_list_name {
  671. display: flex;
  672. justify-content: space-between;
  673. min-height: 44rpx;
  674. font-size: 28rpx;
  675. font-weight: 500;
  676. color: #111111;
  677. line-height: 44rpx;
  678. .nv {
  679. flex-grow: 1;
  680. }
  681. .nl {
  682. width: 550rpx;
  683. font-weight: bold;
  684. display: -webkit-box;
  685. -webkit-box-orient: vertical;
  686. -webkit-line-clamp: 1;
  687. overflow: hidden;
  688. text-overflow: ellipsis;
  689. }
  690. .status {
  691. min-width: 100rpx;
  692. text-align: right;
  693. margin-right: 30rpx;
  694. color: #FEA800;
  695. }
  696. .success_status {
  697. min-width: 100rpx;
  698. text-align: right;
  699. margin-right: 30rpx;
  700. color: #75BE00;
  701. }
  702. .after_sales_status {
  703. min-width: 100rpx;
  704. text-align: right;
  705. margin-right: 30rpx;
  706. color: #666666;
  707. }
  708. }
  709. .myclient_list_content {
  710. image {
  711. width: 28rpx;
  712. height: 28rpx;
  713. margin-top: 9rpx;
  714. margin-right: 10rpx;
  715. }
  716. .phone {
  717. display: flex;
  718. flex-direction: row;
  719. margin-bottom: 15rpx;
  720. height: 44rpx;
  721. font-size: 24rpx;
  722. font-weight: 400;
  723. color: #999999;
  724. line-height: 44rpx;
  725. }
  726. .time {
  727. display: flex;
  728. flex-direction: row;
  729. height: 44rpx;
  730. font-size: 24rpx;
  731. font-weight: 400;
  732. color: #999999;
  733. line-height: 44rpx;
  734. }
  735. }
  736. }
  737. .all-products-body {
  738. background: white;
  739. padding-left: 30px;
  740. .all-products-item {
  741. display: flex;
  742. margin-bottom: 20rpx;
  743. image {
  744. width: 132rpx;
  745. height: 132rpx;
  746. border-radius: 4px;
  747. }
  748. .all-products-item-content {
  749. display: flex;
  750. flex-direction: column;
  751. margin-left: 20rpx;
  752. width: calc(100% - 132rpx);
  753. .all-products-item-content-t {
  754. font-size: 24rpx;
  755. font-weight: 400;
  756. margin-right: 30rpx;
  757. height: 80rpx;
  758. color: #333333;
  759. line-height: 40rpx;
  760. }
  761. .all-products-item-content-b {
  762. font-size: 28rpx;
  763. font-weight: 500;
  764. line-height: 52rpx;
  765. display: flex;
  766. justify-content: space-between;
  767. .red {
  768. display: block;
  769. font-size: 28rpx;
  770. font-weight: bold;
  771. color: #B22338 !important;
  772. margin-right: 10rpx;
  773. }
  774. .line-thr {
  775. display: block;
  776. font-size: 28rpx;
  777. font-weight: 400;
  778. color: #999999;
  779. text-decoration: line-through;
  780. }
  781. .count {
  782. font-size: 24rpx;
  783. font-weight: 400;
  784. color: #999999;
  785. margin-right: 30rpx;
  786. }
  787. }
  788. }
  789. }
  790. }
  791. .a-t {
  792. padding: 0 30rpx;
  793. display: flex;
  794. justify-content: space-between;
  795. height: 44rpx;
  796. margin-bottom: 20rpx;
  797. font-size: 20rpx;
  798. font-weight: 400;
  799. color: #666666;
  800. line-height: 44rpx;
  801. }
  802. .a-m {
  803. padding: 0 30rpx;
  804. .am1 {
  805. display: flex;
  806. justify-content: space-between;
  807. margin-bottom: 20rpx;
  808. .am1-1 {
  809. height: 32rpx;
  810. font-size: 20rpx;
  811. font-weight: bold;
  812. color: #B22338;
  813. line-height: 32rpx;
  814. }
  815. .am1-2 {
  816. height: 36rpx;
  817. font-size: 20rpx;
  818. font-weight: 400;
  819. color: #666666;
  820. line-height: 36rpx;
  821. image {
  822. margin-left: 30rpx;
  823. vertical-align: middle;
  824. height: 34rpx;
  825. width: 34rpx;
  826. }
  827. }
  828. }
  829. .am2 {
  830. margin-bottom: 20rpx;
  831. height: 34rpx;
  832. font-size: 24rpx;
  833. font-weight: 400;
  834. color: #999999;
  835. line-height: 34rpx;
  836. }
  837. }
  838. .a-b {
  839. padding: 0 30rpx;
  840. width: 100%;
  841. background: #FFF7F8;
  842. height: 60rpx;
  843. line-height: 60rpx;
  844. display: flex;
  845. justify-content: space-between;
  846. .a-b1 {
  847. font-size: 20rpx;
  848. font-weight: 400;
  849. color: #666666;
  850. .red {
  851. font-size: 20rpx;
  852. font-weight: bold;
  853. color: #B22338;
  854. }
  855. }
  856. .a-b2 {
  857. image {
  858. vertical-align: middle;
  859. margin-left: 30rpx;
  860. height: 34rpx;
  861. width: 34rpx;
  862. }
  863. }
  864. }
  865. .self-pickup-point {
  866. display: flex;
  867. flex-direction: column;
  868. background: #FFF7F8;
  869. padding-top: 20rpx;
  870. margin: 0 30rpx;
  871. }
  872. .op-area {
  873. /*height: 120rpx;*/
  874. display: flex;
  875. justify-content: flex-end;
  876. line-height: 120rpx;
  877. padding: 20rpx 0;
  878. text-align: right;
  879. .action-btn {
  880. min-width: 200rpx;
  881. background: #FFF7F8;
  882. border-radius: 32rpx;
  883. border: 2rpx solid #B22338;
  884. margin-right: 30rpx;
  885. height: 64rpx;
  886. font-size: 24rpx;
  887. font-weight: 400;
  888. color: #B22338;
  889. line-height: 64rpx;
  890. }
  891. .info-btn {
  892. width: 200rpx;
  893. background: #F5F5F5;
  894. border-radius: 32rpx;
  895. margin-right: 30rpx;
  896. height: 64rpx;
  897. font-size: 24rpx;
  898. font-weight: 400;
  899. color: #666666;
  900. line-height: 64rpx;
  901. }
  902. }
  903. .sys-head {
  904. position: relative;
  905. width: 100%;
  906. // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
  907. .bg {
  908. position: absolute;
  909. left: 0;
  910. top: 0;
  911. width: 100%;
  912. height: 100%;
  913. background: var(--view-theme);
  914. background-size: 100% auto;
  915. background-position: left bottom;
  916. }
  917. .sys-title {
  918. z-index: 10;
  919. position: relative;
  920. height: 43px;
  921. text-align: left;
  922. line-height: 43px;
  923. font-size: 36rpx;
  924. color: rgba(17, 17, 17, 1);
  925. font-weight: bolder;
  926. padding-left: 36rpx;
  927. }
  928. }
  929. .block_3 {
  930. background-color: rgba(255, 255, 255, 1);
  931. border-radius: 4px;
  932. padding: 16rpx 16rpx 32rpx 24rpx;
  933. display: flex;
  934. flex-direction: column;
  935. }
  936. .icon_1 {
  937. width: 32rpx;
  938. height: 32rpx;
  939. margin-left: 566rpx;
  940. }
  941. .image_3 {
  942. width: 590rpx;
  943. height: 766rpx;
  944. margin: 16rpx 8rpx 0 0;
  945. }
  946. .text_23 {
  947. overflow-wrap: break-word;
  948. color: rgba(51, 51, 51, 1);
  949. font-size: 28rpx;
  950. font-weight: NaN;
  951. text-align: center;
  952. white-space: nowrap;
  953. line-height: 40rpx;
  954. margin: 24rpx 128rpx 0 122rpx;
  955. }
  956. .white_line{
  957. width: 90%;
  958. height: 2rpx;
  959. margin-left: 5%;
  960. background-color: white;
  961. }
  962. .bord{
  963. border: 1px solid red;
  964. }
  965. .grouponTitle{
  966. display: flex;
  967. flex-direction: column;
  968. height: 44rpx;
  969. }
  970. .subTitle{
  971. font-size: 28rpx;
  972. color: #666666;
  973. font-weight: 400;
  974. line-height: 44rpx;
  975. display: -webkit-box;
  976. -webkit-box-orient: vertical;
  977. -webkit-line-clamp: 1;
  978. overflow: hidden;
  979. text-overflow: ellipsis;
  980. }
  981. </style>