orderDetail.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. <template>
  2. <view class="orderDetail-digitalShel flex flex_column">
  3. <view class="contHead" :style="{background:state!= 'error'&&state!= 'AUDIT_REJECT'&&state!='CANCEL'&&state!='WAIT_PAY' ? '#066cff':(state=='WAIT_PAY'?'#f45c03':'#e61100'),color:'#fff'}">
  4. <view class="statusH">
  5. <view class="flex flex_column align_center">
  6. <view class="status-row">
  7. <u-icon :name="statusIcon" size="42" color="#fff">
  8. </u-icon>
  9. <text>{{statusText}}</text>
  10. </view>
  11. <view v-if="info.billStatus=='WAIT_PAY'" class="messageText">
  12. 请尽快支付,
  13. <u-count-down separator="zh" :separator-size="24" bg-color="none" color="#ffff7f" separator-color="#ffff7f" :timestamp="info.timestamp" :show-days="false" :show-hours="false" @end="countDownEnd()"></u-count-down>
  14. 后订单将自动取消。
  15. </view>
  16. <view v-else class="messageText"><text>{{statusMessage}}</text></view>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="order-body">
  21. <view class="info partList" v-if="partList.length" style="max-height: 50vh;overflow: auto;">
  22. <view class="infoList">
  23. <view class="title">
  24. 产品列表
  25. </view>
  26. <view v-if="info">
  27. 共<text class="cText">{{info.totalCategory}}</text>款
  28. </view>
  29. </view>
  30. <view v-for="(item,dix) in partList" :key="item.id" class="item-list-box">
  31. <view class="item-list flex">
  32. <view style="height: 160rpx;width: 160rpx;">
  33. <u-image :src="item.product.images ? item.product.images+'?x-oss-process=image/resize,p_50':'/static/def_imgs.png'" border-radius="16" width="160" height="160" bg-color="#EBEBEB" ></u-image>
  34. </view>
  35. <view>
  36. <view class="item-name">
  37. <text>{{item.product.productName}}</text>
  38. </view>
  39. <view class="item-nums" v-if="item.product&&item.product.code">
  40. <text>{{item.product.code}}</text>
  41. </view>
  42. <view class="item-nums" v-if="item.product&&item.product.origCode">
  43. <text style="color: #00aaff;">{{item.product.origCode}}</text>
  44. </view>
  45. <view class="item-head">
  46. <view class="flex align_center">
  47. <view class="price-txt">¥<text>{{item.priceStr[0]}}</text>.{{item.priceStr[1]}}</view>
  48. <view class="flex align_center rebate-tag" v-if="item.promoProductType=='TICKET_PRODUCT'">
  49. 返<text>{{item.resultValue}}</text>元
  50. </view>
  51. <view class="flex align_center rebate-tag" v-if="item.promoProductType=='REGULAR_PRODUCT'">
  52. 买{{item.conditionValue}}赠{{item.resultValue}}
  53. </view>
  54. <view class="flex align_center tejia-tag" v-if="item.promoProductType=='SPECIAL_PRODUCT'">
  55. 特价<text>¥{{item.priceOrig}}</text>
  56. </view>
  57. </view>
  58. <view>
  59. X <text class="cText">{{item.qty}}</text>{{item.product&&item.product.unit||''}}
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 赠品 -->
  65. <view class="item-list flex gift-box" v-if="item.giftObj">
  66. <view style="height: 120rpx;width: 120rpx;margin-left: 40rpx;">
  67. <u-image :src="item.giftObj.product.images ? item.giftObj.product.images+'?x-oss-process=image/resize,p_50':'/static/def_imgs.png'" border-radius="16" width="120" height="120" bg-color="#EBEBEB" ></u-image>
  68. </view>
  69. <view>
  70. <view class="item-name flex align_center">
  71. <view class="flex align_center rebate-tag">
  72. 赠品
  73. </view>
  74. <text class="ellipsis-one">{{item.giftObj.product.productName}}</text>
  75. </view>
  76. <view class="item-nums ellipsis-one" v-if="item.giftObj.product&&item.giftObj.product.code">
  77. <text>{{item.giftObj.product.code}}</text>
  78. </view>
  79. <view class="item-nums ellipsis-one" v-if="item.giftObj.product&&item.giftObj.product.origCode">
  80. <text style="color: #666;">{{item.giftObj.product.origCode}}</text>
  81. </view>
  82. <view class="item-head">
  83. <view class="flex align_center"></view>
  84. <view>
  85. X <text class="cText">{{item.giftObj.qty}}</text>{{item.giftObj.product&&item.giftObj.product.unit||''}}
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. <!-- 分页 -->
  92. <view class="product-pages" v-if="totalPages>1">
  93. <uni-pages-nav :totalPages="totalPages" :showShadow="false" :currentPage="pageNo" @pagechanged="getRow"></uni-pages-nav>
  94. </view>
  95. </view>
  96. <view class="info" v-if="info">
  97. <view class="infoList" v-if="info.totalSubsidyAmount||info.totalSpecialGiveAmount||info.totalTicketGiveAmount">
  98. <text>总金额</text>
  99. <view class="cText">¥<text>{{Number(info.totalAmount).toFixed(2)}}</text></view>
  100. </view>
  101. <view class="infoList gray-text" v-if="info.totalSubsidyAmount">
  102. <text>总抵扣</text>
  103. <text class="cText">¥{{Number(info.totalSubsidyAmount).toFixed(2)}}</text>
  104. </view>
  105. <view class="infoList gray-text" v-if="info.totalSpecialGiveAmount">
  106. <text>总优惠</text>
  107. <text class="cText">¥{{Number(info.totalSpecialGiveAmount).toFixed(2)}}</text>
  108. </view>
  109. <view class="infoList gray-text" v-if="info.totalTicketGiveAmount">
  110. <text>代金券</text>
  111. <text class="cText">¥{{Number(info.totalTicketGiveAmount).toFixed(2)}}</text>
  112. </view>
  113. <view class="infoList">
  114. <text>合计</text>
  115. <view class="price-txt">¥<text>{{Number(info.totalDiscountedAmount).toFixed(2)}}</text></view>
  116. </view>
  117. </view>
  118. <view class="info" v-if="!hasPay && info">
  119. <view class="infoList">
  120. <view class="title">订单信息</view>
  121. <view class="statu"></view>
  122. </view>
  123. <view class="infoList dju">
  124. <text>订单编号</text>
  125. <text>{{info.purchaseNo||'--'}}</text>
  126. </view>
  127. <view class="infoList">
  128. <text>下单时间</text>
  129. <text>{{info.purchaseDate||'--'}}</text>
  130. </view>
  131. <view class="infoList">
  132. <text>下单人员</text>
  133. <text>{{info.purchaserName || '--'}}</text>
  134. </view>
  135. <view class="infoList" v-if="info.payOnlineType=='RECHARGE_BALANCE'">
  136. <text>支付方式</text>
  137. <text>{{info.payOnlineTypeDictValue}}</text>
  138. </view>
  139. <view class="infoList" v-if="info.payOnlineType=='RECHARGE_BALANCE'">
  140. <text>支付时间</text>
  141. <text>{{info.createDate||'--'}}</text>
  142. </view>
  143. </view>
  144. <!-- 线上支付 显示 -->
  145. <view class="info" v-if="hasPay && info">
  146. <u-read-more ref="uReadMore" :text-indent="0" toggle close-text="更多信息" :show-height="460">
  147. <view class="infoList">
  148. <view class="title">订单信息</view>
  149. <view class="statu"></view>
  150. </view>
  151. <view class="infoList dju">
  152. <text>订单编号</text>
  153. <text>{{info.purchaseNo||'--'}}</text>
  154. </view>
  155. <view class="infoList">
  156. <text>下单时间</text>
  157. <text>{{info.purchaseDate||'--'}}</text>
  158. </view>
  159. <view class="infoList">
  160. <text>下单人员</text>
  161. <text>{{info.purchaserName || '--'}}</text>
  162. </view>
  163. <view class="infoList" v-if="isPayOk">
  164. <text>支付方式</text>
  165. <text>{{info.payOnlineTypeDictValue}}</text>
  166. </view>
  167. <view class="infoList" v-if="isPayOk">
  168. <text>支付时间</text>
  169. <text>{{info.payInfo.payDate||'--'}}</text>
  170. </view>
  171. <view class="infoList" v-if="info&&info.billStatus != 'WAIT_AUDIT'&&info.billStatus != 'WAIT_PAY'&&info.billStatus != 'CANCEL'">
  172. <text>审核时间</text>
  173. <text>{{info.auditDate||'--'}}</text>
  174. </view>
  175. <view class="infoList" v-if="info&&info.billStatus == 'CANCEL'">
  176. <text>取消时间</text>
  177. <text>{{info.cancelDate ||'--'}}</text>
  178. </view>
  179. <view class="infoList" v-if="info&&(info.billStatus == 'CANCEL'||info.billStatus == 'AUDIT_REJECT')&&isPayOk">
  180. <text>退款方式</text>
  181. <text>原支付返回</text>
  182. </view>
  183. <view class="infoList" v-if="info&&(info.billStatus == 'CANCEL'||info.billStatus == 'AUDIT_REJECT')&&isPayOk">
  184. <text>退款时间</text>
  185. <text>{{info.payInfo.refundDate ||'--'}}</text>
  186. </view>
  187. <view class="infoList" v-if="info&&(info.billStatus == 'CANCEL'||info.billStatus == 'AUDIT_REJECT')&&isPayOk">
  188. <text>退款状态</text>
  189. <text>{{info.payInfo.refundState=='FINISH'?'已退款':(info.payInfo.refundState=='WAIT'?'退款中':'退款失败')}}</text>
  190. </view>
  191. <view class="infoList" v-if="shelfInfo">
  192. <text>配送汽配商</text>
  193. <text>{{shelfInfo.dealerName}}</text>
  194. </view>
  195. </u-read-more>
  196. </view>
  197. </view>
  198. <view v-if="info&&info.billStatus == 'WAIT_AUDIT'||info.billStatus == 'WAIT_PAY'||info.billStatus == 'WAIT_RECEIVE'" style="background-color: #fff;">
  199. <view class="footer flex align_center justify_center">
  200. <u-button style="margin-left: 10px;" v-if="info.billStatus == 'WAIT_AUDIT'||info.billStatus == 'WAIT_PAY'" size="medium" shape="round" type="default" plain @click="cancelOrder(info)">取消订单</u-button>
  201. <u-button style="margin-left: 10px;" v-if="info.billStatus == 'WAIT_PAY'&&info.payOnlineType=='PAY_WECHAT_ONLINE'" size="medium" shape="round" type="error" plain @click="payOrder(info)">立即支付</u-button>
  202. <!-- <u-button style="margin-left: 10px;" v-if="info.billStatus == 'FINISH'" size="medium" shape="round" type="error" plain @click="buyAgain(info)">再次购买</u-button> -->
  203. <u-button style="margin-left: 10px;" v-if="info.billStatus == 'WAIT_RECEIVE'" size="medium" shape="round" type="error" plain @click="receiveOrder(info)">确认收货</u-button>
  204. </view>
  205. <view :style="{height:safeAreaBottom+'px'}"></view>
  206. </view>
  207. <!-- 付款弹框 -->
  208. <payModal :showPopu="showPopu" :payInfo="info" :payData="payData" @close="showPopu=false" @payComplete="payComplete"></payModal>
  209. </view>
  210. </template>
  211. <script>
  212. import payModal from '../components/payModal.vue'
  213. import { purchaseQueryDetailPage,purchaseQueryPage,purchaseCancel,purchaseReceive,purchasePay } from '@/api/purchase.js'
  214. import moment from 'moment'
  215. export default {
  216. name: 'procureDetailOrder',
  217. components:{
  218. payModal
  219. },
  220. data() {
  221. return {
  222. loading: false,
  223. info: null,
  224. statusText: '',
  225. statusIcon: '', // 结算状态icon
  226. statusMessage: '请耐心等待汽配经销商进行配送',
  227. partList: [], // 配件列表
  228. state: 'success',
  229. pageNo:1,
  230. pageSize: 30,
  231. total: 0,
  232. purchaseSn: null,
  233. showPopu: false,
  234. safeAreaBottom: 0, // 底部安全区域高度
  235. payData: null
  236. }
  237. },
  238. onLoad(option) {
  239. this.safeAreaBottom = uni.getSystemInfoSync().safeAreaInsets.bottom
  240. uni.setNavigationBarTitle({
  241. title: '采购订单详情'
  242. })
  243. // 查明细
  244. this.purchaseSn = option.purchaseSn
  245. this.getDetail()
  246. // 获取明细列表
  247. this.getDetailList()
  248. },
  249. onUnload() {
  250. this.$store.state.vuex_tempOrderData = null
  251. },
  252. computed: {
  253. totalPages(){
  254. return Math.ceil(this.total / this.pageSize)
  255. },
  256. // 货架经销商信息
  257. shelfInfo(){
  258. return this.$store.state.vuex_storeShelf
  259. },
  260. //是否有支付信息
  261. hasPay(){
  262. return this.info&&this.info.payOnlineFlag==1&&this.info.payInfo
  263. },
  264. // 最小支付金额
  265. minPayAmount(){
  266. const shelfInfo = this.shelfInfo
  267. return shelfInfo&&shelfInfo.minAmount ? shelfInfo.minAmount : 0
  268. },
  269. //是否已付款
  270. isPayOk(){
  271. return this.hasPay && this.info.payInfo.payState=='FINISH'
  272. },
  273. },
  274. methods: {
  275. pageInit(data){
  276. // 计算待付款剩余倒计时
  277. if(data.billStatus== 'WAIT_PAY'){
  278. data.timestamp = (new Date(data.createDate.replace(/-/g,'/')).getTime() + 1800000 - new Date().getTime())/1000
  279. }
  280. data.payOk = data.payOnlineFlag==1&&data.payInfo&&data.payInfo.payState=='FINISH'
  281. this.info = data
  282. this.state = data.billStatus
  283. const stateText = {'WAIT_AUDIT':'待审核','WAIT_PAY':'待付款','AUDIT_REJECT':'审核不通过','WAIT_OUT_WAREHOUSE':'待收货','WAIT_RECEIVE':'待收货','FINISH':'已完结','CANCEL':'已取消'}
  284. this.statusText = stateText[this.state]
  285. this.statusIcon = this.state == 'FINISH' ? 'checkmark-circle' : ((this.state == 'AUDIT_REJECT'||this.state == 'CANCEL')?'close-circle':'hourglass')
  286. this.statusMessage = this.state == 'WAIT_OUT_WAREHOUSE'||this.state == 'WAIT_RECEIVE' ? '请耐心等待汽配经销商进行配送' : ''
  287. // 更改标题栏背景色
  288. uni.setNavigationBarColor({
  289. frontColor: '#ffffff',
  290. backgroundColor: this.state!= 'error'&&this.state!= 'AUDIT_REJECT'&&this.state!= 'CANCEL'&&this.state!= 'WAIT_PAY' ? '#066cff':(this.state=='WAIT_PAY'?'#f45c03':'#e61100'),
  291. })
  292. },
  293. // 实时查询详情
  294. getDetail(){
  295. purchaseQueryPage({pageNo:1,pageSize:1,purchaseSn: this.purchaseSn}).then(res => {
  296. const data = res.data ? res.data.list[0] : null
  297. if(data){
  298. data.billStatus = data.billStatus == 'WAIT_AUDIT'&&data.payOnlineFlag==1&&data.payInfo&&data.payInfo.payState=='WAIT'?'WAIT_PAY':data.billStatus
  299. this.pageInit(data)
  300. }
  301. })
  302. },
  303. // 下一页
  304. getRow(pageNo){
  305. this.pageNo = pageNo
  306. this.getDetailList()
  307. },
  308. getDetailList(){
  309. uni.showLoading({
  310. title: '加载中'
  311. })
  312. purchaseQueryDetailPage({purchaseSn: this.purchaseSn,pageNo:this.pageNo,pageSize:this.pageSize}).then(res => {
  313. uni.hideLoading()
  314. if(res.status == 200){
  315. this.partList = res.data ? res.data.list : []
  316. // 是否有赠品
  317. const giftList = this.partList.filter(item => item.promoProductType == 'GIFT_PRODUCT')
  318. // 正品
  319. this.partList = this.partList.filter(item => item.promoProductType !== 'GIFT_PRODUCT')
  320. this.partList.map(item=>{
  321. // 关联赠品
  322. item.giftObj = giftList.find(gift => gift.purchaseDetailParentSn == item.purchaseDetailSn)
  323. item.priceStr = Number(item.price).toFixed(2).toString().split('.')
  324. })
  325. this.total = res.data ? res.data.count : 0
  326. }
  327. })
  328. },
  329. message(title){
  330. uni.showToast({
  331. icon:'none',
  332. title: title,
  333. duration: 3000
  334. })
  335. },
  336. // 取消订单
  337. cancelOrder(item){
  338. let _this = this
  339. uni.showModal({
  340. title: '提示',
  341. content: !item.payOk ? '确定取消订单吗?':'取消后订单金额将于1-3个工作日到账(原路返回)?',
  342. success: function (res) {
  343. if (res.confirm) {
  344. purchaseCancel({purchaseSn:_this.purchaseSn}).then(res => {
  345. if (res.status == 200) {
  346. _this.message('取消成功')
  347. item.payInfo = null
  348. uni.$emit('refreshPurcaOrder',item,'CANCEL')
  349. setTimeout(()=>{
  350. uni.navigateBack()
  351. },3000)
  352. } else {
  353. _this.message(res.message)
  354. }
  355. })
  356. }
  357. }
  358. });
  359. },
  360. // 倒计时结束,取消订单刷新页面
  361. countDownEnd(){
  362. this.showPopu = false
  363. const _this = this
  364. uni.showModal({
  365. title: '提示',
  366. content: '订单超过30分钟已自动取消',
  367. showCancel:false,
  368. confirmText:'知道了',
  369. success: function (res) {
  370. _this.state = 'CANCEL'
  371. _this.info.billStatus = 'CANCEL'
  372. _this.info.payInfo = null
  373. _this.statusText = '已取消'
  374. _this.statusIcon = 'close-circle'
  375. _this.statusMessage = '订单超过30分钟已自动取消'
  376. _this.info.cancelDate = moment().format('YYYY-MM-DD hh:mm:ss')
  377. uni.$emit('refreshPurcaOrder',_this.info,'CANCEL')
  378. // 更改标题栏背景色
  379. uni.setNavigationBarColor({
  380. frontColor: '#ffffff',
  381. backgroundColor: '#e61100',
  382. })
  383. }
  384. });
  385. },
  386. // 立即支付
  387. payOrder(item){
  388. if(item.totalAmount<this.minPayAmount){
  389. uni.showModal({
  390. content: '支付金额不能小于'+this.minPayAmount+'元!',
  391. showCancel:false,
  392. confirmText:'知道了'
  393. })
  394. return
  395. }
  396. uni.showLoading({
  397. title: '加载中...'
  398. })
  399. purchasePay({
  400. bizSn:item.purchaseSn,
  401. bizNo:item.purchaseNo,
  402. bizType:'SETTLE_BILL',
  403. payUserOpenId: this.$store.state.vuex_openid || uni.getStorageSync('openid')
  404. }).then(res=>{
  405. this.showPopu = true
  406. this.payData = res.data?res.data.payRequestRest:null
  407. uni.hideLoading()
  408. })
  409. },
  410. // 付款成功,isOk: false 取消支付或支付失败,true 支付完成
  411. payComplete(item,isOk){
  412. this.showPopu = false
  413. if(isOk){
  414. this.message('支付成功')
  415. uni.$emit('refreshPurcaOrder',item,'WAIT_AUDIT')
  416. setTimeout(()=>{
  417. uni.navigateBack()
  418. },3000)
  419. }
  420. },
  421. // 再次购买
  422. buyAgain(item){
  423. },
  424. // 确认收货
  425. receiveOrder(item){
  426. let _this = this
  427. uni.showModal({
  428. title: '提示',
  429. content: '确定收货吗?',
  430. success: function (res) {
  431. if (res.confirm) {
  432. purchaseReceive({purchaseSn:_this.purchaseSn}).then(res => {
  433. if (res.status == 200) {
  434. _this.message('收货成功')
  435. uni.$emit('refreshPurcaOrder',item,'FINISH')
  436. setTimeout(()=>{
  437. uni.navigateBack()
  438. },3000)
  439. } else {
  440. _this.message(res.message)
  441. }
  442. })
  443. }
  444. }
  445. });
  446. },
  447. }
  448. }
  449. </script>
  450. <style lang="less">
  451. page{
  452. height: 100%;
  453. }
  454. .orderDetail-digitalShel{
  455. height: 100%;
  456. .redText{
  457. color: #FB1E1E;
  458. margin: 0 10rpx;
  459. }
  460. .cText{
  461. color: #666;
  462. margin: 0 6rpx;
  463. font-size: 14px;
  464. }
  465. .gray-text{
  466. text{
  467. font-size: 14px;
  468. color: #999;
  469. }
  470. }
  471. .order-body{
  472. flex-grow: 1;
  473. overflow: auto;
  474. .partList{
  475. margin-top: 20rpx;
  476. }
  477. }
  478. .contHead {
  479. .statusH{
  480. > view{
  481. padding: 10upx 12%;
  482. font-size: 34upx;
  483. }
  484. .status-row{
  485. font-size: 42upx;
  486. text{
  487. margin-left: 10rpx;
  488. }
  489. }
  490. .messageText{
  491. font-size: 28upx;
  492. text-align: center;
  493. text{
  494. color: #f3e781;
  495. }
  496. padding: 20rpx 0;
  497. }
  498. }
  499. }
  500. .price-txt{
  501. color: red;
  502. display: flex;
  503. align-items: baseline;
  504. font-size: 12px;
  505. text{
  506. font-size: 32rpx;
  507. }
  508. }
  509. .info{
  510. background-color: #FFFFFF;
  511. padding: 10rpx 30upx;
  512. font-size: 32rpx;
  513. margin-bottom: 20rpx;
  514. .infoList{
  515. display: flex;
  516. justify-content: space-between;
  517. align-items: center;
  518. padding: 20rpx 0;
  519. border-bottom: 2rpx solid #f2f2f2;
  520. &:last-child{
  521. border: none;
  522. }
  523. .title{
  524. font-weight: bold;
  525. > text{
  526. color: #ff9808;
  527. font-size: 24upx;
  528. }
  529. }
  530. > text{
  531. &:first-child{
  532. color: #666E75;
  533. }
  534. }
  535. }
  536. .item-list-box{
  537. border-bottom: 2rpx solid #f2f2f2;
  538. &:last-child{
  539. border: none;
  540. }
  541. }
  542. .item-list{
  543. padding: 20rpx 0;
  544. > view{
  545. &:first-child{
  546. margin-right: 20rpx;
  547. position: relative;
  548. overflow: hidden;
  549. width: 160rpx;
  550. height: 160rpx;
  551. border-radius: 6px;
  552. border: 1px solid #eee;
  553. }
  554. &:last-child{
  555. flex-grow: 1;
  556. width: 60%;
  557. }
  558. }
  559. .item-name{
  560. word-wrap: break-word;
  561. font-size: 28rpx;
  562. color: #333;
  563. font-weight: bold;
  564. }
  565. .item-nums{
  566. text{
  567. font-size: 28rpx;
  568. color: #666;
  569. }
  570. }
  571. .item-head{
  572. display: flex;
  573. align-items: center;
  574. justify-content: space-between;
  575. color: #666;
  576. margin-top: 5px;
  577. > view:last-child{
  578. font-size: 24rpx;
  579. text{
  580. margin: 0 10rpx;
  581. font-size: 28rpx;
  582. }
  583. }
  584. }
  585. .rebate-tag{
  586. background: #ffe7df;
  587. color: #E91E63;
  588. padding: 2px 5px;
  589. font-size: 10px;
  590. border-radius: 3px;
  591. margin-left: 6px;
  592. }
  593. .tejia-tag{
  594. color: #E91E63;
  595. margin-left: 6px;
  596. font-size: 12px;
  597. text{
  598. font-size: 12px;
  599. color: #999;
  600. margin-left: 5px;
  601. text-decoration: line-through;
  602. }
  603. }
  604. }
  605. }
  606. .gift-box.item-list{
  607. .item-name{
  608. color: #666;
  609. font-size: 12px;
  610. font-weight: normal;
  611. }
  612. .item-nums{
  613. text{
  614. color: #666;
  615. font-size: 12px;
  616. }
  617. }
  618. .rebate-tag{
  619. margin-left: 0;
  620. margin-right: 5px;
  621. }
  622. .ellipsis-one{
  623. flex-grow: 1;
  624. width:80%;
  625. }
  626. }
  627. .footer{
  628. padding: 20upx;
  629. background: #FFFFFF;
  630. }
  631. }
  632. </style>