ui修改
|
|
@ -51,7 +51,7 @@ function formatMoney(number, places, symbol, thousand, decimal) {
|
|||
// console.log(places)
|
||||
number = number || 0
|
||||
places = !isNaN((places = Math.abs(places))) ? places : 2
|
||||
symbol = symbol !== undefined ? symbol : '¥'
|
||||
symbol = symbol !== undefined ? symbol : ''
|
||||
thousand = thousand || ','
|
||||
decimal = decimal || '.'
|
||||
var negative = number < 0 ? '-' : '',
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@
|
|||
coupons: [
|
||||
{
|
||||
color: '#9F6DFA', ltBg: "#FFFFFF", height: '180rpx',
|
||||
unit: "¥", number: 5, txt: "满50元可用", title: "全场通用券", desc: "有效期至 2018-05-20",
|
||||
unit: "", number: 5, txt: "满50元可用", title: "全场通用券", desc: "有效期至 2018-05-20",
|
||||
btn: "领取", drawed: "已抢2100张"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
<view class="u-font-28 u-line-1">{{item.name}}</view>
|
||||
<view class="description u-line-2 u-margin-10">{{item.goods.name}}</view>
|
||||
<view class="item-c">
|
||||
<view class="red-price">¥{{item.goods.product.price}} <span class="u-font-xs coreshop-text-through u-margin-left-15">{{item.goods.product.mktprice}}元</span></view>
|
||||
<view class="red-price">{{item.goods.product.price}} <span class="u-font-xs coreshop-text-through u-margin-left-15">{{item.goods.product.mktprice}}元</span></view>
|
||||
<view>
|
||||
<view style="float:left;">
|
||||
<view class="goods-salesvolume red-price u-font-24" v-if="(item.startStatus == 1) && item.lastTime">
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@
|
|||
</view>
|
||||
<view class="price-box">
|
||||
<view class="coreshop-flex coreshop-flex-direction coreshop-align-center">
|
||||
<text class="seckill-current">¥{{item.pinTuanPrice}}</text>
|
||||
<text class="original">¥{{item.pinTuanPrice + item.discountAmount}}</text>
|
||||
<text class="seckill-current">{{item.pinTuanPrice}}</text>
|
||||
<text class="original">{{item.pinTuanPrice + item.discountAmount}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="title"><slot name="titleText"></slot></view>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<view class="u-font-28 coreshop-text-bold u-line-1">{{item.title}}</view>
|
||||
<view class="description u-line-2 u-margin-top-10 u-margin-bottom-10">{{item.description}}</view>
|
||||
<view class="item-c">
|
||||
<view class="red-price">¥{{item.money}}</view>
|
||||
<view class="red-price">{{item.money}}</view>
|
||||
<view>
|
||||
<view style="float:left;">
|
||||
<view class="goods-salesvolume red-price u-font-24" v-if="item.status == 0 && item.lastTime > 0">
|
||||
|
|
|
|||
|
|
@ -293,7 +293,7 @@
|
|||
<view class="content">
|
||||
<view class="coreshop-text-price-view">
|
||||
<text class="coreshop-text-price coreshop-text-red u-margin-right-20">{{ product.price || ''}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray coreshop-text-through u-margin-right-20">¥{{ product.mktprice || ''}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray coreshop-text-through u-margin-right-20">{{ product.mktprice || ''}}</text>
|
||||
<u-tag text="秒杀中" mode="plain" type="error" shape="circle" size="mini"/>
|
||||
</view>
|
||||
<view class="coreshop-text-black u-font-sm flex">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<template>
|
||||
<template>
|
||||
<view class="pageBox">
|
||||
<u-navbar title="团购"></u-navbar>
|
||||
<view class="goods-item" v-for="item in goodsList" :key="item.id" v-if="goodsList.length>0">
|
||||
|
|
@ -18,8 +18,8 @@
|
|||
</view>
|
||||
<view class="price-box">
|
||||
<view class="coreshop-flex coreshop-align-center">
|
||||
<view class="current">¥{{ item.price }}</view>
|
||||
<view class="original">¥{{ item.mktprice }}</view>
|
||||
<view class="current">{{ item.price }}</view>
|
||||
<view class="original">{{ item.mktprice }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-button type="error" class="buy-btn" size="mini" v-if="tabCurrent=='ing'" @click="goGroupBuyingDetail(item.id, item.groupId)">{{ btnType[tabCurrent].name }}</u-button>
|
||||
|
|
|
|||
|
|
@ -385,25 +385,25 @@
|
|||
|
||||
<u-button type="error" size="medium" @click="selectTap(1)" shape="square">
|
||||
<view class="coreshop-flex coreshop-flex-direction coreshop-align-center coreshop-line-height-initial">
|
||||
<text class="price">¥{{ product.price || '0' }}</text>
|
||||
<text class="price">{{ product.price || '0' }}</text>
|
||||
<text>单独购买</text>
|
||||
</view>
|
||||
</u-button>
|
||||
<u-button type="success" size="medium" @click="selectTap(2)" shape="square" v-if="goodsInfo.pinTuanRule.pinTuanStartStatus == 1">
|
||||
<view class="coreshop-flex coreshop-flex-direction coreshop-align-center coreshop-line-height-initial">
|
||||
<text class="price">¥{{ pinTuanPrice || '0' }}</text>
|
||||
<text class="price">{{ pinTuanPrice || '0' }}</text>
|
||||
<text>发起拼团</text>
|
||||
</view>
|
||||
</u-button>
|
||||
<u-button type="primary" size="medium" shape="square" v-if="goodsInfo.pinTuanRule.pinTuanStartStatus == 2">
|
||||
<view class="coreshop-flex coreshop-flex-direction coreshop-align-center coreshop-line-height-initial">
|
||||
<text class="price">¥{{ pinTuanPrice || '0' }}</text>
|
||||
<text class="price">{{ pinTuanPrice || '0' }}</text>
|
||||
<text>即将开团</text>
|
||||
</view>
|
||||
</u-button>
|
||||
<u-button type="default" size="medium" shape="square" v-if="goodsInfo.pinTuanRule.pinTuanStartStatus == 3">
|
||||
<view class="coreshop-flex coreshop-flex-direction coreshop-align-center coreshop-line-height-initial">
|
||||
<text class="price">¥{{ pinTuanPrice || '0' }}</text>
|
||||
<text class="price">{{ pinTuanPrice || '0' }}</text>
|
||||
<text>拼团已结束</text>
|
||||
</view>
|
||||
</u-button>
|
||||
|
|
@ -450,7 +450,7 @@
|
|||
<view class="content">
|
||||
<view class="coreshop-text-price-view">
|
||||
<text class="coreshop-text-price coreshop-text-red u-margin-right-20">{{ price || ''}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray coreshop-text-through">¥{{ product.mktprice || ''}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray coreshop-text-through">{{ product.mktprice || ''}}</text>
|
||||
</view>
|
||||
<view class="coreshop-text-black u-font-sm flex">
|
||||
<view class="u-line-1">已选: {{ product.spesDesc || '无'}}</view>
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@
|
|||
</view>
|
||||
<view class="price-box">
|
||||
<view class="coreshop-flex coreshop-align-center">
|
||||
<view class="current">¥{{ item.pinTuanPrice }}</view>
|
||||
<view class="original">¥{{ item.price }}</view>
|
||||
<view class="current">{{ item.pinTuanPrice }}</view>
|
||||
<view class="original">{{ item.price }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<button class="cu-btn buy-btn" @tap="goPinTuanDetail(item.id,item.pinTuanRule.id)">马上拼</button>
|
||||
|
|
|
|||
|
|
@ -295,7 +295,7 @@
|
|||
<view class="content">
|
||||
<view class="coreshop-text-price-view">
|
||||
<text class="coreshop-text-price coreshop-text-red u-margin-right-20">{{ product.price || ''}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray coreshop-text-through u-margin-right-20">¥{{ product.mktprice || ''}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray coreshop-text-through u-margin-right-20">{{ product.mktprice || ''}}</text>
|
||||
<u-tag text="秒杀中" mode="plain" type="error" shape="circle" size="mini"/>
|
||||
</view>
|
||||
<view class="coreshop-text-black u-font-sm flex">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<template>
|
||||
<template>
|
||||
<view class="pageBox">
|
||||
<u-navbar title="限时秒杀"></u-navbar>
|
||||
<view class="tab-box coreshop-flex coreshop-align-center">
|
||||
|
|
@ -26,8 +26,8 @@
|
|||
</view>
|
||||
<view class=" price-box">
|
||||
<view class="coreshop-flex coreshop-align-center">
|
||||
<view class="current">¥{{ item.price }}</view>
|
||||
<view class="original">¥{{ item.mktprice }}</view>
|
||||
<view class="current">{{ item.price }}</view>
|
||||
<view class="original">{{ item.mktprice }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-button type="error" class="buy-btn" size="mini" v-if="tabCurrent=='ing'" @click="goSeckillDetail(item.id, item.groupId)">{{ btnType[tabCurrent].name }}</u-button>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<template>
|
||||
<template>
|
||||
<view>
|
||||
<u-toast ref="uToast" /><u-no-network></u-no-network>
|
||||
<u-navbar :custom-back="goBack" :title="typeName"></u-navbar>
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
<text>已售{{item.good.buyCount}}</text>
|
||||
</view>
|
||||
<view class='goods-buttom'>
|
||||
<view class="goods-price">¥{{item.good.price}}</view>
|
||||
<view class="goods-price">{{item.good.price}}</view>
|
||||
<view class='choose-specs' @click="specifications($event,item)" data-type='1' :data-goods="item.good.id" :data-id="item.id" data-statu="openspecs">
|
||||
选规格
|
||||
</view>
|
||||
|
|
@ -208,7 +208,7 @@
|
|||
<view class='goods-bottom' v-if="form.type==1">
|
||||
<text class='coreshop-float-right u-font-28 coreshop-text-black'>
|
||||
合计
|
||||
<text class='coreshop-text-red u-font-30'>¥{{goodsTotalMoney}}</text>
|
||||
<text class='coreshop-text-red u-font-30'>{{goodsTotalMoney}}</text>
|
||||
</text>
|
||||
</view>
|
||||
<view class="coreshop-tabbar-height"></view>
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<view class="content">
|
||||
<view class="coreshop-text-price-view">
|
||||
<text class="coreshop-text-price coreshop-text-red u-margin-right-20">{{goodsInfoName}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray">¥{{goodsInfoPrint}}</text>
|
||||
<text class="u-font-sm coreshop-text-gray">{{goodsInfoPrint}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<view class="coreshop-limited-seckill-box coreshop-bg-red">
|
||||
<text class="coreshop-text-price u-font-40">{{ product.price || '0.00' }}结缘</text>
|
||||
<!-- <view class="u-font-xs coreshop-cost-price-num price-4">
|
||||
<view class="coreshop-text-through">原价¥{{ product.mktprice || '0.00'}}</view>
|
||||
<view class="coreshop-text-through">原价{{ product.mktprice || '0.00'}}</view>
|
||||
<view>{{ goodsInfo.buyCount || '0' }} 人已购买</view>
|
||||
</view> -->
|
||||
<view class="u-text-right coreshop-share-right">
|
||||
|
|
@ -334,7 +334,7 @@
|
|||
<view class="content">
|
||||
<view class="coreshop-text-price-view">
|
||||
<text class="coreshop-text-price coreshop-text-red u-margin-right-20">{{ product.price || ''}}结缘</text>
|
||||
<!-- <text class="u-font-sm coreshop-text-gray coreshop-text-through">¥{{ product.mktprice || ''}}</text> -->
|
||||
<!-- <text class="u-font-sm coreshop-text-gray coreshop-text-through">{{ product.mktprice || ''}}</text> -->
|
||||
<!--<text class="cu-tag bg-gradual-red radius sm">
|
||||
<text class="cuIcon-hotfill"/>
|
||||
<text>秒杀中</text>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
.memberBox {
|
||||
.headBox { padding-top: 0; padding-bottom: 72.72rpx; background-image: url('/static/images/common/bg.png'); background-size: cover; background-position: center;
|
||||
.memberBox {
|
||||
.headBox { padding-top: 0; padding-bottom: 72.72rpx; background-image: url('/static/images/common/bg1.png'); background-size: cover; background-position: center;
|
||||
.user-info-box { padding-top: 30rpx;
|
||||
.login-user-view { position: relative; text-align: center;
|
||||
.login-user-avatar-view { position: relative; margin-bottom: 18.18rpx; }
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<template>
|
||||
<template>
|
||||
<view class="memberBox">
|
||||
<u-toast ref="uToast" /><u-no-network></u-no-network>
|
||||
<u-navbar :is-back="true" back-icon-name="scanc" back-icon-color="#000" title="会员中心"></u-navbar>
|
||||
|
||||
<view class="headBox coreshop-bg-red">
|
||||
<view class="headBox coreshop-bg-orange">
|
||||
<!--标题栏-->
|
||||
<!--小程序端不显示-->
|
||||
<!--用户信息-->
|
||||
|
|
@ -178,7 +178,7 @@
|
|||
|
||||
</view>
|
||||
<!--版权组件-->
|
||||
<copyright></copyright>
|
||||
<!-- <copyright></copyright> -->
|
||||
<!-- 登录提示 -->
|
||||
<coreshop-login-modal></coreshop-login-modal>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<template>
|
||||
<template>
|
||||
<view class="orderWrap">
|
||||
<u-navbar title="售后列表"></u-navbar>
|
||||
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
</view>
|
||||
<!-- 订单底部 -->
|
||||
<view class="bottom">
|
||||
<view class="more">退款金额:¥{{item.refundAmount}}</view>
|
||||
<view class="more">退款金额:{{item.refundAmount}}</view>
|
||||
<view class='logistics coreshop-btn' @click="showOrder(item.aftersalesId)">查看详情</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
|
||||
</view>
|
||||
<view class=" u-font-24 refund-tip">
|
||||
可修改,最多¥{{maxRefund}},含发货邮费¥{{costFreight}}
|
||||
可修改,最多{{maxRefund}},含发货邮费{{costFreight}}
|
||||
</view>
|
||||
</view>
|
||||
<view class='coreshop-cell-group u-margin-top-20 u-margin-bottom-20'>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
</view>
|
||||
<view class="head_box u-flex u-row-between">
|
||||
<u-button @click="onFilterDate" shape="square" size="mini" class="date-btn">{{ selDateText }}<u-icon name="arrow-down" class="u-margin-left-20"></u-icon></u-button>
|
||||
<view class="total-box">收入¥{{ totalMoney || '0.00' }}</view>
|
||||
<view class="total-box">收入{{ totalMoney || '0.00' }}</view>
|
||||
</view>
|
||||
<!-- 状态分类 -->
|
||||
<!--<view class="coreshop-flex coreshop-align-center nav-box">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.direct-box { margin: 20rpx;
|
||||
.direct-box { margin: 20rpx;
|
||||
.direct-item { width: 341rpx; height: 117rpx; background: #ffffff; border-radius: 20rpx; padding: 20rpx;
|
||||
.item-title { font-size: 22rpx; font-weight: 500; color: #999999; margin-bottom: 6rpx; }
|
||||
.item-value { font-size: 38rpx; font-weight: 600; color: #333333; }
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
.goods-sku { font-size: 24rpx; font-weight: 400; color: #666666; }
|
||||
.goods-price { font-size: 30rpx; font-weight: 500; color: #333333;
|
||||
.goods-state { line-height: 30rpx; padding: 0 10rpx; background: #f1eeff; border: 1rpx solid #e54d42; border-radius: 30rpx; margin-left: 20rpx; font-size: 20rpx; color: #e54d42; }
|
||||
&::before { content: '¥'; font-size: 20rpx; }
|
||||
&::before { content: ''; font-size: 20rpx; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
.num-price { font-size: 24rpx; font-weight: 400; color: #999999; }
|
||||
.name { font-size: 24rpx; font-weight: 400; color: #999999; }
|
||||
.commission-num { font-size: 30rpx; font-weight: 400; color: #eb2b3d;
|
||||
&::before { content: '¥'; font-size: 22rpx; }
|
||||
&::before { content: ''; font-size: 22rpx; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<view class="order-time">{{ $u.timeFormat(item.createTime, ' yyyy.mm.dd hh:MM ') }}</view>
|
||||
</view>
|
||||
<view class="total-box u-flex u-row-between px20">
|
||||
<view class="num-price">提成:¥{{ item.amount || '0'}}</view>
|
||||
<view class="num-price">提成:{{ item.amount || '0'}}</view>
|
||||
<view class="coreshop-flex coreshop-align-center">{{item.isSettlement==1?'已结算':item.isSettlement==2?'未结算':'已退款'}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
</view>
|
||||
<view class='coreshop-cell-item'>
|
||||
<view class='coreshop-cell-item-bd withdrawcash-input'>
|
||||
<text>¥</text><input type="number" focus v-model="money" />
|
||||
<text></text><input type="number" focus v-model="money" />
|
||||
</view>
|
||||
</view>
|
||||
<view class='coreshop-cell-item'>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
<view class="head_box u-flex u-row-between">
|
||||
<u-button @click="onFilterDate" shape="square" size="mini" class="date-btn">{{ selDateText }}<u-icon name="arrow-down" class="u-margin-left-20"></u-icon></u-button>
|
||||
<view class="total-box">收入¥{{ totalMoney || '0.00' }}</view>
|
||||
<view class="total-box">收入{{ totalMoney || '0.00' }}</view>
|
||||
</view>
|
||||
<!-- 状态分类 -->
|
||||
<!--<view class="coreshop-flex coreshop-align-center nav-box">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.direct-box { margin: 20rpx;
|
||||
.direct-box { margin: 20rpx;
|
||||
.direct-item { width: 341rpx; height: 117rpx; background: #ffffff; border-radius: 20rpx; padding: 20rpx;
|
||||
.item-title { font-size: 22rpx; font-weight: 500; color: #999999; margin-bottom: 6rpx; }
|
||||
.item-value { font-size: 38rpx; font-weight: 600; color: #333333; }
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
.goods-sku { font-size: 24rpx; font-weight: 400; color: #666666; }
|
||||
.goods-price { font-size: 30rpx; font-weight: 500; color: #333333;
|
||||
.goods-state { line-height: 30rpx; padding: 0 10rpx; background: #f1eeff; border: 1rpx solid #e54d42; border-radius: 30rpx; margin-left: 20rpx; font-size: 20rpx; color: #e54d42; }
|
||||
&::before { content: '¥'; font-size: 20rpx; }
|
||||
&::before { content: ''; font-size: 20rpx; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
.num-price { font-size: 24rpx; font-weight: 400; color: #999999; }
|
||||
.name { font-size: 24rpx; font-weight: 400; color: #999999; }
|
||||
.commission-num { font-size: 30rpx; font-weight: 400; color: #eb2b3d;
|
||||
&::before { content: '¥'; font-size: 22rpx; }
|
||||
&::before { content: ''; font-size: 22rpx; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<view class="order-time">{{ $u.timeFormat(item.createTime, ' yyyy.mm.dd hh:MM ') }}</view>
|
||||
</view>
|
||||
<view class="total-box u-flex u-row-between px20">
|
||||
<view class="num-price">佣金:¥{{ item.amount || '0'}}</view>
|
||||
<view class="num-price">佣金:{{ item.amount || '0'}}</view>
|
||||
<view class="coreshop-flex coreshop-align-center">{{item.isSettlement==1?'已结算':item.isSettlement==2?'未结算':'已退款'}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<view class='invite-w-bot'>
|
||||
<view bindtap='commission' @click="toMoney">
|
||||
<text class="cuIcon-coin coreshop-text-red" style="font-size: 44rpx;"></text>
|
||||
<text class='invite-w-bot-red'>¥{{money}}元</text>
|
||||
<text class='invite-w-bot-red'>{{money}}元</text>
|
||||
<text class='invite-w-bot-gray'>邀请收益</text>
|
||||
</view>
|
||||
<view bindtap='recommendUserList' @click="toList">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// 遮罩
|
||||
// 遮罩
|
||||
.mask { width: 100%; height: 100%; position: fixed; z-index: 20; }
|
||||
// 商户信息
|
||||
.head-box { position: relative; height: 320rpx; background-image: url('/static/images/common/bg.png'); background-size: cover; background-position: center; background-color: #19be6b; color: #ffffff;
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
.order-list { background: #fff; margin: 20rpx 0; padding: 0 20rpx;
|
||||
.order-bottom { height: 80rpx; /*padding: 0 20rpx;*/ .total-price-title { color: #999999; font-size: 24rpx; }
|
||||
.total-price { color: #333; font-size: 26rpx;
|
||||
&::before { content: '¥'; font-size: 20rpx; }
|
||||
&::before { content: ''; font-size: 20rpx; }
|
||||
}
|
||||
}
|
||||
.order-head { /* padding: 0 25rpx;*/ height: 77rpx; border-bottom: 1rpx solid #dfdfdf;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!-- 商家中心 -->
|
||||
<!-- 商家中心 -->
|
||||
<template>
|
||||
<view class="">
|
||||
<u-toast ref="uToast" /><u-no-network></u-no-network>
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
{{ item.addon ? item.addon : '' }}
|
||||
</view>
|
||||
<view class="order-goods coreshop-flex coreshop-align-center ">
|
||||
<text class="order-price">¥{{ item.amount || 0 }}</text>
|
||||
<text class="order-price">{{ item.amount || 0 }}</text>
|
||||
<!--<button class="cu-btn status-btn" v-if="detail.status_name">{{ item.status_name }}</button>-->
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// 遮罩
|
||||
// 遮罩
|
||||
.mask { width: 100%; height: 100%; position: fixed; z-index: 20; }
|
||||
// 商户信息
|
||||
.head-box { position: relative; height: 320rpx; background-image: url('/static/images/common/bg.png'); background-size: cover; background-position: center; background-color: #19be6b; color: #ffffff;
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
.order-list { background: #fff; margin: 20rpx 0; padding: 0 20rpx;
|
||||
.order-bottom { height: 80rpx; /*padding: 0 20rpx;*/ .total-price-title { color: #999999; font-size: 24rpx; }
|
||||
.total-price { color: #333; font-size: 26rpx;
|
||||
&::before { content: '¥'; font-size: 20rpx; }
|
||||
&::before { content: ''; font-size: 20rpx; }
|
||||
}
|
||||
}
|
||||
.order-head { /* padding: 0 25rpx;*/ height: 77rpx; border-bottom: 1rpx solid #dfdfdf;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<template>
|
||||
<template>
|
||||
<view>
|
||||
<u-toast ref="uToast" /><u-no-network></u-no-network>
|
||||
<u-navbar title="订单查询"></u-navbar>
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
{{ item.addon ? item.addon : '' }}
|
||||
</view>
|
||||
<view class="order-goods coreshop-flex coreshop-align-center ">
|
||||
<text class="order-price">¥{{ item.amount || 0 }}</text>
|
||||
<text class="order-price">{{ item.amount || 0 }}</text>
|
||||
<!--<button class="cu-btn status-btn" v-if="detail.status_name">{{ item.status_name }}</button>-->
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
<view class="delivery-time">BN码:{{v.bn}}</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="price">¥{{ v.price }}</view>
|
||||
<view class="price">{{ v.price }}</view>
|
||||
<view class="number">x{{ v.nums }}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
<view class="success u-font-24 u-margin-top-10 u-margin-bottom-10 coreshop-text-yellow">订单号:{{v.orderId}}</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="price">¥{{ v.price }}</view>
|
||||
<view class="price">{{ v.price }}</view>
|
||||
<view class="number">x{{ v.nums }}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<template>
|
||||
<template>
|
||||
<view>
|
||||
<u-toast ref="uToast" /><u-no-network></u-no-network>
|
||||
<u-navbar title="订单列表"></u-navbar>
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
</view>
|
||||
<view class="right">
|
||||
<view class="price">
|
||||
¥{{ goods.price }}
|
||||
{{ goods.price }}
|
||||
</view>
|
||||
<view class="number">x{{ goods.nums }}</view>
|
||||
</view>
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
<view class="total">
|
||||
共{{ order.items.length }}件商品 合计:
|
||||
<text class="total-price">
|
||||
¥{{ order.orderAmount }}
|
||||
{{ order.orderAmount }}
|
||||
</text>
|
||||
</view>
|
||||
<view class="bottom">
|
||||
|
|
|
|||
BIN
CoreCms.Net.Uni-App/CoreShop/static/images/common/bg1.png
Normal file
|
After Width: | Height: | Size: 343 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
|
@ -1,4 +1,4 @@
|
|||
/*page { background: #f6f7f9; }*/
|
||||
/*page { background: #f6f7f9; }*/
|
||||
page, .bg-page { background: #f7f7f7; }
|
||||
|
||||
|
||||
|
|
@ -137,7 +137,7 @@ page, .bg-page { background: #f7f7f7; }
|
|||
.coreshop-line-height-initial { line-height: initial }
|
||||
|
||||
/*人民币符号*/
|
||||
.coreshop-text-price::before { content: "¥"; font-size: 80%; margin-right: 4upx; }
|
||||
.coreshop-text-price::before { content: ""; font-size: 80%; margin-right: 4upx; }
|
||||
|
||||
/*字体格式*/
|
||||
.coreshop-text-bold { font-weight: bold; }
|
||||
|
|
|
|||