123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888 |
- <template>
- <view class="container">
- <u-navbar leftIconColor="#fff" titleStyle="color:#fff;fontSize:36rpx;" :autoBack="true" bgColor="#2C6FF3"
- :placeholder="true" title="订单查询"></u-navbar>
- <view class="time-choose">
- <view class="flex align-center justify-between top">
- <view class="con-btn" @tap="thedaybefore()">
- 前一天 </view>
- <view class="flex align-center justify-between date" @tap="timeShow=true">
- <view class="">{{searchQuery.orderDate}}</view>
- <image src="https://cdn.ossfile.mxrvending.com/assets/xy_merc_mini/images/date.png" mode="widthFix">
- </image>
- </view>
- <view class="con-btn" @tap="thenextday()">后一天</view>
- </view>
- </view>
- <view class="search">
- <u-search placeholder='输入机器编号或名称搜索' v-model="searchQuery.deviceSearch" :showAction="false" @search="search">
- </u-search>
- </view>
-
- <view class="flex align-center justify-between screen-container">
- <view>{{Number(orderCount.orderNum)}}个订单,合计:¥{{Number(orderCount.orderTotalAmount/100)}}</view>
- <view class="flex align-center">
- <view class="show-zero flex justify-end align-center">
- <view>零元单:</view>
- <view>
- <u-switch activeColor="#2C6FF3" size="14" v-model="searchQuery.showZero" @change="showZeroChange"></u-switch>
- </view>
- </view>
- <view class="flex align-center justify-center" @tap="screen">
- <view class="" style="font-size: 28rpx;font-weight: 500;color: #333333;">筛选</view>
- <image src="https://cdn.ossfile.mxrvending.com/assets/xy_merc_mini/images/screen.png"
- style="width: 32rpx;height: 32rpx;margin-left: 12rpx;" mode="widthFix"></image>
- </view>
- </view>
- </view>
-
-
- <view class="tab-wrap">
- <view class="tab">
- <u-tabs :list="tabList" :activeStyle="{color: '#333',fontWeight: 'bold',fontSize:'36rpx'}"
- :inactiveStyle="{fontSize:'32rpx'}" :scrollable="false" :current="current" @click="tabClick"
- lineColor="#2C6FF3">
- </u-tabs>
- </view>
- </view>
- <scroll-view class="scrollview" :scroll-with-animation="true" scroll-y lower-threshold="100"
- @scrolltolower="scrolltolower" :style="{height:fullHeight}">
- <view v-if="orderList.length>0">
- <block v-for="(item,index) in orderList" :key="item.id">
- <view class="equipment-container" @tap="details(item)">
- <view class="flex align-center justify-between">
- <view class="title" v-if="item.deviceName">
- {{item.deviceName}}<text>({{item.deviceId}})</text>
- </view>
- <view class="title" v-else>{{item.deviceId}}</view>
- <view>
- <u-icon name="arrow-right" size="14"></u-icon>
- </view>
- </view>
- <view class="order-detail-item">
- <view>订单号:</view>{{item.id}}
- </view>
- <view class="order-detail-item">
- <view>支付方式:</view>{{$xy.getPayType(item.payType)}}
- </view>
- <view class="order-detail-item">
- <view>设备类型:</view>{{item.deviceType||'/'}}
- </view>
- <view class="order-detail-item">
- <view>时间:</view>{{item.createTime}}
- </view>
-
- <view class="order-detail-item" v-if="$xy.delMoney(item.payMoney)==0">
- <view>零元单提示:</view><view style="color: red;">未拿商品</view>
- </view>
- <view class="goods-container sb-box" v-for="(item1,index1) in item.orderGoods" :key="item1.id">
- <view class="flex align-center justify-center image-container">
- <u--image radius="4" width="130rpx" height="130rpx" :src="item1.goodsImgUrl"
- mode="aspectFit" :lazy-lord="true"></u--image>
- </view>
- <view class="details-container">
- <view class="flex align-center goods-name-num justify-between">
- <view class="goods-name">{{item1.goodsName}}</view>
- <view class="goods-num">×{{item1.totalNumber}}</view>
- </view>
- <view class="gp-item">
- 单价:¥{{(Number(item1.totalMoney)/Number(item1.totalNumber))/100}}
- </view>
- <view class="gp-item" v-if="item1.refundMoney||item1.refundMoney!=0">
- 已退款:¥{{$xy.delMoney(item1.refundMoney)}}
- </view>
- <view class="goods-price flex">
- <!-- <view class="gp-item">
- 应收:¥{{(Number(item1.totalMoney)-Number(item1.discountMoney))/100}}
- </view> -->
- <!-- <view class="gp-item">
- 实收:¥{{item1.totalMoney-item1.discountMoney}}
- </view> -->
- </view>
- <!-- <view class="good-act">优惠活动:无</view> -->
- </view>
- </view>
- <view class="martop" style="text-align: right;">共计{{Number(item.goodsNumber)}}件,实付款<text
- style="color: red;font-weight: bold;">¥{{$xy.delMoney(item.orderTotalMoney)}}</text></view>
- </view>
- </block>
- <view class="load-more" style="padding:24rpx;">
- <u-loadmore v-if="orderList.length>0" :status="loadmoreStatus" />
- </view>
- </view>
- <view v-else class='empty'>
- <u-empty mode="data" text="数据为空"></u-empty>
- </view>
- </scroll-view>
- <xpopup :show="screenShow" @close="close" @confirm="sure" :showBtn="true" title="筛选">
- <view class="popup-container">
- <view class='martop'>
- <u--input placeholder="订单编号" v-model="searchQuery.id" border="surround"></u--input>
- </view>
- <view class='martop'>
- <u--input placeholder="手机号码" v-model="searchQuery.phone" border="surround"></u--input>
- </view>
- <view class='martop'>
- <u--input placeholder="支付订单号" v-model="searchQuery.payOrderNo" border="surround"></u--input>
- </view>
- <view class='martop' @click="actionsheetChange('sblx')">
- <u--input clearable readonly suffixIcon="arrow-down" v-model="showQuery.deviceType"
- suffixIconStyle="color: #909399" placeholder="设备类型" border="surround"></u--input>
- </view>
- <view class='martop' @click="actionsheetChange('xzqy')">
- <u--input clearable readonly suffixIcon="arrow-down" v-model="searchQuery.regionName"
- border="surround" suffixIconStyle="color: #909399" placeholder="行政区域">
- </u--input>
- </view>
- <view class='martop' @click="actionsheetChange('lx')">
- <u--input clearable readonly suffixIcon="arrow-down" v-model="showQuery.merLineId" border="surround"
- suffixIconStyle="color: #909399" placeholder="路线"></u--input>
- </view>
- <!-- <view class='martop' @click="actionsheetChange('ddzt')">
- <u--input clearable readonly suffixIcon="arrow-down" v-model="showQuery.payStatus" border="surround"
- suffixIconStyle="color: #909399" placeholder="订单状态">
- </u--input>
- </view> -->
- <view class='martop' @click="actionsheetChange('yczt')">
- <u--input clearable readonly suffixIcon="arrow-down" v-model="showQuery.riskType" border="surround"
- suffixIconStyle="color: #909399" placeholder="异常状态">
- </u--input>
- </view>
- <!-- <view class='martop'>
- <u--input clearable suffixIcon="arrow-down" v-model="searchQuery.regionName" border="surround"
- suffixIconStyle="color: #909399" placeholder="拉黑操作" @focus="actionsheetChange('lhcz')">
- </u--input>
- </view>
- <view class='martop'>
- <u--input clearable suffixIcon="arrow-down" v-model="searchQuery.regionName" border="surround"
- suffixIconStyle="color: #909399" placeholder="促销活动" @focus="actionsheetChange('cxhd')">
- </u--input>
- </view> -->
- </view>
- </xpopup>
- <u-action-sheet :show="actionSheetShow" :actions="actions" :title="title" @close="actionSheetShow = false"
- @select="actionsheetSelect($event)"></u-action-sheet>
- <!-- 区域选择弹框 -->
- <xpopup :show="areaShow" @close="areaClose" :showBtn="false" title="选择区域">
- <!-- 类目选择 -->
- <scroll-view style="height: 600rpx;" scroll-y scroll-with-animation>
- <view class="popup-content">
- <tki-tree style="width:100%;" :range="areaList" :foldAll="false" rangeKey="name" idKey="name"
- buttonName="选中" @btnClick="areaSubmit">
- </tki-tree>
- </view>
- </scroll-view>
- </xpopup>
- <!-- 时间选择 -->
- <u-datetime-picker :show="timeShow" :closeOnClickOverlay="true" @close="timeShow=false" @confirm="timeSubmit"
- @cancel="timeShow=false" v-model="timeStamp" mode="date"></u-datetime-picker>
- </view>
- </template>
- <script>
- import {
- orderPage,
- orderPageCount,
- page
- } from "@/api/order/order.js"
- import {
- areaTree
- } from "@/api/point/area"
- import {
- linePage,
- } from "@/api/point/line"
- export default {
- data() {
- return {
- keyword: '',
- orderListlength: '',
- orderList: [],
- orderCount: {},
- loadmoreStatus: 'loadmore',
- isEmpty: false,
- page: 1, //当前分页
- size: 10, //分页数据条数
- mode: 'single',
- screenShow: false,
- actionSheetShow: false,
- currentDate: '',
- nextDate: '',
- preDate: '',
- date: '',
- actions: [],
- title: '',
- zeroOrderName: true,
- zeroOrderList: [{
- type: false,
- name: '否'
- }, {
- type: true,
- name: '是'
- }],
- equipmentTypename: '',
- equipmentTypeList: [{
- type: '',
- name: '全部'
- }, {
- type: 1,
- name: '开门柜'
- }, {
- type: 2,
- name: '重力柜'
- }],
- administrativeDivisionname: '',
- administrativeDivisionList: [{
- type: 'xzqy',
- name: '全部'
- }, {
- type: 'xzqy',
- name: '省市区三级联动'
- }],
- routename: '',
- routeList: [{
- type: 'lx',
- name: '全部'
- }, {
- type: 'lx',
- name: '路线1'
- }, {
- type: 'lx',
- name: '路线2'
- }],
- orderStatusname: '',
- orderStatusList: [{
- type: '',
- name: '全部'
- }, {
- type: 1,
- name: '交易中'
- }, {
- type: 2,
- name: '交易异常'
- },
- {
- type: 3,
- name: '交易取消'
- },
- {
- type: 4,
- name: '交易完成'
- },
- {
- type: 5,
- name: '交易关闭'
- },
- {
- type: 6,
- name: '下次补单'
- },
- {
- type: 7,
- name: '支付中'
- }
- ],
- abnormalStatename: '',
- abnormalStateList: [{
- type: '',
- name: '全部'
- }, {
- type: 2,
- name: '发起识别失败'
- }, {
- type: 3,
- name: '未拿商品'
- }, {
- type: 4,
- name: '无法识别'
- },
- {
- type: 5,
- name: '故意遮挡'
- }, {
- type: 6,
- name: '柜中无此sku'
- }, {
- type: 9,
- name: '异物拿放'
- }, {
- type: 10,
- name: '疑似设备故障'
- },
- {
- type: 11,
- name: '支付失败'
- }, {
- type: 12,
- name: '超时'
- },
- {
- type: 8,
- name: '其他告警'
- }
- ],
- pullBlackOperationname: '',
- pullBlackOperationList: [{
- type: 'lhcz',
- name: '全部'
- }, {
- type: 'lhcz',
- name: '是'
- }, {
- type: 'lhcz',
- name: '否'
- }],
- salesPromotionname: '',
- salesPromotionList: [{
- type: 'cxhd',
- name: '全部'
- }, {
- type: 'cxhd',
- name: '双十一活动'
- }],
- searchQuery: {
- orderDate: '', //日期
- deviceSearch: '', //搜索关键字
- id: '', //订单编号
- phone: '', //手机号码
- payOrderNo: '', //支付单号
- deviceType: '', //设备类型
- regionName: '', //区域
- merLineId: '', //线路
- payStatus: '', //订单状态
- riskType: '', //异常订单类型
- showZero: false, //零元单
- },
- showQuery: {
- deviceType: '',
- merLineId: '',
- payStatus: '',
- riskType: '',
- showZero: '',
- },
- pickerType: null,
- minDate: null,
- // 编辑弹框
- areaShow: false,
- areaList: [], //区域数据
- timeShow: false, //时间选择弹框
- timeStamp: new Date(), //时间picker显示时间
- noLine: false, //是否有线路
- dayNum: 0, //日期
- fullHeight: 0,
- tabList: [{
- name: '全部'
- },
- {
- name: '未支付'
- }
- ],
- current: 0,
- }
- },
- onLoad() {
- let _this = this;
- const query = uni.createSelectorQuery().in(this);
- query.select(".scrollview").boundingClientRect((data) => {
- uni.getSystemInfo({
- success(res) {
- // 针对iPhone X等机型底部安全距离做适配
- const model = res.model;
- const modelInclude = [
- "iPhone X",
- 'iPhone XR',
- "iPhone XS",
- "iPhone XS MAX",
- "iPhone 12/13 mini",
- "iPhone 12/13 (Pro)",
- "iPhone 12/13 Pro Max",
- "iPhone 14 Pro Max"
- ];
- let safeDistance = modelInclude.includes(model)
- //动态设置商品区域高度
- console.log(res.windowHeight, data.top)
- if (safeDistance) {
- _this.fullHeight = res.windowHeight - data.top - 40 + 'px';
- } else {
- _this.fullHeight = res.windowHeight - data.top + 'px';
- }
- },
- });
- }).exec();
- this.currentDate = new Date();
- this.minDate = '2023-03-10'
- this.searchQuery.orderDate = uni.$u.timeFormat(this.currentDate, 'yyyy-mm-dd')
- this.getpage()
- //改为分页接口获取 this.getCountData()
- },
- methods: {
- // 时间选择
- timeSubmit(e) {
- this.searchQuery.orderDate = uni.$u.timeFormat(e.value, 'yyyy-mm-dd')
- this.timeShow = false
- this.reset()
- this.getpage()
- //改为分页接口获取 this.getCountData()
- },
- tabClick(e) {
- this.current = e.index
- if (this.current == 0) {
- this.searchQuery.payStatus = ''
- } else {
- this.searchQuery.payStatus = 1
- }
- this.reset()
- this.getpage()
- },
- //获取区域树
- getAreaTree() {
- areaTree().then(res => {
- this.areaList = res.data
- })
- },
- areaClose() {
- this.areaShow = false
- },
- //区域选择提交
- areaSubmit(res) {
- this.searchQuery.regionName = res.name;
- this.searchQuery.merLineId = null;
- this.showQuery.merLineId = null;
- this.getLineOption(res.name)
- this.areaClose()
- },
- //获取线路options
- getLineOption(regionName) {
- linePage({
- page: {
- current: 1,
- size: 1000,
- },
- regionName: regionName
- }).then(res => {
- let data = res.data.records;
- if (data.length > 0) {
- this.noLine = false;
- let newData = data.map(i => {
- return {
- type: i.id,
- name: i.lineName
- }
- })
- this.actions = newData;
- } else {
- this.noLine = true; //没有线路
- this.actions = [];
- }
- })
- },
- actionsheetChange(type) {
- this.pickerType = type;
- if (type == 'sblx') {
- this.actions = this.equipmentTypeList
- this.title = '请选择设备类型'
- this.actionSheetShow = true
- }
- if (type == 'xzqy') {
- this.areaShow = true;
- }
- if (type == 'lx') {
- if (this.searchQuery.regionName) {
- if (!this.noLine) {
- this.title = '请选择路线'
- this.actionSheetShow = true
- } else {
- this.$modal.msg('当前区域未建立线路~')
- }
- } else {
- this.$modal.msg('请先选择区域~')
- }
- }
- if (type == 'ddzt') {
- this.actions = this.orderStatusList
- this.title = '请选择订单状态'
- this.actionSheetShow = true
- }
- if (type == 'yczt') {
- this.actions = this.abnormalStateList
- this.title = '请选择异常状态'
- this.actionSheetShow = true
- }
- if (type == 'lhcz') {
- this.actions = this.pullBlackOperationList
- this.title = '请选择拉黑操作'
- this.actionSheetShow = true
- }
- if (type == 'cxhd') {
- this.actions = this.salesPromotionList
- this.title = '请选择促销活动'
- this.actionSheetShow = true
- }
- },
- details(item) {
- this.$tab.navigateTo(`/pages/order/orderDetails?id=${item.id}&createTime=${item.createTime}`)
- },
- actionsheetSelect(e) {
- switch (this.pickerType) {
- case 'sblx':
- this.searchQuery.deviceType = e.type
- this.showQuery.deviceType = e.name
- break;
- case 'xzqy':
- this.searchQuery.regionName = e.name
- break;
- case 'lx':
- this.searchQuery.merLineId = e.type
- this.showQuery.merLineId = e.name
- break;
- case 'ddzt':
- this.searchQuery.payStatus = e.type
- this.showQuery.payStatus = e.name
- break;
- case 'yczt':
- this.searchQuery.riskType = e.type
- this.showQuery.riskType = e.name
- break;
- // case 'lhcz':
- // this.pullBlackOperationname = e.name
- // break;
- // case 'cxhd':
- // this.salesPromotionname = e.name
- // break;
- default:
- break;
- }
- },
- close() {
- this.screenShow = false
- },
- confirm(e) {
- this.searchQuery.orderDate = e[0]
- this.show = false
- this.search()
- //改为分页接口获取 this.getCountData()
- },
-
- //是否展示零元单
- showZeroChange(){
- this.search()
- },
-
- thedaybefore() {
- this.dayNum--
- this.preDate = new Date(this.currentDate.getTime() + this.dayNum * (24 * 60 * 60 * 1000)); //前一天
- this.searchQuery.orderDate = uni.$u.timeFormat(this.preDate, 'yyyy-mm-dd')
- //改为分页接口获取 this.getCountData()
- this.search()
- },
- thenextday() {
- this.dayNum++
- this.nextDate = new Date(this.currentDate.getTime() + this.dayNum * (24 * 60 * 60 * 1000)); //后一天
- this.searchQuery.orderDate = uni.$u.timeFormat(this.nextDate, 'yyyy-mm-dd')
- //改为分页接口获取 this.getCountData()
- this.search()
- },
- //点击筛选
- screen() {
- this.screenShow = true
- this.getAreaTree()
- },
- //统计数据
- // getCountData() {
- // let params = {
- // orderDate: this.searchQuery.orderDate
- // }
- // Object.assign(params)
- // orderPageCount(params).then(res => {
- // let data = res.data;
- //
- // this.orderCount = data
- // })
- // },
- //获取订单列表
- getpage() {
- let params = {
- page: {
- current: this.page,
- size: this.size
- }
- }
- if (this.current == 0) {
- Object.assign(params, this.searchQuery)
- } else {
- let obj = JSON.parse(JSON.stringify(this.searchQuery))
- obj.orderDate = ''
- Object.assign(params, obj)
- }
- page(params).then(res => {
- let data = res.data.records;
- if (data.length < 10) {
- this.loadmoreStatus = "nomore"
- } else {
- this.loadmoreStatus = "loadmore"
- }
- this.orderCount.orderNum = res.data.orderNum;
- this.orderCount.orderTotalAmount = res.data.orderTotalAmount;
- this.orderList = this.orderList.concat(data)
- })
- },
- // 搜索
- search() {
- this.reset()
- this.getpage()
- },
- // 重置数据
- reset() {
- this.loadmoreStatus == 'loadmore'
- this.page = 1;
- this.size = 10;
- this.orderList = [];
- },
- // 触底加载
- scrolltolower() {
- if (this.loadmoreStatus == 'nomore') return
- this.page++
- this.getpage()
- },
- sure() {
- this.reset()
- this.getpage()
- this.screenShow = false;
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .container {
- .empty {
- margin-top: 40%;
- }
- .martop {
- margin-top: 20rpx;
- }
- .search {
- padding: 24rpx 13rpx;
- background-color: #fff;
- }
-
- .show-zero{
- background-color: #fff;
- color: #777;
- margin-right: 18rpx;
- }
- .tab-wrap {
- background-color: #fff;
- .tab {
- // width: 40%;
- }
- }
- .marleft {
- margin-left: 10rpx;
- }
- .scrollview {
- overflow: hidden;
- }
- .time-choose {
- background-color: #fff;
- .top {
- height: 80rpx;
- color: #fff;
- padding: 0 20rpx;
- background-color: #2C6FF3;
- border-radius: 0px 0px 50rpx 50rpx;
- .con-btn {
- padding: 0 36rpx;
- }
- .date {
- height: 50rpx;
- width: 300rpx;
- border-radius: 10rpx;
- background-color: #fff;
- color: #000;
- padding: 0 20rpx;
- image {
- width: 30rpx;
- height: 30rpx;
- }
- }
- }
- }
- .screen-container {
- background-color: #fff;
- padding: 0 13rpx;
- >view:nth-child(1) {
- font-size: 28rpx;
- font-weight: 500;
- color: #777777;
- }
- }
- .equipment-container {
- margin: 13rpx 13rpx 0;
- padding: 12rpx 20rpx 24rpx;
- border-radius: 14rpx;
- background-color: #fff;
- box-shadow: 0px 0px 10rpx 0px rgba(174, 201, 255, 0.2);
- .sb-box {
- padding: 24rpx 18rpx;
- background-color: #f5f8fb;
- border-radius: 8rpx;
- margin-top: 12rpx;
- }
- .title {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- >text {
- font-size: 24rpx;
- color: #333;
- }
- }
- .goods-container {
- height: 154rpx;
- margin-top: 14rpx;
- padding: 12rpx 12rpx 12rpx 164rpx;
- box-sizing: border-box;
- position: relative;
- .image-container {
- height: 130rpx;
- width: 130rpx;
- position: absolute;
- left: 12rpx;
- top: 50%;
- transform: translateY(-50%);
- }
- .details-container {
- position: relative;
- padding: 12rpx;
- .goods-name-num {
- .goods-name {
- font-size: 26rpx;
- color: #333;
- font-weight: bold;
- }
- .goods-num {
- font-size: 26rpx;
- color: red;
- margin-right: 40rpx;
- font-weight: bold;
- }
- }
- .goods-price {
- font-size: 28rpx;
- }
- .good-act {
- margin-top: 12rpx;
- }
- .gp-item {
- width: 50%;
- margin-top: 12rpx;
- }
- .goodf-act {
- font-size: 28rpx;
- color: #333;
- margin-top: 12rpx;
- }
- .goods-btn {
- margin-top: 12rpx;
- }
- .refund {
- position: absolute;
- right: 0;
- top: 0;
- background-color: red;
- color: #fff;
- border-radius: 4rpx;
- padding: 0 12rpx;
- line-height: 40rpx;
- font-size: 24rpx;
- }
- }
- }
- .order-detail-item {
- font-size: 28rpx;
- margin-top: 12rpx;
- color: #777;
- >view {
- display: inline-block;
- width: 170rpx;
- }
- }
- }
- .popup-container {
- padding: 20rpx;
- }
- .popup-content {
- padding: 0 24rpx;
- }
- }
- </style>
|