index.vue 23 KB

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