[本时生活小程序-线上备份]
This commit is contained in:
327
pages/rights/rights.js
Normal file
327
pages/rights/rights.js
Normal file
@@ -0,0 +1,327 @@
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
address : '', //默认收货地址
|
||||
allAddress : '', //收货地址列表
|
||||
groupId : '', //权益id
|
||||
detail : '', //权益详情
|
||||
amount : '', //总金额
|
||||
moreAmount : '', //产品金额
|
||||
score : '', //应付总积分
|
||||
freight : '', //运费
|
||||
num : 1, //购买的数量
|
||||
content : '', //内容介绍
|
||||
notification: '', //重要提示
|
||||
remark : '', //使用须知
|
||||
noticeShow : false, //须知显示状态
|
||||
addressShow : false, //收货地址显示
|
||||
getType : '', //是否显示自提
|
||||
platIndex : 0, //选择提交方式下标
|
||||
isdeliver : '',
|
||||
platformCp : [], //选择提交数组
|
||||
pointMoreShow: false,
|
||||
from : '',
|
||||
typeNo : '',
|
||||
uniUrl : '', //跳转h5页面
|
||||
openid : '',
|
||||
webShow : false,
|
||||
rightsTap : false,
|
||||
disabled : false
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
this.setData({
|
||||
groupId : options.rightsId || options.id,
|
||||
typeWeb : options.type,
|
||||
getType : options.getType,
|
||||
openid : options.openid || ''
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
// 获取详情
|
||||
this.rightsInfo();
|
||||
},
|
||||
|
||||
/**
|
||||
* 详情
|
||||
*/
|
||||
rightsInfo() {
|
||||
wx.$api.index.rightShow(this.data.groupId, this.data.address.id, this.data.num, this.data.isdeliver).then(res=>{
|
||||
let obj = res.data.detail.express
|
||||
let defGet = res.data.detail.def_get
|
||||
let arr = new Array
|
||||
|
||||
arr = Object.keys(obj).map(val=>{
|
||||
return { ...obj[val], ...{key: val} }
|
||||
})
|
||||
|
||||
this.setData({
|
||||
address : res.data.address,
|
||||
allAddress : res.data.all_address,
|
||||
detail : res.data.detail,
|
||||
num : res.data.num,
|
||||
freight : res.data.freight,
|
||||
platformCp : arr,
|
||||
from : res.data.detail.from,
|
||||
amount : res.data.total,
|
||||
moreAmount : res.data.amount,
|
||||
score : res.data.score,
|
||||
typeNo : res.data.detail.type_no,
|
||||
remark : res.data.detail.remark.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"'),
|
||||
content : res.data.detail.content.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"'),
|
||||
notification: res.data.detail.notification.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"'),
|
||||
})
|
||||
|
||||
if(this.data.openid == '') {
|
||||
this.setData({
|
||||
openid: res.data.detail.union_openid
|
||||
})
|
||||
}
|
||||
|
||||
if(res.data.detail.from == 'unionpay') {
|
||||
if(res.data.detail.union_openid == '') {
|
||||
wx.$api.index.unionpay('/pages/rights/rights?id=' + res.data.detail.right_id, 'wxmini', this.data.groupId).then(res=>{
|
||||
this.setData({
|
||||
uniUrl : encodeURIComponent(res.data)
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
}).catch(err=>{
|
||||
if(!err.login){
|
||||
wx.showModal({
|
||||
title : '用户登录已过期',
|
||||
content : '请重新登录',
|
||||
showCancel : false,
|
||||
success : res => {
|
||||
if (res.confirm) {
|
||||
wx.redirectTo({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 商品数量加减
|
||||
*/
|
||||
goodsNumber(e){
|
||||
let num = this.data.num
|
||||
if (e.currentTarget.dataset.type == 'plus'){
|
||||
num ++;
|
||||
}else{
|
||||
if (num > 1){
|
||||
num --;
|
||||
}else{
|
||||
wx.showToast({
|
||||
title : '商品数量不能小于1',
|
||||
icon : 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
this.setData({
|
||||
num : num
|
||||
})
|
||||
|
||||
// 获取详情
|
||||
this.rightsInfo()
|
||||
},
|
||||
/**
|
||||
* 输入商品数量
|
||||
*/
|
||||
goodsNumberInput(e){
|
||||
let goodsNum = e.detail.value
|
||||
if (goodsNum > 0){
|
||||
this.setData({
|
||||
num : goodsNum
|
||||
})
|
||||
}else{
|
||||
wx.showToast({
|
||||
title : '商品数量不能小于1',
|
||||
icon : 'none'
|
||||
})
|
||||
this.setData({
|
||||
num : goodsNum
|
||||
})
|
||||
}
|
||||
|
||||
// 获取详情
|
||||
this.rightsInfo()
|
||||
},
|
||||
|
||||
/**
|
||||
* 须知展开收起状态
|
||||
*/
|
||||
noticeTap() {
|
||||
this.setData({
|
||||
noticeShow : !this.data.noticeShow
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 选择提交方式
|
||||
*/
|
||||
platBind(e) {
|
||||
this.setData({
|
||||
platIndex : e.detail.value,
|
||||
isdeliver : this.data.platformCp[e.detail.value].value
|
||||
})
|
||||
// 获取详情
|
||||
this.rightsInfo()
|
||||
},
|
||||
|
||||
/**
|
||||
* 收货地址弹出
|
||||
*/
|
||||
addressTap() {
|
||||
this.setData({
|
||||
addressShow : true
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 收货地址收起
|
||||
*/
|
||||
addressHide() {
|
||||
this.setData({
|
||||
addressShow : false
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 选择收货地址
|
||||
*/
|
||||
selectAddress(e){
|
||||
let new_addressId = e.currentTarget.dataset.id,
|
||||
addressId = this.data.address.id
|
||||
if (new_addressId != addressId) {
|
||||
this.setData({
|
||||
address : e.currentTarget.dataset.index,
|
||||
addressShow : false
|
||||
})
|
||||
}else{
|
||||
this.setData({
|
||||
addressShow : false
|
||||
})
|
||||
}
|
||||
|
||||
// 获取详情
|
||||
this.rightsInfo()
|
||||
},
|
||||
|
||||
/**
|
||||
* 普通商品支付提交
|
||||
*/
|
||||
ordinary() {
|
||||
this.submitOrder();
|
||||
this.setData({
|
||||
disabled : true
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 只有银联商品获取
|
||||
*/
|
||||
unionOrder() {
|
||||
// 更新openid
|
||||
wx.$api.index.unionCode(this.data.openid).then(res=>{})
|
||||
this.submitOrder();
|
||||
},
|
||||
|
||||
/**
|
||||
* 支付提交
|
||||
*/
|
||||
submitOrder() {
|
||||
if(this.data.isdeliver.length == 0) {
|
||||
this.setData({
|
||||
isdeliver: this.data.detail.def_get
|
||||
})
|
||||
}
|
||||
let right_id = this.data.detail.right_id,
|
||||
address_id = this.data.address.id,
|
||||
is_deliver = this.data.isdeliver,
|
||||
qty = this.data.num
|
||||
|
||||
wx.$api.index.rightStore(right_id, address_id, is_deliver, qty).then(res=>{
|
||||
if(res.data.canPay == false) {
|
||||
wx.showToast({
|
||||
title : '支付成功',
|
||||
icon : 'success',
|
||||
duration: 2000
|
||||
})
|
||||
setTimeout(()=>{
|
||||
wx.reLaunch({
|
||||
url: '/pages/order/order'
|
||||
})
|
||||
},3000)
|
||||
this.setData({
|
||||
rightsTap: true
|
||||
})
|
||||
}else {
|
||||
wx.$api.index.wechat(res.data.trade_no).then(res=>{
|
||||
let payInfo = JSON.parse(res.data)
|
||||
wx.requestPayment({
|
||||
timeStamp: payInfo.timeStamp,
|
||||
nonceStr : payInfo.nonceStr,
|
||||
package : payInfo.package,
|
||||
paySign : payInfo.paySign,
|
||||
signType : payInfo.signType,
|
||||
success : res=>{
|
||||
if(res.errMsg == "requestPayment:ok"){
|
||||
wx.showToast({
|
||||
title: '支付成功',
|
||||
icon : 'success'
|
||||
})
|
||||
setTimeout(()=>{
|
||||
wx.reLaunch({
|
||||
url: '/pages/coupon/coupon?type=couponPublic'
|
||||
})
|
||||
},3000)
|
||||
}
|
||||
},
|
||||
fail : res=>{
|
||||
wx.reLaunch({
|
||||
url: '/pages/order/order?stateType=unpay'
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 新增收货地址
|
||||
*/
|
||||
addSelect() {
|
||||
wx.navigateTo({
|
||||
url: '/pages/address/address?type=selectAddress'
|
||||
})
|
||||
this.setData({
|
||||
addressShow : false
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 新增收货地址
|
||||
*/
|
||||
pointMoreTap() {
|
||||
this.setData({
|
||||
pointMoreShow : !this.data.pointMoreShow
|
||||
})
|
||||
}
|
||||
})
|
||||
6
pages/rights/rights.json
Normal file
6
pages/rights/rights.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"usingComponents" : {},
|
||||
"navigationBarTitleText" : "卡券权益",
|
||||
"navigationBarBackgroundColor": "#151619",
|
||||
"navigationBarTextStyle" : "white"
|
||||
}
|
||||
204
pages/rights/rights.wxml
Normal file
204
pages/rights/rights.wxml
Normal file
@@ -0,0 +1,204 @@
|
||||
<!-- 按钮 -->
|
||||
<block wx:if="{{from == 'unionpay'}}">
|
||||
<navigator class="rightsBtn" hover-class="none" url="/pages/webView/webView?url={{uniUrl}}"
|
||||
wx:if="{{openid == ''}}">
|
||||
<text>立即领取</text>
|
||||
</navigator>
|
||||
<view class="rightsBtn {{rightsTap == true ? 'active' : ''}}" wx:else>
|
||||
<text wx:if="{{rightsTap == true}}">立即购买</text>
|
||||
<text wx:else bindtap="unionOrder">立即购买</text>
|
||||
</view>
|
||||
</block>
|
||||
<view class="rightsBtn" bindtap="ordinary" wx:else>
|
||||
<button disabled="{{disabled}}">立即购买</button>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 重要提示 -->
|
||||
<view class="rightsPoint">
|
||||
<view class="rightsPoint-cont">
|
||||
<view class="rightsPoint-top">
|
||||
<image src="/static/icon/Point_icon.png"></image>
|
||||
<text>重要提示</text>
|
||||
</view>
|
||||
<view class="rightsPoint-text {{pointMoreShow ? 'active' : ''}}">
|
||||
<rich-text nodes="{{notification}}"></rich-text>
|
||||
</view>
|
||||
<view class="pointMore" bindtap="pointMoreTap">
|
||||
<text>{{pointMoreShow == true ? '收起' : '展开'}}</text>
|
||||
<image src="{{pointMoreShow == true ? '/static/img/pointMore-up.png' : '/static/img/pointMore.png'}}">
|
||||
</image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view style="padding-bottom: 220px">
|
||||
<view class="cont">
|
||||
<view class="contBack">
|
||||
<image class="classBack" src="/static/img/class_back_01.png" mode="scaleToFill"></image>
|
||||
<view class="classCircle"></view>
|
||||
<view class="rightsCont">
|
||||
<view class="rightsCont-tips">
|
||||
{{detail.four_title}}
|
||||
</view>
|
||||
<scroll-view scroll-x class="welfareCont-top" scroll-with-animation>
|
||||
<view class="welfareCont-list-img" wx:for="{{detail.logos}}" wx:key="logos">
|
||||
<image src="{{item}}" mode="aspectFill"></image>
|
||||
</view>
|
||||
</scroll-view>
|
||||
<view class="nowrap rightsCont-btn">
|
||||
{{detail.three_title}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="rightsNumber">
|
||||
<text>数量</text>
|
||||
<view class="rightsAdd">
|
||||
<view class="rightsAdd-btn" bindtap="goodsNumber" data-type="remove">-</view>
|
||||
<input class="rightsAdd-input" data-num="{{num}}" value="{{num}}" type="number" maxlength='4'
|
||||
bindblur="goodsNumberInput"></input>
|
||||
<view class="rightsAdd-btn" bindtap="goodsNumber" data-type="plus">+</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 规格 -->
|
||||
<view class="rightsList" style="margin-top:50rpx">
|
||||
<view class="rightsLabel">
|
||||
<view class="rightsLabel-left">产品金额</view>
|
||||
<view class="rightsLabel-right">¥{{moreAmount}}</view>
|
||||
</view>
|
||||
<view class="rightsLabel" wx:if="{{platIndex == 1}}">
|
||||
<view class="rightsLabel-left">电子券</view>
|
||||
<view class="rightsLabel-right">{{detail.qty}}张</view>
|
||||
</view>
|
||||
<!-- <view class="rightsLabel">
|
||||
<view class="rightsLabel-left">需要兑换的积分</view>
|
||||
<view class="rightsLabel-right">{{detail.score}}</view>
|
||||
</view> -->
|
||||
<!-- <view class="rightsLabel">
|
||||
<view class="rightsLabel-left">卡余额抵扣</view>
|
||||
<view class="rightsLabel-right">-¥0.00</view>
|
||||
</view> -->
|
||||
<!-- <view class="rightsLabel">
|
||||
<view class="rightsLabel-left">总金额</view>
|
||||
<view class="rightsLabel-right">¥{{detail.price}}</view>
|
||||
</view> -->
|
||||
<block wx:if="{{detail.type == 'physical'}}">
|
||||
<view class="rightsLabel">
|
||||
<view class="rightsLabel-left">请选择提交方式</view>
|
||||
<view class="rightsLabel-right rightsLabel-range">
|
||||
<picker range="{{platformCp}}" range-key="name" bindchange="platBind">
|
||||
<view class="tabs-text">
|
||||
{{platformCp[platIndex].name}}
|
||||
</view>
|
||||
</picker>
|
||||
<image class="rightsLabel-row" src="/static/icon/rightsArrow.png"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="rightsLabel rightsLabel-address" wx:if="{{platformCp[platIndex].name == '快递'}}">
|
||||
<view class="rightsLabel-left">收货地址</view>
|
||||
<block wx:if="{{address != ''}}">
|
||||
<view class="rightsLabel-right" bindtap="addressTap">
|
||||
<text class="nowrap">{{address.all_address}}</text>
|
||||
<image class="rightsLabel-row" src="/static/icon/rightsArrow.png"></image>
|
||||
</view>
|
||||
</block>
|
||||
<block wx:else>
|
||||
<navigator class="rightsLabel-right" hover-class="none"
|
||||
url="/pages/address_form/address_form?type=Add">
|
||||
添加收货地址<image class="rightsLabel-row" src="/static/icon/rightsArrow.png"></image>
|
||||
</navigator>
|
||||
</block>
|
||||
</view>
|
||||
<view class="rightsLabel" wx:if="{{platformCp[platIndex].name == '快递'}}">
|
||||
<view class="rightsLabel-left">快递运费</view>
|
||||
<view class="rightsLabel-right">¥{{freight}}</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
|
||||
<view class="rightsList" style="padding: 0 0 2rpx">
|
||||
<view class="rightsLabel">
|
||||
<view class="rightsLabel-left">{{detail.group_type == 'drill' ? '钻石' : '白金'}}余额{{detail.recharge == 'add' ?
|
||||
'充值' : '支付'}}</view>
|
||||
<view class="rightsLabel-right rightsLabel-red">¥{{detail.score}}</view>
|
||||
</view>
|
||||
<view class="rightsLabel uni-border-top">
|
||||
<view class="rightsLabel-left">实付金额</view>
|
||||
<view class="rightsLabel-right rightsLabel-score">¥{{amount}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 支付方式 -->
|
||||
<view class="rightsList">
|
||||
<view class="rightsLabel-pay">
|
||||
<view class="rightsLabel-left">支付方式</view>
|
||||
<view class="rightsLabel-right">微信支付</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 自提商家 -->
|
||||
<!-- <view class="detailsStore" wx:if="{{platIndex == 0}}">
|
||||
<view class="detailsStore-top">
|
||||
自提门店
|
||||
</view>
|
||||
<view class="detailsStore-see">
|
||||
<text>查看提货点信息</text>
|
||||
<image src="/static/icon/storeArrow.png"></image>
|
||||
</view>
|
||||
</view> -->
|
||||
|
||||
<!-- 购买须知 -->
|
||||
<view class="notice">
|
||||
<view class="noticeTitle" bindtap="noticeTap">
|
||||
<view class="noticeTitle-flex">
|
||||
<image class="noticeTitle-img" src="/static/icon/notice_icon.png"></image>
|
||||
购买前请仔细阅读使用须知、内容介绍
|
||||
</view>
|
||||
<image class="noticeTitle-row {{noticeShow ? 'active' : ''}}" src="/static/icon/rightsArrow.png"></image>
|
||||
</view>
|
||||
<view class="noticeText {{noticeShow ? 'active' : ''}}">
|
||||
<view class="noticeText-top">购买须知</view>
|
||||
<view class="noticeText-cont">
|
||||
<rich-text nodes="{{remark}}"></rich-text>
|
||||
</view>
|
||||
|
||||
<view class="noticeText-top">内容介绍</view>
|
||||
<view class="noticeText-cont">
|
||||
<rich-text nodes="{{content}}"></rich-text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 选择收货地址 -->
|
||||
<view class="addressBack {{addressShow ? 'active':''}}" bindtap="addressHide"></view>
|
||||
<view class="addressCont {{addressShow ? 'active':''}}">
|
||||
<view class="addressCont-title uni-border-bottom">
|
||||
<view class="addressCont-left">请选择收货地址</view>
|
||||
<view class="addressCont-right" bindtap="addSelect">新增收货地址</view>
|
||||
</view>
|
||||
<scroll-view class="header-classify" scroll-y="true">
|
||||
<view class="addressCont-list uni-border-bottom" wx:for="{{allAddress}}" wx:key="allAddress"
|
||||
bindtap="selectAddress" data-id="{{item.id}}" data-index="{{item}}">
|
||||
<view class="addressCont-top">
|
||||
<view class="addressCont-name">{{item.name}}</view>
|
||||
<view class="addressCont-tel">{{item.mobile}}</view>
|
||||
</view>
|
||||
<view class="addressCont-text">
|
||||
{{item.all_address}}
|
||||
</view>
|
||||
<view class="address-tool-icon">选择地址</view>
|
||||
<!-- <view class="address-tool">
|
||||
<view class="address-tool-btn" bindtap="addressEdit" data-id="">编辑地址</view>
|
||||
<view class="address-tool-btn address-tool-btn-del">删除地址</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
|
||||
<!-- <view class="webBack {{webShow == true ? '' : 'active'}}">
|
||||
获取失败,请重新获取
|
||||
</view> -->
|
||||
606
pages/rights/rights.wxss
Normal file
606
pages/rights/rights.wxss
Normal file
@@ -0,0 +1,606 @@
|
||||
page {
|
||||
background-color: #f7f7f7;
|
||||
}
|
||||
|
||||
.cont {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
/* 卡券权益 */
|
||||
.contBack {
|
||||
position: relative;
|
||||
width: 200%;
|
||||
height: 400rpx;
|
||||
left: -50%;
|
||||
text-align: center;
|
||||
background: #000000;
|
||||
border-radius: 0 0 100% 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* .contBack::after {
|
||||
width: 100%;
|
||||
height: 30rpx;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 2;
|
||||
content: '';
|
||||
background-image: linear-gradient(transparent, rgba(0,0,0,.25));
|
||||
} */
|
||||
|
||||
.classBack {
|
||||
position: absolute;
|
||||
left: 30%;
|
||||
right: 30%;
|
||||
width: 40%;
|
||||
top: 40rpx;
|
||||
}
|
||||
|
||||
.classCircle {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.classCircle::after,
|
||||
.contBack::before {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
content: '';
|
||||
z-index: 1;
|
||||
background-color: rgba(255,255,255,.1);
|
||||
}
|
||||
|
||||
.classCircle::after {
|
||||
left: 20%;
|
||||
top: -20rpx;
|
||||
width: 260rpx;
|
||||
height: 260rpx;
|
||||
}
|
||||
|
||||
.contBack::before {
|
||||
right: 20%;
|
||||
top: 55%;
|
||||
width: 300rpx;
|
||||
height: 300rpx;
|
||||
}
|
||||
|
||||
.rightsCont {
|
||||
position: absolute;
|
||||
z-index: 3;
|
||||
left: calc(30% - 2rpx);
|
||||
right: calc(30% - 2rpx);
|
||||
width: calc(40% + 4rpx);
|
||||
top: 58rpx;
|
||||
}
|
||||
|
||||
.rightsCont-btn {
|
||||
background-color: #f4dfcc;
|
||||
width: 100%;
|
||||
line-height: 70rpx;
|
||||
font-size: 38rpx;
|
||||
color: #694425;
|
||||
padding: 0 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rightsCont-tips {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.rightsNumber {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin: 30px 0 20px;
|
||||
padding: 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rightsNumber text {
|
||||
display: inline-block;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.rightsAdd {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.rightsAdd-btn {
|
||||
background: #eaeaea;
|
||||
color: #535353;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
line-height: 45rpx;
|
||||
font-size: 40rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.rightsAdd-input {
|
||||
width: 100rpx;
|
||||
text-align: center;
|
||||
font-size: 28rpx;
|
||||
line-height: 50rpx;
|
||||
}
|
||||
|
||||
.rightsTips {
|
||||
padding: 0 30rpx;
|
||||
color: #ff5b5d;
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.rightsList,
|
||||
.notice,
|
||||
.detailsStore {
|
||||
background: white;
|
||||
margin: 30rpx;
|
||||
border-radius: 10rpx;
|
||||
padding: 10rpx 0;
|
||||
box-sizing: border-box;
|
||||
box-shadow: 0 0 30rpx rgba(0,0,0,.15);
|
||||
}
|
||||
|
||||
.rightsLabel,
|
||||
.rightsLabel-pay {
|
||||
display: flex;
|
||||
padding: 20rpx;
|
||||
color: #6f7880;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.rightsLabel .rightsLabel-left {
|
||||
flex: 1;
|
||||
color: #747d86;
|
||||
}
|
||||
|
||||
.rightsLabel-black {
|
||||
padding-top: 30rpx;
|
||||
}
|
||||
|
||||
.rightsLabel-range {
|
||||
display: flex;
|
||||
color: #000;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.rightsLabel-row {
|
||||
width: 38rpx;
|
||||
height: 38rpx;
|
||||
margin: 2rpx 0 0 6rpx;
|
||||
}
|
||||
|
||||
.rightsLabel-black .rightsLabel-right,
|
||||
.rightsLabel-red {
|
||||
color: #ff5b5d;
|
||||
font-weight: 600;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.rightsLabel-black .rightsLabel-left {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.rightsLabel-score {
|
||||
font-weight: 600;
|
||||
color: #000;
|
||||
font-size: 38rpx;
|
||||
}
|
||||
|
||||
.rightsLabel-pay {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.rightsLabel-pay .rightsLabel-left {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.notice {
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.noticeTitle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.noticeTitle-flex {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
font-size: 30rpx;
|
||||
line-height: 46rpx;
|
||||
}
|
||||
|
||||
.noticeTitle-img {
|
||||
width: 46rpx;
|
||||
height: 46rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.noticeText {
|
||||
font-size: 26rpx;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.noticeText.active {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.noticeText-top {
|
||||
margin: 30rpx 0 10rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.noticeText-cont {
|
||||
line-height: 60rpx;
|
||||
}
|
||||
|
||||
.noticeTitle-row {
|
||||
width: 46rpx;
|
||||
height: 46rpx;
|
||||
}
|
||||
|
||||
.noticeTitle-row.active {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
/* 门店 */
|
||||
.detailsStore {
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.detailsStore-top {
|
||||
display: flex;
|
||||
line-height: 30rpx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.detailsStore-see {
|
||||
color: #dfae2e;
|
||||
border: 2rpx solid #dfae2e;
|
||||
border-radius: 10rpx;
|
||||
font-size: 28rpx;
|
||||
margin-top: 30rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.detailsStore-see text {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.detailsStore-see image {
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
/* 购买按钮 */
|
||||
.rightsBtn {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
z-index: 9;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.rightsBtn button,
|
||||
.rightsBtn text {
|
||||
display: block;
|
||||
margin: 12rpx 30rpx;
|
||||
width: calc(100% - 60rpx) !important;
|
||||
height: 74rpx !important;
|
||||
line-height: 74rpx !important;
|
||||
padding: 0;
|
||||
background: #eacf88;
|
||||
text-align: center;
|
||||
border-radius: 60rpx;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
|
||||
.rightsBtn.active text {
|
||||
background: #dedede;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* 选择收货地址 */
|
||||
.addressBack {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, .4);
|
||||
z-index: 10;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.addressBack.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.addressCont {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: -1000%;
|
||||
transition: .2s;
|
||||
background: #fff;
|
||||
z-index: 11;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.addressCont.active {
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.addressCont-title {
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
display: flex;
|
||||
padding: 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.addressCont-left {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.addressCont-right {
|
||||
color: #309ded;
|
||||
}
|
||||
|
||||
.header-classify {
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
height: 600rpx;
|
||||
}
|
||||
|
||||
.addressCont-list {
|
||||
padding: 30rpx 20rpx;
|
||||
box-sizing: border-box;
|
||||
font-size: 30rpx;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.addressCont-top {
|
||||
display: flex;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.addressCont-name {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.addressCont-text {
|
||||
color: #666;
|
||||
width: calc(100% - 160rpx);
|
||||
}
|
||||
|
||||
.addressCont-list:last-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.rightsLabel-address {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.rightsLabel-address text {
|
||||
display: inline-block;
|
||||
width: calc(100% - 46rpx);
|
||||
}
|
||||
|
||||
.rightsLabel-address .rightsLabel-right {
|
||||
display: flex;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.address-tool {
|
||||
display: flex;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.address-tool-btn {
|
||||
font-size: 24rpx;
|
||||
margin-top: 20rpx;
|
||||
border: 2rpx solid #666;
|
||||
color: #666;
|
||||
border-radius: 6rpx;
|
||||
text-align: center;
|
||||
height: 50rpx;
|
||||
line-height: 50rpx;
|
||||
padding: 0 20rpx;
|
||||
margin-right: 20rpx;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.address-tool-btn-del {
|
||||
color: #dfae2e;
|
||||
border-color: #dfae2e;
|
||||
}
|
||||
|
||||
.address-tool-icon {
|
||||
width: 120rpx;
|
||||
height: 54rpx;
|
||||
line-height: 54rpx;
|
||||
border-radius: 4rpx;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 45rpx;
|
||||
right: 10rpx;
|
||||
background: #dfae2e;
|
||||
transform: scale(.9, .9);
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.rightsPoint {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 100rpx;
|
||||
background: #fff;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
padding: 20rpx 20rpx 10rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rightsPoint-cont {
|
||||
width: 100%;
|
||||
background: #fff8e5;
|
||||
border: 2rpx solid #f2ecde;
|
||||
border-radius: 10rpx;
|
||||
position: relative;
|
||||
max-height: 50vh;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.rightsPoint-top {
|
||||
font-size: 28rpx;
|
||||
display: flex;
|
||||
padding: 20rpx;
|
||||
box-sizing: border-box;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.rightsPoint-top image {
|
||||
width: 36rpx;
|
||||
height: 36rpx;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
|
||||
.rightsPoint-text {
|
||||
padding: 0 20rpx;
|
||||
box-sizing: border-box;
|
||||
font-size: 24rpx;
|
||||
line-height: 44rpx;
|
||||
height: 90rpx;
|
||||
transition: height 25s;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.rightsPoint-text.active {
|
||||
height: auto;
|
||||
transition: 2s;
|
||||
}
|
||||
|
||||
.rightsPoint-text view {
|
||||
position: relative;
|
||||
padding-left: 40rpx;
|
||||
}
|
||||
|
||||
.rightsPoint-text view::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 10rpx;
|
||||
top: 20rpx;
|
||||
background: #000;
|
||||
width: 10rpx;
|
||||
height: 10rpx;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.rightsPoint-bolck {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: calc(100% - 40rpx);
|
||||
}
|
||||
|
||||
.pointMore {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
background: #fff8e5;
|
||||
height: 80rpx;
|
||||
line-height: 82rpx;
|
||||
position: relative;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
|
||||
.pointMore::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 2rpx;
|
||||
background: #f2ecde;
|
||||
}
|
||||
|
||||
.pointMore text {
|
||||
font-size: 28rpx;
|
||||
color: #c38e00;
|
||||
animation: dong 1.8s infinite;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.pointMore image {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
margin-left: 4rpx;
|
||||
vertical-align: -4rpx;
|
||||
animation: dong 1.8s infinite;
|
||||
}
|
||||
|
||||
@keyframes dong {
|
||||
0% {
|
||||
transform: translate(0px, 0px);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translate(0px, -6rpx);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(0px, 0px);
|
||||
}
|
||||
}
|
||||
|
||||
.webBack {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 9999;
|
||||
background-color: #fff;
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.webBack.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.welfareCont-top{
|
||||
white-space: nowrap;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
width: 100%;
|
||||
padding: 0 10rpx;
|
||||
box-sizing: border-box;
|
||||
margin: 50rpx 0 20rpx;
|
||||
}
|
||||
|
||||
.welfareCont-list-img {
|
||||
border-radius: 50%;
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
display: inline-block;
|
||||
margin: 0 15rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.welfareCont-list-img image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
Reference in New Issue
Block a user