commit
e7481ee8d2
@ -0,0 +1,484 @@ |
||||
<template> |
||||
<view class="QS-tabs" :style="{ |
||||
'z-index': zIndex, |
||||
'font-size': getFontSize + 'rpx', |
||||
'background-color': getBgColor, |
||||
'transition-duration': getDuration + 's' |
||||
}"> |
||||
<scroll-view scroll-x class="QS-tabs-scroll" :scroll-left="left" scroll-with-animation :style="{ |
||||
'z-index': (Number(zIndex) + 1) |
||||
}"> |
||||
<view class="QS-tabs-scroll-box"> |
||||
<!-- 循环tabs --> |
||||
<view class="QS-tabs-scroll-item" :style="{ |
||||
'height':'100rpx', |
||||
'line-height': getHeight + 'rpx', |
||||
'min-width': getWidth + 'rpx', |
||||
'padding': '0 ' + space + 'rpx', |
||||
'color': index===getCurrent?getActiveColor:getDefaultColor, |
||||
'font-weight': activeBold&&index===getCurrent?'bold':'', |
||||
'transition-duration': getDuration + 's', |
||||
'z-index': (Number(zIndex) + 2) |
||||
}" |
||||
v-for="(item, index) in getTabs" :key="index" @tap="emit(index)" :id="preId + index"> |
||||
<!-- line1 --> |
||||
<view v-if="animationMode==='line1'" class="boxStyle" :style="getDurationStyle +( index===getCurrent?getActiveStyle:getDefaultStyle)"></view> |
||||
{{item.name || item}} |
||||
</view> |
||||
<!-- itemBackground --> |
||||
<view v-if="hasItemBackground" class="itemBackgroundBox" :style="{ |
||||
'height': getHeight + 'rpx', |
||||
'width': (isLine3&&tabsInfo[animationFinishCurrent]?tabsInfo[animationFinishCurrent].width:tabsInfo[getCurrent].width) + 'px', |
||||
'z-index': Number(zIndex) + 1, |
||||
'transition-duration': getDuration + 's', |
||||
'left': (tabsInfo[getCurrent]?tabsInfo[getCurrent].left:0) + 'px' |
||||
}"> |
||||
<view class="itemBackground" :style="'transition-duration:' + getDuration + 's;' + |
||||
'background-color:' + getItemBackgroundColor + ';' + |
||||
'box-shadow: 0 0 5rpx 5rpx ' + getItemBackgroundColor + ';' + |
||||
itemBackgroundStyle + ';'" /> |
||||
</view> |
||||
<!-- line2 --> |
||||
<view v-if="animationMode==='line2'" class="boxStyle2" :style="getLinezIndex + getDurationStyle + |
||||
'width:' + lW + 'px;' + |
||||
'background-color:' + (lineColor||getActiveColor) + ';' + |
||||
line2Style + ';' + |
||||
'left:' + line2Dx + 'px;'" /> |
||||
|
||||
<view v-if="animationMode==='line3'" class="boxStyle2" :style="getLinezIndex + |
||||
'width:' + lW + 'px;' + |
||||
'background-color:' + (lineColor||getActiveColor) + ';' + |
||||
line2Style + ';' + |
||||
'left:' + getLine3Dx + 'px'" /> |
||||
|
||||
</view> |
||||
</scroll-view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
const { |
||||
windowWidth |
||||
} = uni.getSystemInfoSync(); |
||||
const preId = 'QSTabsID_'; |
||||
export default { |
||||
props: { |
||||
tabs: { //需循环的标签列表 |
||||
type: Array, |
||||
default () { |
||||
return []; |
||||
} |
||||
}, |
||||
current: { //当前所在滑块的 index |
||||
type: Number, |
||||
default: 0 |
||||
}, |
||||
height: { //QS-tabs的高度和行高 |
||||
type: [String, Number], |
||||
default: 80 |
||||
}, |
||||
minWidth: { //单个tab的最小宽度 //v1.4修改 |
||||
type: [String, Number], |
||||
default: 250 |
||||
}, |
||||
fontSize: { //字体大小 |
||||
type: [String, Number], |
||||
default: 30 |
||||
}, |
||||
duration: { //过渡动画时长, 单位 s |
||||
type: [String, Number], |
||||
default: .5 |
||||
}, |
||||
activeColor: { //选中项的主题颜色 |
||||
type: String, |
||||
default: '#33cc33' |
||||
}, |
||||
defaultColor: { //未选中项的主题颜色 |
||||
type: String, |
||||
default: '#888' |
||||
}, |
||||
animationLineWidth: { //动画线条的宽度 |
||||
type: [String, Number], |
||||
default: 20 |
||||
}, |
||||
line2Style: { //line2线条的样式 |
||||
type: String, |
||||
default: 'height: 8rpx;border-radius: 4rpx;' |
||||
}, |
||||
animationMode: { //动画类型 |
||||
type: String, |
||||
default: 'line1' |
||||
}, |
||||
autoCenter: { //是否自动滚动至中心目标 |
||||
type: Boolean, |
||||
default: true |
||||
}, |
||||
autoCenterMode: { //滚动至中心目标类型 |
||||
type: String, |
||||
default: 'component' |
||||
}, |
||||
activeStyle: { //line1模式选中项的样式 |
||||
type: String, |
||||
default: 'bottom:0;left:50%;transform: translate(-50%,-100%);height: 8rpx;border-radius:4rpx;' |
||||
}, |
||||
defaultStyle: { //line1模式未选中项的样式 |
||||
type: String, |
||||
default: 'bottom:0;left:50%;transform: translate(-50%,-100%);height: 8rpx;border-radius:4rpx;' |
||||
}, |
||||
backgroundColor: { //统一背景颜色 |
||||
type: String, |
||||
default: 'rgba(255,255,255,0)' |
||||
}, |
||||
hasItemBackground: { //是否开启背景追光 |
||||
type: Boolean, |
||||
default: false |
||||
}, |
||||
itemBackgroundColor: { //统一追光背景颜色 |
||||
type: String, |
||||
default: 'rgba(255,255,255,0)' |
||||
}, |
||||
itemBackgroundStyle: { //追光样式 |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
zIndex: { //css的z-index属性值 |
||||
type: [String, Number], |
||||
default: 99 |
||||
}, |
||||
swiperWidth: { //line3生效, 外部swiper的宽度, 单位rpx |
||||
type: [String, Number], |
||||
default: 750 |
||||
}, |
||||
space: { //tab间距 |
||||
type: [String, Number], |
||||
default: '0' |
||||
}, |
||||
activeBold: { //当前tab字体是否加粗 |
||||
type: Boolean, |
||||
default: true |
||||
}, |
||||
lineColor: { //line颜色 |
||||
type: String, |
||||
default: '' |
||||
} |
||||
}, |
||||
computed: { |
||||
isLine3() { |
||||
return this.animationMode === 'line3'; |
||||
}, |
||||
getCurrent() { |
||||
const current = Number(this.current); |
||||
if (current > (this.getTabs.length - 1)) { |
||||
return (this.getTabs.length - 1) |
||||
} |
||||
return current; |
||||
}, |
||||
getTabs() { |
||||
return this.tabs; |
||||
}, |
||||
getHeight() { |
||||
return Number(this.height); |
||||
}, |
||||
getWidth() { |
||||
return Number(this.minWidth); |
||||
}, |
||||
getFontSize() { |
||||
return this.fontSize; |
||||
}, |
||||
getDuration() { |
||||
return Number(this.duration); |
||||
}, |
||||
getBgColor() { |
||||
const defaultColor = this.backgroundColor || 'rgba(255,255,255,0)'; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
return this.getTabs[this.getCurrent].backgroundColor || defaultColor; |
||||
} else { |
||||
return defaultColor; |
||||
} |
||||
}, |
||||
getItemBackgroundColor() { |
||||
const defaultColor = this.itemBackgroundColor || 'rgba(255,255,255,0)'; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
return this.getTabs[this.getCurrent].itemBackgroundColor || defaultColor; |
||||
} else { |
||||
return defaultColor; |
||||
} |
||||
}, |
||||
getDurationStyle() { |
||||
return `transition-duration: ${this.getDuration}s;` |
||||
}, |
||||
getActiveColor() { |
||||
let activeColor; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
if (this.getTabs[this.getCurrent].activeColor) { |
||||
activeColor = this.getTabs[this.getCurrent].activeColor; |
||||
} else { |
||||
activeColor = this.activeColor; |
||||
} |
||||
} else { |
||||
activeColor = this.activeColor; |
||||
} |
||||
return activeColor; |
||||
}, |
||||
getDefaultColor() { |
||||
let defaultColor; |
||||
if (this.getTabs[this.getCurrent] instanceof Object) { |
||||
if (this.getTabs[this.getCurrent].defaultColor) { |
||||
defaultColor = this.getTabs[this.getCurrent].defaultColor; |
||||
} else { |
||||
defaultColor = this.defaultColor; |
||||
} |
||||
} else { |
||||
defaultColor = this.defaultColor; |
||||
} |
||||
return defaultColor; |
||||
}, |
||||
getActiveStyle() { |
||||
return `width:${this.animationLineWidth}%;background-color:${this.getActiveColor};${this.activeStyle};`; |
||||
}, |
||||
getDefaultStyle() { |
||||
return `width:0;background-color:${this.getActiveColor};${this.defaultStyle};`; |
||||
}, |
||||
getLinezIndexNum() { |
||||
return Number(this.zIndex) + 2; |
||||
}, |
||||
getLinezIndex() { |
||||
return `z-index: ${this.getLinezIndexNum};`; |
||||
}, |
||||
getLine3Dx() { |
||||
return Number(this.line3Dx) + Number(this.line3AddDx); |
||||
} |
||||
}, |
||||
watch: { |
||||
current(n, o) { |
||||
this.change(n); |
||||
}, |
||||
tabs() { |
||||
this.init(); |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
left: 0, |
||||
tabsInfo: [], |
||||
line2Width: Number(this.animationLineWidth), |
||||
setTimeoutFc: null, |
||||
componentsWidth: 0, |
||||
animationFinishCurrent: this.current, |
||||
pxWidth: 0, |
||||
lW: 0, |
||||
sW: 0, |
||||
preId, |
||||
line3Dx: 0, |
||||
line3AddDx: 0, |
||||
line2Dx: 0 |
||||
} |
||||
}, |
||||
// #ifndef H5 |
||||
onReady() { |
||||
this.init(); |
||||
}, |
||||
// #endif |
||||
// #ifdef H5 |
||||
mounted() { |
||||
this.init(); |
||||
}, |
||||
// #endif |
||||
methods: { |
||||
init() { |
||||
this.countPx(); |
||||
let view = uni.createSelectorQuery().in(this); |
||||
for (let i = 0; i < this.tabs.length; i++) { |
||||
view.select('#' + preId + i).boundingClientRect(); |
||||
} |
||||
view.exec((res) => { |
||||
const arr = []; |
||||
for (let i = 0; i < res.length; i++) { |
||||
arr.push(res[i]); |
||||
} |
||||
this.tabsInfo = arr; |
||||
this.countLine2Dx(); |
||||
this.countLine3Dx(); |
||||
let _this = this; |
||||
_this.getQuery(() => { |
||||
_this.countScrollX(); |
||||
}); |
||||
}) |
||||
}, |
||||
countLine2Dx() { |
||||
if (this.animationMode === 'line2') { |
||||
const tab = this.tabsInfo[this.getCurrent]; |
||||
if(tab) this.line2Dx = tab.left + tab.width / 2 - this.lW / 2; |
||||
} |
||||
}, |
||||
countLine3Dx() { |
||||
if (this.animationMode === 'line3') { |
||||
const tab = this.tabsInfo[this.animationFinishCurrent]; |
||||
if(tab) this.line3Dx = tab.left + tab.width / 2 - this.lW / 2; |
||||
} |
||||
}, |
||||
countPx() { |
||||
const w = uni.upx2px(this.getWidth); |
||||
this.pxWidth = w; |
||||
this.lW = (w * (Number(this.animationLineWidth) / 100))+72.5; |
||||
this.sW = uni.upx2px(Number(this.swiperWidth)); |
||||
}, |
||||
emit(index) { |
||||
this.$emit('change', index); |
||||
}, |
||||
change() { |
||||
this.countScrollX(); |
||||
if (this.animationMode === 'line2') { |
||||
this.line2Width = 2; |
||||
if (this.setTimeoutFc) clearTimeout(this.setTimeoutFc); |
||||
this.setTimeoutFc = setTimeout(() => { |
||||
this.line2Width = this.animationLineWidth; |
||||
}, this.getDuration * 1000 * 3 / 5); |
||||
this.countLine2Dx(); |
||||
} |
||||
}, |
||||
getQuery(cb) { |
||||
try { |
||||
let view = uni.createSelectorQuery().in(this).select('.QS-tabs'); |
||||
view.fields({ |
||||
size: true |
||||
}, data => { |
||||
if (data) { |
||||
this.componentsWidth = data.width; |
||||
if (cb && typeof cb === 'function') cb(data); |
||||
} else { |
||||
this.retryGetQuery(cb); |
||||
} |
||||
}).exec(); |
||||
} catch (e) { |
||||
//TODO handle the exception |
||||
this.componentsWidth = windowWidth; |
||||
} |
||||
}, |
||||
retryGetQuery(cb) { |
||||
try { |
||||
let view = uni.createSelectorQuery().select('.QS-tabs'); |
||||
view.fields({ |
||||
size: true |
||||
}, data => { |
||||
if (data) { |
||||
this.componentsWidth = data.width; |
||||
} else { |
||||
this.componentsWidth = windowWidth; |
||||
} |
||||
if (cb && typeof cb === 'function') cb(data); |
||||
}).exec(); |
||||
} catch (e) { |
||||
//TODO handle the exception |
||||
this.componentsWidth = windowWidth; |
||||
} |
||||
}, |
||||
countScrollX() { |
||||
if (this.autoCenter) { |
||||
let tab; |
||||
if(this.isLine3) { |
||||
tab = this.tabsInfo[this.animationFinishCurrent]; |
||||
}else{ |
||||
tab = this.tabsInfo[this.getCurrent]; |
||||
} |
||||
if(tab) { |
||||
let tabCenter = tab.left + tab.width/2; |
||||
let fatherWidth; |
||||
if (this.autoCenterMode === 'window') { |
||||
fatherWidth = windowWidth; |
||||
} else { |
||||
fatherWidth = this.componentsWidth; |
||||
} |
||||
this.left = tabCenter - fatherWidth / 2; |
||||
} |
||||
} |
||||
}, |
||||
setDx(dx) { |
||||
const tab = this.tabsInfo[dx>0?(this.animationFinishCurrent + 1):(this.animationFinishCurrent - 1)]; |
||||
this.line3AddDx = dx / this.sW * (tab?tab.width:this.pxWidth); |
||||
}, |
||||
setFinishCurrent(current) { |
||||
this.line3AddDx = 0; |
||||
this.animationFinishCurrent = current; |
||||
this.countLine3Dx(); |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
view, |
||||
scroll-view { |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.QS-tabs { |
||||
width: 100%; |
||||
transition-property: background-color, color; |
||||
} |
||||
|
||||
.QS-tabs::-webkit-scrollbar { |
||||
display: none; |
||||
width: 0 !important; |
||||
height: 0 !important; |
||||
-webkit-appearance: none; |
||||
background: transparent; |
||||
} |
||||
|
||||
.QS-tabs-scroll { |
||||
width: 100%; |
||||
white-space: nowrap; |
||||
position: relative; |
||||
} |
||||
|
||||
.QS-tabs-scroll-box { |
||||
position: relative; |
||||
display: flex; |
||||
white-space: nowrap !important; |
||||
display: block !important; |
||||
} |
||||
|
||||
.QS-tabs-scroll-item { |
||||
position: relative; |
||||
display: inline-block; |
||||
text-align: center; |
||||
transition-property: background-color, color, font-weight; |
||||
} |
||||
|
||||
.content { |
||||
overflow: hidden; |
||||
white-space: nowrap; |
||||
text-overflow: ellipsis; |
||||
} |
||||
|
||||
.boxStyle { |
||||
pointer-events: none; |
||||
position: absolute; |
||||
transition-property: all; |
||||
} |
||||
|
||||
.boxStyle2 { |
||||
pointer-events: none; |
||||
position: absolute; |
||||
bottom: 0; |
||||
transition-property: all; |
||||
transform: translateY(-100%); |
||||
} |
||||
|
||||
.itemBackgroundBox { |
||||
pointer-events: none; |
||||
position: absolute; |
||||
top: 0; |
||||
transition-property: left, background-color; |
||||
display: flex; |
||||
flex-direction: row; |
||||
justify-content: center; |
||||
align-items: center; |
||||
} |
||||
|
||||
.itemBackground { |
||||
height: 100%; |
||||
width: 100%; |
||||
transition-property: all; |
||||
} |
||||
</style> |
@ -1,413 +1,467 @@ |
||||
<template> |
||||
<view> |
||||
<!-- 头部 --> |
||||
<view class="width100 height120 backcorfff"> |
||||
<image :src="orderList.goodsImg" class="flleft conImg mart10 margle10"></image> |
||||
<view class="conCont paddtop15"> |
||||
<view class="font20 fontwig6 fcor333 text1 paddtright10">{{orderList.goodsName}}</view> |
||||
<view class="font14 fcor999 text2 paddtop5 paddtright10">{{refulAdress}}</view> |
||||
<view class="font20 fontwig6 fcoreb5 paddtop5">¥{{orderList.gasPriceVip}} |
||||
<text class="margle10 slogan font14">¥{{orderList.gasPriceGun}}</text> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<!-- //订单详情 --> |
||||
<view class="mart10 heightl60 paddleft10 fcor333 fontwig6 font18 width100 backcorfff">订单详情</view> |
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff"> |
||||
<view class="flleft width50"> |
||||
油号\油枪 |
||||
</view> |
||||
<view class="flright width40 fotct"> |
||||
{{orderList.gasOilNo}}#/{{orderList.gasGunNo}}号 |
||||
</view> |
||||
</view> |
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff"> |
||||
<view class="flleft width50"> |
||||
加油金额 |
||||
</view> |
||||
<view class="flright width40 fotct"> |
||||
{{orderList.totalPrice}} |
||||
</view> |
||||
</view> |
||||
<template> |
||||
<view> |
||||
<!-- 头部 --> |
||||
<view class="width100 height120 backcorfff"> |
||||
<image :src="orderList.goodsImg" class="flleft conImg mart10 margle10"></image> |
||||
<view class="conCont paddtop15"> |
||||
<view class="font20 fontwig6 fcor333 text1 paddtright10">{{orderList.goodsName}}</view> |
||||
<view class="font14 fcor999 text2 paddtop5 paddtright10">{{refulAdress}}</view> |
||||
<view class="font20 fontwig6 fcoreb5 paddtop5">¥{{orderList.gasPriceVip}} |
||||
<text class="margle10 slogan font14">¥{{orderList.gasPriceGun}}</text> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<!-- //订单详情 --> |
||||
<view class="mart10 heightl60 paddleft10 fcor333 fontwig6 font18 width100 backcorfff">订单详情</view> |
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff"> |
||||
<view class="flleft width50"> |
||||
油号\油枪 |
||||
</view> |
||||
<view class="flright width40 fotct"> |
||||
{{orderList.gasOilNo}}#/{{orderList.gasGunNo}}号 |
||||
</view> |
||||
</view> |
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff"> |
||||
<view class="flleft width50"> |
||||
加油金额 |
||||
</view> |
||||
<view class="flright width40 fotct"> |
||||
{{orderList.totalPrice}} |
||||
</view> |
||||
</view> |
||||
|
||||
<!-- //支付方式 --> |
||||
<view class="mart10 heightl60 paddleft10 fcor333 fontwig6 font18 width100 backcorfff">支付方式</view> |
||||
<view class="line1"></view> |
||||
<view class="width100 backcorfff"> |
||||
<!-- <view class="height50 width100 backcorfff" @tap="paytype='jifen'"> |
||||
<view class="width50 flleft fcor333 fontwig6 font16" style="padding-left: 4%;"> |
||||
积分支付 |
||||
</view> |
||||
<view class="width40 flright fotrt paddtright10 font15 fontwig6 fcor666 alijun" |
||||
style="align-items: center;"> |
||||
<radio :checked="paytype=='jifen'" color="#0083f5" /> |
||||
</view> |
||||
</view> |
||||
<view class="width94 line1 mart5 marb5"></view> --> |
||||
|
||||
<!-- //支付方式 --> |
||||
<view class="mart10 heightl60 paddleft10 fcor333 fontwig6 font18 width100 backcorfff">支付方式</view> |
||||
<view class="line1"></view> |
||||
<view class="width100 backcorfff"> |
||||
<!-- <view class="height50 width100 backcorfff" @tap="paytype='weixin'"> |
||||
<view class="width50 flleft fcor333 fontwig6 font16" style="padding-left: 4%;"> |
||||
微信支付 |
||||
</view> |
||||
<view class="width40 flright fotrt paddtright10 font15 fontwig6 fcor666 alijun" |
||||
style="align-items: center;"> |
||||
<radio :checked="paytype=='weixin'" color="#0083f5" /> |
||||
</view> |
||||
</view> |
||||
<view class="width94 line1 mart5 marb5"></view> --> |
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='weixin'"> |
||||
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='jifen'"> |
||||
<view class="width60 flleft fontwig6"> |
||||
微信支付 |
||||
积分支付 |
||||
</view> |
||||
<view class="flright width30 fotct"> |
||||
<radio :checked="paytype=='weixin'" color="#0083f5" /> |
||||
<radio :checked="paytype=='jifen'" color="#0083f5" /> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='gonghuika'"> |
||||
<view class="width60 flleft fontwig6"> |
||||
汇联通工会卡<text class="font14 fcor666 margle">余额: {{tongCardPrice}}元</text> |
||||
</view> |
||||
<view class="flright width30 fotct"> |
||||
<radio :checked="paytype=='gonghuika'" @click="changeRiado()" color="#0083f5" /> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="width100 mart15 fcor333 font16 fontwig6 paddleft10">重要说明</view> |
||||
<view class="width95 paddleft10 font14 fcor999 mart5">1.<text |
||||
class="fcor089 fontwig6">请先加油后下单</text>,即您到站后,与工作人员确认油号,抢号后再付款。</view> |
||||
<view class="width95 paddleft10 font14 fcor999 mart5"> |
||||
2.请勿先付款后加油,若您已下单付款。请于24小时内到加油站完成加油;若您48小时内未完成加油,请及时发起退单;逾期退单可能会退单失败。</view> |
||||
<view class="height80 width100"></view> |
||||
<!-- 底部按钮 --> |
||||
<view class="footer"> |
||||
<view class="width50 flleft fcoreb5 padleft15 font15"> |
||||
合计: ¥<text class="font24">{{payprice}}</text> |
||||
</view> |
||||
<button class="reBtn flright" @click="orderToPay">去支付</button> |
||||
</view> |
||||
|
||||
<ssPaymentPassword ref="paymentPassword" :mode="1" @submit="submitHandle"/> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getOrderById, |
||||
orderToPay, |
||||
getHuiLianTongCardBalance, |
||||
hltUnionCardPay |
||||
} from '../../../Utils/Api.js'; |
||||
import ssPaymentPassword from '../../../components/sanshui-payment-password/index.vue'; |
||||
let app = getApp(); |
||||
// #ifdef H5 |
||||
var jweixin = require('jweixin-module'); |
||||
// #endif |
||||
export default { |
||||
components: { |
||||
ssPaymentPassword |
||||
}, |
||||
data() { |
||||
return { |
||||
orderNo: '', |
||||
couponId: '', |
||||
payprice: '', |
||||
orderList: '', |
||||
refulAdress: '', |
||||
tongCardPrice: 0, |
||||
user: '', |
||||
paytype: '', |
||||
PaymentPassword: '', |
||||
} |
||||
}, |
||||
onLoad(e) { |
||||
this.payprice = e.payprice; |
||||
this.orderNo = e.orderId; |
||||
this.couponId = e.couponId; |
||||
this.refulAdress = e.adres; |
||||
this.getOrderById(); |
||||
}, |
||||
onShow() { |
||||
let that = this; |
||||
that.paytype = ''; |
||||
that.user = app.globalData.userInfo; |
||||
that.getHuiLianTongCardBalance(); |
||||
}, |
||||
methods: { |
||||
//密码支付完成 |
||||
submitHandle(e) { |
||||
this.PaymentPassword = e.value; |
||||
if(this.PaymentPassword == ''){ |
||||
uni.showToast({ |
||||
title: '请勿手动关闭弹窗', |
||||
icon: 'none', |
||||
duration: 2000 |
||||
}) |
||||
return; |
||||
} |
||||
uni.showLoading({ |
||||
title: '支付中...' |
||||
}) |
||||
let params = { |
||||
"orderId": this.orderNo, |
||||
"cardNo": this.user.hltCardNo.cardNo, |
||||
"password": this.PaymentPassword |
||||
} |
||||
hltUnionCardPay(params).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' +this.orderNo |
||||
}); |
||||
return; |
||||
} |
||||
if (res.return_code == '102130') { |
||||
uni.navigateTo({ |
||||
url: '../../login/updatePas/updatePas' |
||||
}) |
||||
return; |
||||
} |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
icon: 'none' |
||||
}) |
||||
}) |
||||
|
||||
|
||||
}, |
||||
//获取选择支付方式 |
||||
changeRiado() { |
||||
if (!this.user.isSetHltCard) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '当前账号还未绑定,前往绑定', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../../user/bindingCard/bindingCard' |
||||
}) |
||||
}, 1000) |
||||
} |
||||
}); |
||||
return; |
||||
} |
||||
}, |
||||
getOrderById() { |
||||
uni.showLoading({ |
||||
title: '加载中...' |
||||
}) |
||||
let params = { |
||||
orderId: this.orderNo, |
||||
} |
||||
getOrderById(params).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
this.orderList = res.return_data.highChildOrderList[0]; |
||||
} |
||||
}) |
||||
}, |
||||
//查询工会卡余额 |
||||
getHuiLianTongCardBalance() { |
||||
let params = { |
||||
cardNo: this.user.hltCardNo.cardNo |
||||
} |
||||
getHuiLianTongCardBalance(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.tongCardPrice = res.return_data.balance; |
||||
} |
||||
|
||||
}); |
||||
}, |
||||
//获取订单数据 |
||||
orderToPay() { |
||||
let that = this; |
||||
if (that.paytype == '') { |
||||
uni.showToast({ |
||||
title: '请选择支付方式', |
||||
icon: 'none', |
||||
duration: 2000 |
||||
}) |
||||
return; |
||||
} |
||||
if (that.paytype == 'weixin') { |
||||
let params = { |
||||
"orderId": that.orderNo, |
||||
"openId": app.globalData.openId, |
||||
"orderScene": "GOODS_ORDER" |
||||
} |
||||
orderToPay(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
// #ifdef MP |
||||
uni.showLoading({ |
||||
title: '支付中...' |
||||
}) |
||||
uni.requestPayment({ |
||||
"appId": res.return_data.appId, |
||||
"nonceStr": res.return_data.nonceStr, |
||||
"package": res.return_data.package, |
||||
"paySign": res.return_data.sign, |
||||
"signType": "MD5", |
||||
"timeStamp": res.return_data.timeStamp, |
||||
success: function(res) { |
||||
uni.hideLoading(); |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' +that.orderNo |
||||
}); |
||||
}, |
||||
fail: function(err) { |
||||
uni.hideLoading(); |
||||
}, |
||||
}); |
||||
// #endif |
||||
|
||||
//判断是否是公众号 |
||||
// #ifdef H5 |
||||
//判断微信浏览器 |
||||
that.payRequest(res); |
||||
// #endif |
||||
|
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}) |
||||
return; |
||||
} |
||||
if(that.paytype == 'gonghuika'){ |
||||
if (!that.user.isSetPayPwd) { |
||||
uni.navigateTo({ |
||||
url: '../../login/updatePas/updatePas' |
||||
}) |
||||
return; |
||||
} |
||||
if (!that.user.isSetHltCard) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '当前账号还未绑定,前往绑定', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../../user/bindingCard/bindingCard' |
||||
}) |
||||
}, 1000) |
||||
} |
||||
}); |
||||
return; |
||||
} |
||||
that.$refs.paymentPassword.modalFun('show'); |
||||
} |
||||
}, |
||||
payRequest: function(self) { |
||||
let that = this; |
||||
uni.showLoading({ |
||||
title: '支付中...' |
||||
}) |
||||
jweixin.config({ |
||||
// debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
||||
appId: self.return_data.appId, // 必填,公众号的唯一标识 |
||||
timestamp: self.return_data.timeStamp, // 必填,生成签名的时间戳 |
||||
nonceStr: self.return_data.nonceStr, // 必填,生成签名的随机串 |
||||
signature: self.return_data.sign, // 必填,签名,见附录1 |
||||
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
||||
}); |
||||
uni.hideLoading(); |
||||
jweixin.ready(function() { |
||||
jweixin.checkJsApi({ |
||||
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
||||
success: function(res) {}, |
||||
fail: function(res) {} |
||||
}); |
||||
jweixin.chooseWXPay({ |
||||
appId: self.return_data.appId, |
||||
timestamp: self.return_data |
||||
.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
||||
nonceStr: self.return_data.nonceStr, // 支付签名随机串,不长于 32 位 |
||||
package: self.return_data |
||||
.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
||||
signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
||||
paySign: self.return_data.sign, // 支付签名 |
||||
success: function(res) { |
||||
// 支付成功后的回调函数 |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' + |
||||
that.orderNo |
||||
}); |
||||
}, |
||||
cancel: function(r) {}, |
||||
fail: function(res) {}, |
||||
complete: function(res) { |
||||
|
||||
} |
||||
}); |
||||
}); |
||||
|
||||
jweixin.error(function(res) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '支付失败了', |
||||
duration: 4000 |
||||
}); |
||||
// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。 |
||||
/*alert("config信息验证失败");*/ |
||||
}); |
||||
}, |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="less"> |
||||
page { |
||||
background-color: #f7f7f7; |
||||
} |
||||
|
||||
.conImg { |
||||
width: 100px; |
||||
height: 100px; |
||||
border-radius: 8px; |
||||
} |
||||
|
||||
.conCont { |
||||
margin-left: 115px; |
||||
} |
||||
|
||||
.slogan { |
||||
color: #807c87; |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
.footer { |
||||
position: fixed; |
||||
bottom: 0upx; |
||||
width: 100%; |
||||
height: 100rpx; |
||||
color: #FFFFFF; |
||||
border-top: solid 1upx #eee; |
||||
background-color: #FFFFFF; |
||||
z-index: 2; |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
|
||||
.reBtn { |
||||
width: 120px; |
||||
background-color: #089bf5; |
||||
color: #FFFFFF; |
||||
text-align: center; |
||||
padding: 0; |
||||
font-size: 16px; |
||||
border-radius: 0px; |
||||
height: 50px; |
||||
line-height: 50px; |
||||
position: absolute; |
||||
right: 0px; |
||||
} |
||||
} |
||||
|
||||
<view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='weixin'"> |
||||
<view class="width60 flleft fontwig6"> |
||||
微信支付 |
||||
</view> |
||||
<view class="flright width30 fotct"> |
||||
<radio :checked="paytype=='weixin'" color="#0083f5" /> |
||||
</view> |
||||
</view> |
||||
|
||||
<!-- <view class="line1"></view> |
||||
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='gonghuika'"> |
||||
<view class="width60 flleft fontwig6"> |
||||
汇联通工会卡<text class="font14 fcor666 margle">余额: {{tongCardPrice}}元</text> |
||||
</view> |
||||
<view class="flright width30 fotct"> |
||||
<radio :checked="paytype=='gonghuika'" @click="changeRiado()" color="#0083f5" /> |
||||
</view> |
||||
</view> --> |
||||
</view> |
||||
|
||||
<view class="width100 mart15 fcor333 font16 fontwig6 paddleft10">重要说明</view> |
||||
<view class="width95 paddleft10 font14 fcor999 mart5">1.<text |
||||
class="fcor089 fontwig6">请先加油后下单</text>,即您到站后,与工作人员确认油号,抢号后再付款。</view> |
||||
<view class="width95 paddleft10 font14 fcor999 mart5"> |
||||
2.请勿先付款后加油,若您已下单付款。请于24小时内到加油站完成加油;若您48小时内未完成加油,请及时发起退单;逾期退单可能会退单失败。</view> |
||||
<view class="height80 width100"></view> |
||||
<!-- 底部按钮 --> |
||||
<view class="footer"> |
||||
<view class="width50 flleft fcoreb5 padleft15 font15"> |
||||
合计: ¥<text class="font24">{{payprice}}</text> |
||||
</view> |
||||
<button class="reBtn flright" @click="orderToPay">去支付</button> |
||||
</view> |
||||
|
||||
<ssPaymentPassword ref="paymentPassword" :mode="1" @submit="submitHandle" /> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getOrderById, |
||||
orderToPay, |
||||
getHuiLianTongCardBalance, |
||||
hltUnionCardPay, |
||||
orderToGoldPay |
||||
} from '../../../Utils/Api.js'; |
||||
import ssPaymentPassword from '../../../components/sanshui-payment-password/index.vue'; |
||||
let app = getApp(); |
||||
// #ifdef H5 |
||||
var jweixin = require('jweixin-module'); |
||||
// #endif |
||||
export default { |
||||
components: { |
||||
ssPaymentPassword |
||||
}, |
||||
data() { |
||||
return { |
||||
orderNo: '', |
||||
couponId: '', |
||||
payprice: '', |
||||
orderList: '', |
||||
refulAdress: '', |
||||
tongCardPrice: 0, |
||||
user: '', |
||||
paytype: '', |
||||
PaymentPassword: '', |
||||
} |
||||
}, |
||||
onLoad(e) { |
||||
this.payprice = e.payprice; |
||||
this.orderNo = e.orderId; |
||||
this.couponId = e.couponId; |
||||
this.refulAdress = e.adres; |
||||
this.getOrderById(); |
||||
}, |
||||
onShow() { |
||||
let that = this; |
||||
that.paytype = ''; |
||||
that.user = app.globalData.userInfo; |
||||
// that.getHuiLianTongCardBalance(); |
||||
}, |
||||
methods: { |
||||
//密码支付完成 |
||||
submitHandle(e) { |
||||
this.PaymentPassword = e.value; |
||||
if (this.PaymentPassword == '') { |
||||
uni.showToast({ |
||||
title: '请勿手动关闭弹窗', |
||||
icon: 'none', |
||||
duration: 2000 |
||||
}) |
||||
return; |
||||
} |
||||
uni.showLoading({ |
||||
title: '支付中...' |
||||
}) |
||||
if (this.paytype == 'jifen') { |
||||
let params = { |
||||
"orderId": this.orderNo, |
||||
"password": this.PaymentPassword |
||||
} |
||||
orderToGoldPay(params).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' + this.orderNo |
||||
}); |
||||
return; |
||||
} |
||||
if (res.return_code == '102130') { |
||||
uni.navigateTo({ |
||||
url: '../../login/updatePas/updatePas' |
||||
}) |
||||
return; |
||||
} |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
icon: 'none' |
||||
}) |
||||
}) |
||||
return; |
||||
} |
||||
|
||||
let params = { |
||||
"orderId": this.orderNo, |
||||
"cardNo": this.user.hltCardNo.cardNo, |
||||
"password": this.PaymentPassword |
||||
} |
||||
hltUnionCardPay(params).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' + this.orderNo |
||||
}); |
||||
return; |
||||
} |
||||
if (res.return_code == '102130') { |
||||
uni.navigateTo({ |
||||
url: '../../login/updatePas/updatePas' |
||||
}) |
||||
return; |
||||
} |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
icon: 'none' |
||||
}) |
||||
}) |
||||
|
||||
|
||||
}, |
||||
//获取选择支付方式 |
||||
changeRiado() { |
||||
if (!this.user.isSetHltCard) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '当前账号还未绑定,前往绑定', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../../user/bindingCard/bindingCard' |
||||
}) |
||||
}, 1000) |
||||
} |
||||
}); |
||||
return; |
||||
} |
||||
}, |
||||
getOrderById() { |
||||
uni.showLoading({ |
||||
title: '加载中...' |
||||
}) |
||||
let params = { |
||||
orderId: this.orderNo, |
||||
} |
||||
getOrderById(params).then(res => { |
||||
uni.hideLoading(); |
||||
if (res.return_code == '000000') { |
||||
this.orderList = res.return_data.highChildOrderList[0]; |
||||
} |
||||
}) |
||||
}, |
||||
//查询工会卡余额 |
||||
getHuiLianTongCardBalance() { |
||||
let params = { |
||||
cardNo: this.user.hltCardNo.cardNo |
||||
} |
||||
getHuiLianTongCardBalance(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.tongCardPrice = res.return_data.balance; |
||||
} |
||||
|
||||
}); |
||||
}, |
||||
//获取订单数据 |
||||
orderToPay() { |
||||
let that = this; |
||||
if (that.paytype == '') { |
||||
uni.showToast({ |
||||
title: '请选择支付方式', |
||||
icon: 'none', |
||||
duration: 2000 |
||||
}) |
||||
return; |
||||
} |
||||
if (that.paytype == 'weixin') { |
||||
let params = { |
||||
"orderId": that.orderNo, |
||||
"openId": app.globalData.openId, |
||||
"orderScene": "GOODS_ORDER" |
||||
} |
||||
orderToPay(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
// #ifdef MP |
||||
uni.showLoading({ |
||||
title: '支付中...' |
||||
}) |
||||
uni.requestPayment({ |
||||
"appId": res.return_data.appId, |
||||
"nonceStr": res.return_data.nonceStr, |
||||
"package": res.return_data.package, |
||||
"paySign": res.return_data.sign, |
||||
"signType": "MD5", |
||||
"timeStamp": res.return_data.timeStamp, |
||||
success: function(res) { |
||||
uni.hideLoading(); |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' + |
||||
that.orderNo |
||||
}); |
||||
}, |
||||
fail: function(err) { |
||||
uni.hideLoading(); |
||||
}, |
||||
}); |
||||
// #endif |
||||
|
||||
//判断是否是公众号 |
||||
// #ifdef H5 |
||||
//判断微信浏览器 |
||||
that.payRequest(res); |
||||
// #endif |
||||
|
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}) |
||||
return; |
||||
} |
||||
if (that.paytype == 'gonghuika') { |
||||
if (!that.user.isSetPayPwd) { |
||||
uni.navigateTo({ |
||||
url: '../../login/updatePas/updatePas' |
||||
}) |
||||
return; |
||||
} |
||||
if (!that.user.isSetHltCard) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '当前账号还未绑定,前往绑定', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../../user/bindingCard/bindingCard' |
||||
}) |
||||
}, 1000) |
||||
} |
||||
}); |
||||
return; |
||||
} |
||||
that.$refs.paymentPassword.modalFun('show'); |
||||
} |
||||
|
||||
if (that.paytype == 'jifen') { |
||||
if (!that.user.isSetPayPwd) { |
||||
uni.navigateTo({ |
||||
url: '../../login/updatePas/updatePas' |
||||
}) |
||||
return; |
||||
} |
||||
that.$refs.paymentPassword.modalFun('show'); |
||||
} |
||||
|
||||
}, |
||||
payRequest: function(self) { |
||||
let that = this; |
||||
uni.showLoading({ |
||||
title: '支付中...' |
||||
}) |
||||
jweixin.config({ |
||||
// debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
||||
appId: self.return_data.appId, // 必填,公众号的唯一标识 |
||||
timestamp: self.return_data.timeStamp, // 必填,生成签名的时间戳 |
||||
nonceStr: self.return_data.nonceStr, // 必填,生成签名的随机串 |
||||
signature: self.return_data.sign, // 必填,签名,见附录1 |
||||
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
||||
}); |
||||
uni.hideLoading(); |
||||
jweixin.ready(function() { |
||||
jweixin.checkJsApi({ |
||||
jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2, |
||||
success: function(res) {}, |
||||
fail: function(res) {} |
||||
}); |
||||
jweixin.chooseWXPay({ |
||||
appId: self.return_data.appId, |
||||
timestamp: self.return_data |
||||
.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
||||
nonceStr: self.return_data.nonceStr, // 支付签名随机串,不长于 32 位 |
||||
package: self.return_data |
||||
.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
||||
signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
||||
paySign: self.return_data.sign, // 支付签名 |
||||
success: function(res) { |
||||
// 支付成功后的回调函数 |
||||
uni.showToast({ |
||||
title: '支付成功' |
||||
}) |
||||
uni.reLaunch({ |
||||
url: '/pages/goods/refuel-succes/refuel-succes?id=' + |
||||
that.orderNo |
||||
}); |
||||
}, |
||||
cancel: function(r) {}, |
||||
fail: function(res) {}, |
||||
complete: function(res) { |
||||
|
||||
} |
||||
}); |
||||
}); |
||||
|
||||
jweixin.error(function(res) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '支付失败了', |
||||
duration: 4000 |
||||
}); |
||||
// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。 |
||||
/*alert("config信息验证失败");*/ |
||||
}); |
||||
}, |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="less"> |
||||
page { |
||||
background-color: #f7f7f7; |
||||
} |
||||
|
||||
.conImg { |
||||
width: 100px; |
||||
height: 100px; |
||||
border-radius: 8px; |
||||
} |
||||
|
||||
.conCont { |
||||
margin-left: 115px; |
||||
} |
||||
|
||||
.slogan { |
||||
color: #807c87; |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
.footer { |
||||
position: fixed; |
||||
bottom: 0upx; |
||||
width: 100%; |
||||
height: 100rpx; |
||||
color: #FFFFFF; |
||||
border-top: solid 1upx #eee; |
||||
background-color: #FFFFFF; |
||||
z-index: 2; |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
|
||||
.reBtn { |
||||
width: 120px; |
||||
background-color: #089bf5; |
||||
color: #FFFFFF; |
||||
text-align: center; |
||||
padding: 0; |
||||
font-size: 16px; |
||||
border-radius: 0px; |
||||
height: 50px; |
||||
line-height: 50px; |
||||
position: absolute; |
||||
right: 0px; |
||||
} |
||||
} |
||||
</style> |
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,121 +1,129 @@ |
||||
<template> |
||||
<view> |
||||
<view class="width90 mart20 fotct" v-if="user.hltCardNo.cardNo"> |
||||
<image :src="imagewxUrl+imgadres" mode="widthFix" class="cardImg"></image> |
||||
<view class="cardlabel font18 fcorfff fontwig6" style="top: 50px;">卡号 : {{user.hltCardNo.cardNo}}</view> |
||||
<view class="cardlabel font18 fcorfff fontwig6" style="top: 80px;">余额 : {{tongCardPrice}}¥</view> |
||||
</view> |
||||
<view class="btnw50 font20 fontlet" @click="selectCards()">查询明细</view> |
||||
<view class="btnw50 font20 fontlet" @click="delUserCard()" v-if="user.hltCardNo">解绑</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
delUserCard, |
||||
getHuiLianTongCardBalance |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
user: '', |
||||
tongCardPrice:0, |
||||
imagewxUrl: app.globalData.imageWxImg, |
||||
imgadres: 'cards.jpg', |
||||
} |
||||
}, |
||||
onShow() { |
||||
this.user = app.globalData.userInfo; |
||||
if (!this.user.isSetHltCard) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '当前账号还未绑定,前往绑定', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../bindingCard/bindingCard' |
||||
}) |
||||
}, 1000) |
||||
} |
||||
}); |
||||
return; |
||||
} |
||||
this.getHuiLianTongCardBalance(); |
||||
}, |
||||
methods: { |
||||
//跳转明细 |
||||
selectCards() { |
||||
uni.navigateTo({ |
||||
url: '../unionCard/unionCard' |
||||
}) |
||||
}, |
||||
//解除绑定我的卡号列表 |
||||
delUserCard() { |
||||
let that = this; |
||||
uni.showModal({ |
||||
content: '是否确定解除当前绑定卡号?', |
||||
success: (res) => { |
||||
if (res.confirm) { |
||||
let params = { |
||||
cardNo: that.user.hltCardNo.cardNo |
||||
} |
||||
delUserCard(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '解除成功', |
||||
duration: 2000, |
||||
icon: 'success', |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateBack({}) |
||||
}, 1000) |
||||
} |
||||
}) |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
} else if (res.cancel) { |
||||
console.log('用户点击取消'); |
||||
} |
||||
} |
||||
}); |
||||
}, |
||||
//查询详情 |
||||
getHuiLianTongCardBalance() { |
||||
let params = { |
||||
cardNo: this.user.hltCardNo.cardNo |
||||
} |
||||
getHuiLianTongCardBalance(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.tongCardPrice = res.return_data.balance; |
||||
} |
||||
|
||||
}); |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
page { |
||||
background-color: #f8f8f8; |
||||
} |
||||
|
||||
.cardImg { |
||||
position: relative; |
||||
margin-top: 5px; |
||||
margin-bottom: 5px; |
||||
} |
||||
|
||||
.cardlabel { |
||||
position: absolute; |
||||
left: 13%; |
||||
} |
||||
<template> |
||||
<view> |
||||
<view class="width90 mart20 fotct" v-if="user.hltCardNo.cardNo"> |
||||
<image :src="imagewxUrl+imgadres" mode="widthFix" class="cardImg"></image> |
||||
<view class="cardlabel font18 fcorfff fontwig6" style="top: 50px;">卡号 : {{user.hltCardNo.cardNo}}</view> |
||||
<view class="cardlabel font18 fcorfff fontwig6" style="top: 80px;">余额 : {{tongCardPrice}}¥</view> |
||||
</view> |
||||
<view class="btnw50 font20 fontlet" @click="selectCards()">查询明细</view> |
||||
<view class="btnw50 font20 fontlet" @click="unionCardPay()">充值余额</view> |
||||
<view class="btnw50 font20 fontlet" @click="delUserCard()" v-if="user.hltCardNo">解绑</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
delUserCard, |
||||
getHuiLianTongCardBalance |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
user: '', |
||||
tongCardPrice: 0, |
||||
imagewxUrl: app.globalData.imageWxImg, |
||||
imgadres: 'cards.jpg', |
||||
} |
||||
}, |
||||
onShow() { |
||||
this.user = app.globalData.userInfo; |
||||
if (!this.user.isSetHltCard) { |
||||
uni.showToast({ |
||||
icon: 'none', |
||||
title: '当前账号还未绑定,前往绑定', |
||||
duration: 2000, |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateTo({ |
||||
url: '../bindingCard/bindingCard' |
||||
}) |
||||
}, 1000) |
||||
} |
||||
}); |
||||
return; |
||||
} |
||||
this.getHuiLianTongCardBalance(); |
||||
}, |
||||
methods: { |
||||
//跳转明细 |
||||
selectCards() { |
||||
uni.navigateTo({ |
||||
url: '../unionCard/unionCard' |
||||
}) |
||||
}, |
||||
//解除绑定我的卡号列表 |
||||
delUserCard() { |
||||
let that = this; |
||||
uni.showModal({ |
||||
content: '是否确定解除当前绑定卡号?', |
||||
success: (res) => { |
||||
if (res.confirm) { |
||||
let params = { |
||||
cardNo: that.user.hltCardNo.cardNo |
||||
} |
||||
delUserCard(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
uni.showToast({ |
||||
title: '解除成功', |
||||
duration: 2000, |
||||
icon: 'success', |
||||
success() { |
||||
setTimeout(() => { |
||||
uni.navigateBack({}) |
||||
}, 1000) |
||||
} |
||||
}) |
||||
} else { |
||||
uni.showToast({ |
||||
title: res.return_msg, |
||||
duration: 2000, |
||||
icon: 'none' |
||||
}) |
||||
} |
||||
}); |
||||
} else if (res.cancel) { |
||||
console.log('用户点击取消'); |
||||
} |
||||
} |
||||
}); |
||||
}, |
||||
//查询详情 |
||||
getHuiLianTongCardBalance() { |
||||
let params = { |
||||
cardNo: this.user.hltCardNo.cardNo |
||||
} |
||||
getHuiLianTongCardBalance(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.tongCardPrice = res.return_data.balance; |
||||
} |
||||
|
||||
}); |
||||
}, |
||||
//跳转充值 |
||||
unionCardPay() { |
||||
uni.navigateTo({ |
||||
url: '../../../subPages/trade-union-recharge/trade-union-recharge?cardId=' + this.user |
||||
.hltCardNo.cardNo + '&RechargeType=1' |
||||
}) |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
page { |
||||
background-color: #f8f8f8; |
||||
} |
||||
|
||||
.cardImg { |
||||
position: relative; |
||||
margin-top: 5px; |
||||
margin-bottom: 5px; |
||||
} |
||||
|
||||
.cardlabel { |
||||
position: absolute; |
||||
left: 13%; |
||||
} |
||||
</style> |
||||
|
@ -1,200 +1,246 @@ |
||||
<template> |
||||
<view> |
||||
<view class="width90"> |
||||
<view class="flright fotct"> |
||||
<image class="coupon-img" :src="imageUrl+couponsDetails.highDiscount.discountImg"></image> |
||||
</view> |
||||
<view class="coupon-mes mart10" style="margin-right: 90px;"> |
||||
<view class="fcor333 fontwig6 font24 width100 text2">{{couponsDetails.highDiscount.discountName}}</view> |
||||
<view class="fcor666 font13 width100 mart5"> |
||||
使用截止时间:{{salesEndTime | formatDate('-')}}</view> |
||||
</view> |
||||
<view class="fcor666 font13 width100 mart5"> |
||||
领取有效期:{{couponsDetails.highDiscount.effectiveDay}}天 |
||||
</view> |
||||
</view> |
||||
<view class="line1 mart15"></view> |
||||
<view class="width90 mart10 fcor666">可购买的商品</view> |
||||
<view v-if="minecoupones == '' " class="mart60 fotct font14 fcor666"> |
||||
<image mode="widthFix" style="width: 70vw;" :src="imagewxUrl+imgadres"></image> |
||||
</view> |
||||
<view class="product-list mart20 width90"> |
||||
<view class="product" v-for="product in minecoupones" :key="product.id" |
||||
@tap="toGoods(product.highCoupon.id)"> |
||||
<image mode="widthFix" :src="imageUrl+product.highCoupon.couponImg"></image> |
||||
<view class="name">{{ product.highCoupon.couponName }}</view> |
||||
<view class="info" v-if="product.highCoupon.payType == 1"> |
||||
<view class="price"> |
||||
¥{{ product.highCoupon.discountPrice}} |
||||
</view> |
||||
<view class="slogan" v-if="product.highCoupon.discountPrice !== product.highCoupon.salesPrice"> |
||||
¥{{ product.highCoupon.salesPrice}} |
||||
</view> |
||||
</view> |
||||
<view class="info" v-else> |
||||
<view class="price"> |
||||
<image style="width: 15px;height: 15px;vertical-align: sub;" |
||||
src="../../../static/img/jfx.png"> |
||||
</image>{{ product.highCoupon.discountPrice*100}} |
||||
</view> |
||||
<view class="slogan" v-if="product.highCoupon.discountPrice !== product.highCoupon.salesPrice"> |
||||
<image style="width: 15px;height: 15px;vertical-align: sub;" |
||||
src="../../../static/img/jfh.png"> |
||||
</image>{{ product.highCoupon.salesPrice*100}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getCouponByDiscount, |
||||
getDiscountByUserDiscountId |
||||
} from '../../../Utils/Api.js'; |
||||
let app = getApp(); |
||||
export default { |
||||
data() { |
||||
return { |
||||
minecoupones: [], |
||||
imageUrl: app.globalData.imgUrl, |
||||
imagewxUrl: app.globalData.imageWxImg, |
||||
imgadres:'noorder.png', |
||||
pageNum: 1, |
||||
pageSize: 10, |
||||
isNoMoreData: false, |
||||
couponsDetails: '', |
||||
salesEndTime: '', |
||||
couponId: '' |
||||
} |
||||
}, |
||||
filters: { |
||||
//过滤器 用于格式化时间 |
||||
formatDate: function(value, spe = '/') { |
||||
let data = new Date(value); |
||||
let year = data.getFullYear(); |
||||
let month = data.getMonth() + 1; |
||||
let day = data.getDate(); |
||||
let h = data.getHours(); |
||||
let mm = data.getMinutes(); |
||||
let s = data.getSeconds(); |
||||
month = month >= 10 ? month : "0" + month; |
||||
day = day >= 10 ? day : "0" + day; |
||||
h = h >= 10 ? h : "0" + h; |
||||
mm = mm >= 10 ? mm : "0" + mm; |
||||
s = s >= 10 ? s : "0" + s; |
||||
return `${year}${spe}${month}${spe}${day}`; |
||||
} |
||||
}, |
||||
onLoad(option) { |
||||
this.couponId = option.id; |
||||
this.getDiscountByUserDiscountId(); |
||||
}, |
||||
methods: { |
||||
//获取卡券详情 |
||||
getDiscountByUserDiscountId() { |
||||
let params = { |
||||
userDiscountId: this.couponId |
||||
} |
||||
getDiscountByUserDiscountId(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.couponsDetails = res.return_data; |
||||
this.salesEndTime = res.return_data.useEndTime; |
||||
this.getCouponByDiscount(res.return_data.highDiscount.id); |
||||
} |
||||
}) |
||||
}, |
||||
//根据优惠券查询卡券列表 |
||||
getCouponByDiscount(item) { |
||||
let params = { |
||||
discountId: item |
||||
} |
||||
getCouponByDiscount(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.minecoupones = res.return_data; |
||||
} |
||||
}) |
||||
}, |
||||
//商品跳转 |
||||
toGoods(e) { |
||||
uni.navigateTo({ |
||||
url: '../../order/confirmation?id=' + e |
||||
}) |
||||
// uni.navigateTo({ |
||||
// url: '../../goods/goods?id='+e |
||||
// }); |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.coupon-mes { |
||||
// margin-right: 90px; |
||||
} |
||||
|
||||
.coupon-img { |
||||
width: 80px; |
||||
height: 80px; |
||||
} |
||||
|
||||
.product-list { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
flex-wrap: wrap; |
||||
|
||||
.product { |
||||
width: 48%; |
||||
border-radius: 20upx; |
||||
background-color: #fff; |
||||
margin: 0 0 15upx 0; |
||||
box-shadow: 0upx 5upx 25upx rgba(0, 0, 0, 0.1); |
||||
|
||||
image { |
||||
width: 100%; |
||||
border-radius: 20upx 20upx 0 0; |
||||
} |
||||
|
||||
.name { |
||||
width: 92%; |
||||
padding: 8upx 4%; |
||||
display: -webkit-box; |
||||
-webkit-box-orient: vertical; |
||||
-webkit-line-clamp: 1; |
||||
text-align: justify; |
||||
overflow: hidden; |
||||
font-size: 30upx; |
||||
} |
||||
|
||||
.info { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: flex-end; |
||||
width: 92%; |
||||
padding: 10upx 4% 10upx 4%; |
||||
|
||||
.price { |
||||
color: #e65339; |
||||
font-size: 30upx; |
||||
font-weight: 600; |
||||
} |
||||
|
||||
.slogan { |
||||
color: #807c87; |
||||
font-size: 24upx; |
||||
text-decoration: line-through; |
||||
margin-right: 10px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.coupne-btn { |
||||
position: fixed; |
||||
bottom: 0px; |
||||
background-color: red; |
||||
color: #FFFFFF; |
||||
border-radius: 0px; |
||||
} |
||||
<template> |
||||
<view> |
||||
<view class="width90"> |
||||
<view class="flright fotct"> |
||||
<image class="coupon-img" :src="imageUrl+couponsDetails.highDiscount.discountImg"></image> |
||||
</view> |
||||
<view class="coupon-mes mart10" style="margin-right: 90px;"> |
||||
<view class="fcor333 fontwig6 font24 width100 text2">{{couponsDetails.highDiscount.discountName}}</view> |
||||
<view class="fcor666 font13 width100 mart5"> |
||||
使用截止时间:{{salesEndTime | formatDate('-')}}</view> |
||||
</view> |
||||
<view class="fcor666 font13 width100 mart5"> |
||||
领取有效期:{{couponsDetails.highDiscount.effectiveDay}}天 |
||||
</view> |
||||
</view> |
||||
<view class="line1 mart15"></view> |
||||
<view class="width90 mart10 fcor666">可购买的商品</view> |
||||
<view v-if="minecoupones == '' " class="mart60 fotct font14 fcor666"> |
||||
<image mode="widthFix" style="width: 70vw;" :src="imagewxUrl+imgadres"></image> |
||||
</view> |
||||
<view class="product-list mart20 width90"> |
||||
<view class="product" v-for="product in minecoupones" :key="product.id" |
||||
@tap="toGoods(product.highCoupon.id)"> |
||||
<image mode="widthFix" :src="imageUrl+product.highCoupon.couponImg"></image> |
||||
<view class="name">{{ product.highCoupon.couponName }}</view> |
||||
<view class="info" v-if="product.highCoupon.payType == 1"> |
||||
<view class="price"> |
||||
¥{{ product.highCoupon.discountPrice}} |
||||
</view> |
||||
<view class="slogan" v-if="product.highCoupon.discountPrice !== product.highCoupon.salesPrice"> |
||||
¥{{ product.highCoupon.salesPrice}} |
||||
</view> |
||||
</view> |
||||
<view class="info" v-else> |
||||
<view class="price"> |
||||
<image style="width: 15px;height: 15px;vertical-align: sub;" src="../../../static/img/jfx.png"> |
||||
</image>{{ product.highCoupon.discountPrice*100}} |
||||
</view> |
||||
<view class="slogan" v-if="product.highCoupon.discountPrice !== product.highCoupon.salesPrice"> |
||||
<image style="width: 15px;height: 15px;vertical-align: sub;" src="../../../static/img/jfh.png"> |
||||
</image>{{ product.highCoupon.salesPrice*100}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
<!-- <view class="width90 mart40 fcor666" v-if="videourl != ''">视频教程</view> |
||||
<view class="btnplay" @click="playvideo" v-if="videourl != ''">播放视频教学</view> |
||||
<view class="width80 mart20 marb30" v-if="isplayvideo"> |
||||
<yy-video-player :auto-play="false" :url="imageUrl+imagedess1" :poster="poster" :show-back-btn="true"> |
||||
</yy-video-player> |
||||
</view> --> |
||||
<view class="width90 mart40 fcor666" v-if="videourl != ''">临时通知</view> |
||||
<view class="alijus mart20 marb30" v-if="videourl != ''"> |
||||
<image mode="widthFix" :src="imageUrl+imagedess2"></image> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getCouponByDiscount, |
||||
getDiscountByUserDiscountId, |
||||
getCmsContent |
||||
} from '../../../Utils/Api.js'; |
||||
import xiaoVideoElement from '../../../components/yy-video-player/yy-video-player.nvue' |
||||
let app = getApp(); |
||||
export default { |
||||
components: { |
||||
xiaoVideoElement |
||||
}, |
||||
data() { |
||||
return { |
||||
minecoupones: [], |
||||
imageUrl: app.globalData.imgUrl, |
||||
imagewxUrl: app.globalData.imageWxImg, |
||||
imgadres: 'noorder.png', |
||||
imagedess1: '/CMS/html/11641540903873.mp4', |
||||
imagedess2: '/CMS/html/notice1.png', |
||||
pageNum: 1, |
||||
pageSize: 10, |
||||
isNoMoreData: false, |
||||
couponsDetails: '', |
||||
salesEndTime: '', |
||||
couponId: '', |
||||
videourl: '', //视频地址 |
||||
isplayvideo: false //视频播放 |
||||
} |
||||
}, |
||||
filters: { |
||||
//过滤器 用于格式化时间 |
||||
formatDate: function(value, spe = '/') { |
||||
let data = new Date(value); |
||||
let year = data.getFullYear(); |
||||
let month = data.getMonth() + 1; |
||||
let day = data.getDate(); |
||||
let h = data.getHours(); |
||||
let mm = data.getMinutes(); |
||||
let s = data.getSeconds(); |
||||
month = month >= 10 ? month : "0" + month; |
||||
day = day >= 10 ? day : "0" + day; |
||||
h = h >= 10 ? h : "0" + h; |
||||
mm = mm >= 10 ? mm : "0" + mm; |
||||
s = s >= 10 ? s : "0" + s; |
||||
return `${year}${spe}${month}${spe}${day}`; |
||||
} |
||||
}, |
||||
onLoad(option) { |
||||
this.couponId = option.id; |
||||
this.getDiscountByUserDiscountId(); |
||||
this.getCmsContentvideo(); |
||||
}, |
||||
methods: { |
||||
//获取视频资料 |
||||
getCmsContentvideo() { |
||||
let params = { |
||||
regionId: app.globalData.cityId, |
||||
categoryCode: 'CMS_H5_VIDEO' |
||||
} |
||||
getCmsContent(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.videourl = res.return_data; |
||||
} |
||||
}); |
||||
}, |
||||
//获取卡券详情 |
||||
getDiscountByUserDiscountId() { |
||||
let params = { |
||||
userDiscountId: this.couponId |
||||
} |
||||
getDiscountByUserDiscountId(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.couponsDetails = res.return_data; |
||||
this.salesEndTime = res.return_data.useEndTime; |
||||
this.getCouponByDiscount(res.return_data.highDiscount.id); |
||||
} |
||||
}) |
||||
}, |
||||
//根据优惠券查询卡券列表 |
||||
getCouponByDiscount(item) { |
||||
let params = { |
||||
discountId: item |
||||
} |
||||
getCouponByDiscount(params).then(res => { |
||||
if (res.return_code == '000000') { |
||||
this.minecoupones = res.return_data; |
||||
} |
||||
}) |
||||
}, |
||||
//商品跳转 |
||||
toGoods(e) { |
||||
uni.navigateTo({ |
||||
url: '../../order/confirmation?id=' + e |
||||
}) |
||||
// uni.navigateTo({ |
||||
// url: '../../goods/goods?id='+e |
||||
// }); |
||||
}, |
||||
//播放视频 |
||||
playvideo() { |
||||
this.isplayvideo = true; |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
.coupon-mes { |
||||
// margin-right: 90px; |
||||
} |
||||
|
||||
.coupon-img { |
||||
width: 80px; |
||||
height: 80px; |
||||
} |
||||
|
||||
.product-list { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
flex-wrap: wrap; |
||||
|
||||
.product { |
||||
width: 48%; |
||||
border-radius: 20upx; |
||||
background-color: #fff; |
||||
margin: 0 0 15upx 0; |
||||
box-shadow: 0upx 5upx 25upx rgba(0, 0, 0, 0.1); |
||||
|
||||
image { |
||||
width: 100%; |
||||
border-radius: 20upx 20upx 0 0; |
||||
} |
||||
|
||||
.name { |
||||
width: 92%; |
||||
padding: 8upx 4%; |
||||
display: -webkit-box; |
||||
-webkit-box-orient: vertical; |
||||
-webkit-line-clamp: 1; |
||||
text-align: justify; |
||||
overflow: hidden; |
||||
font-size: 30upx; |
||||
} |
||||
|
||||
.info { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: flex-end; |
||||
width: 92%; |
||||
padding: 10upx 4% 10upx 4%; |
||||
|
||||
.price { |
||||
color: #e65339; |
||||
font-size: 30upx; |
||||
font-weight: 600; |
||||
} |
||||
|
||||
.slogan { |
||||
color: #807c87; |
||||
font-size: 24upx; |
||||
text-decoration: line-through; |
||||
margin-right: 10px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.coupne-btn { |
||||
position: fixed; |
||||
bottom: 0px; |
||||
background-color: red; |
||||
color: #FFFFFF; |
||||
border-radius: 0px; |
||||
} |
||||
|
||||
.btnplay { |
||||
width: 120px; |
||||
text-align: center; |
||||
height: 40px; |
||||
line-height: 40px; |
||||
color: #FFFFFF; |
||||
background-color: #089bf5; |
||||
border-radius: 5px; |
||||
margin-left: 5%; |
||||
margin-top: 20px; |
||||
} |
||||
</style> |
||||
|
After Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 175 KiB After Width: | Height: | Size: 153 KiB |
@ -0,0 +1,34 @@ |
||||
<template> |
||||
<view> |
||||
<image src="../static/coupsucces.png" mode="widthFix" class="sucimg mart40"></image> |
||||
<view class="width90 clor4cd964 mart30 font18 fotct">支付成功</view> |
||||
<view class="width90 fcor333 mart30 font48 fotct">¥ {{sucprice}}</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
data() { |
||||
return { |
||||
sucprice:'' |
||||
} |
||||
}, |
||||
onLoad(options) { |
||||
this.sucprice = options.price; |
||||
}, |
||||
methods: { |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="less"> |
||||
.sucimg { |
||||
width: 20%; |
||||
margin-left: 40%; |
||||
} |
||||
|
||||
.clor4cd964 { |
||||
color: #76b554; |
||||
} |
||||
</style> |
Loading…
Reference in new issue