1
This commit is contained in:
parent
e33b3c9543
commit
da413b862b
@ -9,6 +9,14 @@
|
|||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
import request from "@/utils/request.js";
|
import request from "@/utils/request.js";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验支付密码是否正确
|
||||||
|
* @param numType
|
||||||
|
*/
|
||||||
|
export function verifyPwd(data) {
|
||||||
|
return request.post("order/verifyPwd", data);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 上传对公账户凭证
|
* 上传对公账户凭证
|
||||||
* @param numType boolean true 购物车数量,false=购物车产品数量
|
* @param numType boolean true 购物车数量,false=购物车产品数量
|
||||||
|
92
components/payPwd/index.vue
Normal file
92
components/payPwd/index.vue
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
<template>
|
||||||
|
<uni-popup ref="payModal" type="center" safeArea :animation="true">
|
||||||
|
<view class="payModal">
|
||||||
|
<view class="payModal-title">{{code == 101?'未设置密码':'支付密码错误'}}</view>
|
||||||
|
<view class="payModal-btns">
|
||||||
|
<view class="wrap" style="display: flex;flex: 1;" v-if="code == 101">
|
||||||
|
<view class="payModal-btns-left payModal-common" @click="handleClick(1)">设置密码</view>
|
||||||
|
<view class="payModal-btns-right payModal-common" @click="handleClick(2)">取消</view>
|
||||||
|
</view>
|
||||||
|
<view class="wrap" style="display: flex;flex: 1;" v-else>
|
||||||
|
<view class="payModal-btns-left payModal-common" @click="handleClick(1)">忘记密码</view>
|
||||||
|
<view class="payModal-btns-right payModal-common" @click="handleClick(2)">重试</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</uni-popup>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
code: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
// 打开
|
||||||
|
handleOpen(code) {
|
||||||
|
this.code = code;
|
||||||
|
this.$refs.payModal.open();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 关闭
|
||||||
|
handleClose() {
|
||||||
|
this.$refs.payModal.close();
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(type) {
|
||||||
|
if (type == 1) {
|
||||||
|
this.$emit('left', this.code);
|
||||||
|
} else {
|
||||||
|
this.$emit("right", this.code);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.payModal {
|
||||||
|
width: 600rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
|
||||||
|
.payModal-title {
|
||||||
|
text-align: center;
|
||||||
|
padding: 40rpx 50rpx 50rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #333;
|
||||||
|
border-bottom: 2rpx solid #e6e6e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payModal-btns {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
.payModal-btns-left {
|
||||||
|
height: 88rpx;
|
||||||
|
line-height: 88rpx;
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
border-right: 2rpx solid #e6e6e6;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payModal-btns-right {
|
||||||
|
color: #2a5ac2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payModal-common {
|
||||||
|
height: 88rpx;
|
||||||
|
line-height: 88rpx;
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -4,8 +4,8 @@
|
|||||||
<view class="title acea-row row-center-wrapper">
|
<view class="title acea-row row-center-wrapper">
|
||||||
选择付款方式<text class="iconfont icon-guanbi" @click='close'></text>
|
选择付款方式<text class="iconfont icon-guanbi" @click='close'></text>
|
||||||
</view>
|
</view>
|
||||||
<view class="item acea-row row-between-wrapper" @click='goPay(item.number || 0 , item.value)' v-for="(item,index) in payMode" v-if="item.payStatus==1"
|
<view class="item acea-row row-between-wrapper" @click='goPay(item.number || 0 , item.value)'
|
||||||
:key="index">
|
v-for="(item,index) in payMode" v-if="item.payStatus==1" :key="index">
|
||||||
<view class="left acea-row row-between-wrapper">
|
<view class="left acea-row row-between-wrapper">
|
||||||
<view class="iconfont" :class="item.icon"></view>
|
<view class="iconfont" :class="item.icon"></view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
@ -20,6 +20,12 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="mask" ref="close" @click='close' v-if="pay_close"></view>
|
<view class="mask" ref="close" @click='close' v-if="pay_close"></view>
|
||||||
|
|
||||||
|
<!-- 支付密码 键盘 -->
|
||||||
|
<popups ref="popups" :isPay="true" @confirm="handleConfirm" @clear="handleClear" @change="handleChange" />
|
||||||
|
|
||||||
|
<!-- 密码错误事件处理 -->
|
||||||
|
<payPwd ref="payPwd" @left="handleLeft" @right="handleRight"></payPwd>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -36,9 +42,16 @@
|
|||||||
import {
|
import {
|
||||||
orderPay,
|
orderPay,
|
||||||
integralOrderPay,
|
integralOrderPay,
|
||||||
presellOrderPay
|
presellOrderPay,
|
||||||
|
verifyPwd
|
||||||
} from '@/api/order.js';
|
} from '@/api/order.js';
|
||||||
|
import payPwd from "@/components/payPwd/index.vue";
|
||||||
|
import popups from "@/components/popups/index.vue";
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
payPwd,
|
||||||
|
popups
|
||||||
|
},
|
||||||
props: {
|
props: {
|
||||||
payMode: {
|
payMode: {
|
||||||
type: Array,
|
type: Array,
|
||||||
@ -73,12 +86,10 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
type: ''
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted:function(){
|
|
||||||
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
close: function() {
|
close: function() {
|
||||||
this.$emit('onChangeFun', {
|
this.$emit('onChangeFun', {
|
||||||
@ -113,6 +124,8 @@
|
|||||||
// #ifdef MP
|
// #ifdef MP
|
||||||
type = 'alipayQr';
|
type = 'alipayQr';
|
||||||
// #endif
|
// #endif
|
||||||
|
} else if (paytype == 'public') {
|
||||||
|
type = 'public';
|
||||||
}
|
}
|
||||||
if (!that.order_id) return that.$util.Tips({
|
if (!that.order_id) return that.$util.Tips({
|
||||||
title: '请选择要支付的订单'
|
title: '请选择要支付的订单'
|
||||||
@ -120,14 +133,72 @@
|
|||||||
if (paytype == 'balance' && parseFloat(number) < parseFloat(that.totalPrice)) return that.$util.Tips({
|
if (paytype == 'balance' && parseFloat(number) < parseFloat(that.totalPrice)) return that.$util.Tips({
|
||||||
title: '余额不足!'
|
title: '余额不足!'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.type = type;
|
||||||
|
|
||||||
|
if (paytype == 'balance' || paytype == 'merBalance') {
|
||||||
|
this.$refs.popups.handleOpen();
|
||||||
|
} else {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: '支付中'
|
title: '订单支付中'
|
||||||
});
|
});
|
||||||
let orderApi = that.order_type === 1 ? presellOrderPay : that.order_type === 2 ? integralOrderPay : orderPay
|
this.trueOrderPay();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 输入密码回调
|
||||||
|
handleConfirm(e) {
|
||||||
|
// 验证密码是否正确
|
||||||
|
verifyPwd({
|
||||||
|
withdrawal_pwd: e
|
||||||
|
}).then(res => {
|
||||||
|
// 密码是否有效 状态码判断
|
||||||
|
const code = res.data.code;
|
||||||
|
|
||||||
|
if (code == 100) { //密码正确
|
||||||
|
uni.showLoading({
|
||||||
|
title: '订单支付中',
|
||||||
|
mask: true
|
||||||
|
});
|
||||||
|
this.trueOrderPay();
|
||||||
|
} else {
|
||||||
|
this.$refs.payPwd.handleOpen(code);
|
||||||
|
}
|
||||||
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClear() {},
|
||||||
|
handleChange() {},
|
||||||
|
|
||||||
|
// 弹框左边按钮 101 未设置密码 102 忘记密码 都去设置密码
|
||||||
|
handleLeft(code) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/users/user_modify_pwd/index?type=payPwd"
|
||||||
|
});
|
||||||
|
this.$refs.payPwd.handleClose();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 弹框右边按钮 取消 重试
|
||||||
|
handleRight(code) {
|
||||||
|
if (code == 101) { //取消
|
||||||
|
this.$refs.payPwd.handleClose(code);
|
||||||
|
} else {
|
||||||
|
this.$refs.payPwd.handleClose();
|
||||||
|
this.$refs.popups.handleOpen();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
trueOrderPay() {
|
||||||
|
let that = this;
|
||||||
|
let orderApi = that.order_type === 1 ? presellOrderPay : that.order_type === 2 ? integralOrderPay :
|
||||||
|
orderPay
|
||||||
orderApi(that.order_id, {
|
orderApi(that.order_id, {
|
||||||
type: type,
|
type: that.type,
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
return_url: that.returnUrl!=='' ? 'http://'+window.location.host+that.returnUrl : 'http://'+window.location.host+'/pages/users/order_list/index',
|
return_url: that.returnUrl !== '' ? 'http://' + window.location.host + that.returnUrl :
|
||||||
|
'http://' + window.location.host + '/pages/users/order_list/index',
|
||||||
// #endif
|
// #endif
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
let status = res.data.status,
|
let status = res.data.status,
|
||||||
@ -168,7 +239,8 @@
|
|||||||
action: 'payClose'
|
action: 'payClose'
|
||||||
});
|
});
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/order_pay_back/index?keyCode='+callback_key+'&url='+jsConfig,
|
url: '/pages/order_pay_back/index?keyCode=' + callback_key + '&url=' +
|
||||||
|
jsConfig,
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
break;
|
break;
|
||||||
@ -269,7 +341,8 @@
|
|||||||
that.$emit('onChangeFun', {
|
that.$emit('onChangeFun', {
|
||||||
action: 'payClose'
|
action: 'payClose'
|
||||||
});
|
});
|
||||||
if (that.BargainId || that.combinationId || that.pinkId || that.seckillId)
|
if (that.BargainId || that.combinationId || that.pinkId || that
|
||||||
|
.seckillId)
|
||||||
return that.$util.Tips({
|
return that.$util.Tips({
|
||||||
title: '支付成功',
|
title: '支付成功',
|
||||||
icon: 'success'
|
icon: 'success'
|
||||||
@ -319,6 +392,16 @@
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
|
case "public":
|
||||||
|
uni.hideLoading();
|
||||||
|
that.$emit('onChangeFun', {
|
||||||
|
action: 'payClose'
|
||||||
|
});
|
||||||
|
//余额不足
|
||||||
|
return that.$util.Tips({
|
||||||
|
title: "下单成功,请上传付款凭证!"
|
||||||
|
});
|
||||||
|
break;
|
||||||
case 'h5':
|
case 'h5':
|
||||||
let host = window.location.protocol + "//" + window.location.host;
|
let host = window.location.protocol + "//" + window.location.host;
|
||||||
let url = `${host}/pages/order_pay_status/index?order_id=${orderId}`
|
let url = `${host}/pages/order_pay_status/index?order_id=${orderId}`
|
||||||
|
@ -1,37 +1,80 @@
|
|||||||
<template>
|
<template>
|
||||||
<uni-popup ref="popup" type="bottom" mask-background-color="rgba(0,0,0,0)" safeArea backgroundColor="#fff"
|
<view>
|
||||||
:animation="true" @maskClick="maskClick">
|
<uni-popup ref="popup" type="bottom" :mask-background-color="isPay?'rgba(0,0,0,.8)':'transparent'" safeArea
|
||||||
<view class="keyboard">
|
backgroundColor="transparent" :animation="true" @maskClick="maskClick">
|
||||||
<view class="keyboard-left">
|
<view class="popup-wrap" :style="{'border-radius':isPay?'': 0}">
|
||||||
<block v-for="(item,indx) in keys" :key="indx">
|
<view class="paybox" v-if="isPay">
|
||||||
<view class="keyboard-left-item word active" v-if="item != 'del'" @click="handleClick(item)">
|
<view class="paybox-title">
|
||||||
{{item}}
|
<view class="paybox-title-left"></view>
|
||||||
|
<view class="paybox-title-middle">请输入支付密码</view>
|
||||||
|
<view class="paybox-titler-right" @click="handleClose">
|
||||||
|
<u-icon name="close" size="18" color="#666" />
|
||||||
</view>
|
</view>
|
||||||
<view class="keyboard-left-item active del" v-else @click="handleClick(item)">
|
</view>
|
||||||
|
<view class="paybox-input">
|
||||||
|
<u-code-input v-model="value" mode="box" dot readonly></u-code-input>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="keyboard">
|
||||||
|
<view class="keyboard-left" :style="{width:isPay?'100%':''}">
|
||||||
|
<block v-for="(item,indx) in keys" :key="indx">
|
||||||
|
<view class="keyboard-left-item active del" v-if="item=='del'" @click="handleClick(item)">
|
||||||
<image style="width: 48rpx;height: 48rpx;" src="@/static/del.webp" />
|
<image style="width: 48rpx;height: 48rpx;" src="@/static/del.webp" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<view class="keyboard-left-item word active"
|
||||||
|
:style="{width:isPay?'0%':'',border:isPay?'0':''}" v-else-if="item == '.'"
|
||||||
|
@click="handleClick(item)">
|
||||||
|
{{isPay?'':item}}
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="keyboard-left-item word active"
|
||||||
|
:style="{width:(isPay && item == '0')?'66.66%':''}" v-else @click="handleClick(item)">
|
||||||
|
{{item}}
|
||||||
|
</view>
|
||||||
</block>
|
</block>
|
||||||
</view>
|
</view>
|
||||||
<view class="keyboard-right">
|
<view class="keyboard-right" :style="{width:isPay?'0%':''}">
|
||||||
<view class="keyboard-right-clear word active" @click="handleClear">清空</view>
|
<view class="keyboard-right-clear word active" @click="handleClear">清空</view>
|
||||||
<view class="keyboard-right-pay word active-pay" @click="handlePay">付款</view>
|
<view class="keyboard-right-pay word active-pay" @click="handlePay">{{txt}}</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</uni-popup>
|
</uni-popup>
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "popups",
|
name: "popups",
|
||||||
|
props: {
|
||||||
|
txt: {
|
||||||
|
type: String,
|
||||||
|
default: '付款'
|
||||||
|
},
|
||||||
|
isPay: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
}
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
keys: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, '.', 'del'],
|
keys: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, '.', 'del'],
|
||||||
value: ''
|
value: '',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
value(newVal, oldVal) {
|
||||||
|
// 输入密码走此处
|
||||||
|
if (newVal.length == 6 && this.isPay) {
|
||||||
|
this.handlePay();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
// 键盘点击
|
// 键盘点击
|
||||||
handleClick(item) {
|
handleClick(item) {
|
||||||
if (this.value.length >= 10) return;
|
if (this.value.length >= 10) return;
|
||||||
@ -48,11 +91,16 @@
|
|||||||
else
|
else
|
||||||
this.value = this.value.substring(0, this.value.length - 1);
|
this.value = this.value.substring(0, this.value.length - 1);
|
||||||
} else if (item == 0) {
|
} else if (item == 0) {
|
||||||
|
if (this.isPay) {
|
||||||
|
this.value = this.value + item;
|
||||||
|
} else {
|
||||||
if (this.value) {
|
if (this.value) {
|
||||||
if (this.value.lastIndexOf('.') != -1 && this.value.length - this.value.lastIndexOf('.') == 3)
|
if (this.value.lastIndexOf('.') != -1 && this.value.length - this.value.lastIndexOf('.') == 3)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.value = this.value + item;
|
this.value = this.value + item;
|
||||||
|
} else {
|
||||||
|
this.value = this.value + item;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (this.value.lastIndexOf('.') != -1 && this.value.length - this.value.lastIndexOf('.') == 3) return;
|
if (this.value.lastIndexOf('.') != -1 && this.value.length - this.value.lastIndexOf('.') == 3) return;
|
||||||
@ -81,6 +129,8 @@
|
|||||||
|
|
||||||
// 开启
|
// 开启
|
||||||
handleOpen() {
|
handleOpen() {
|
||||||
|
this.value = '';
|
||||||
|
console.log('123:' + this.value);
|
||||||
this.$refs.popup.open();
|
this.$refs.popup.open();
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -89,7 +139,6 @@
|
|||||||
this.$refs.popup.close();
|
this.$refs.popup.close();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
maskClick() {
|
maskClick() {
|
||||||
// 如果最后一位是. 去除
|
// 如果最后一位是. 去除
|
||||||
if (this.value && this.value.endsWith('.')) {
|
if (this.value && this.value.endsWith('.')) {
|
||||||
@ -101,10 +150,46 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss" scoped>
|
||||||
|
.popup-wrap {
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 30rpx 30rpx 0 0;
|
||||||
|
|
||||||
|
.paybox {
|
||||||
|
.paybox-title {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 40rpx;
|
||||||
|
|
||||||
|
.paybox-title-left {}
|
||||||
|
|
||||||
|
.paybox-title-middle {
|
||||||
|
font-size: 30rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paybox-titler-right {}
|
||||||
|
}
|
||||||
|
|
||||||
|
.paybox-input {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
|
||||||
|
/deep/.u-code-input__item {
|
||||||
|
background-color: #E6E6E6;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
border: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.keyboard {
|
.keyboard {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-bottom: 20rpx;
|
padding-bottom: 20rpx;
|
||||||
|
border-top: 2rpx solid #E6E6E6;
|
||||||
|
|
||||||
.keyboard-left {
|
.keyboard-left {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
|
167
components/popups/index_backup.vue
Normal file
167
components/popups/index_backup.vue
Normal file
@ -0,0 +1,167 @@
|
|||||||
|
<template>
|
||||||
|
<uni-popup ref="popup" type="bottom" mask-background-color="rgba(0,0,0,0)" safeArea backgroundColor="#fff"
|
||||||
|
:animation="true" @maskClick="maskClick">
|
||||||
|
|
||||||
|
<view style="padding:40rpx;display: flex;justify-content: center;align-items: center;">
|
||||||
|
<u-code-input v-model="value" mode="box" dot readonly></u-code-input>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="keyboard">
|
||||||
|
<view class="keyboard-left">
|
||||||
|
<block v-for="(item,indx) in keys" :key="indx">
|
||||||
|
<view class="keyboard-left-item word active" v-if="item != 'del'" @click="handleClick(item)">
|
||||||
|
{{item}}
|
||||||
|
</view>
|
||||||
|
<view class="keyboard-left-item active del" v-else @click="handleClick(item)">
|
||||||
|
<image style="width: 48rpx;height: 48rpx;" src="@/static/del.webp" />
|
||||||
|
</view>
|
||||||
|
</block>
|
||||||
|
</view>
|
||||||
|
<view class="keyboard-right">
|
||||||
|
<view class="keyboard-right-clear word active" @click="handleClear">清空</view>
|
||||||
|
<view class="keyboard-right-pay word active-pay" @click="handlePay">付款</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</uni-popup>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "popups",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
keys: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, '.', 'del'],
|
||||||
|
value: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
// 键盘点击
|
||||||
|
handleClick(item) {
|
||||||
|
if (this.value.length >= 10) return;
|
||||||
|
if (item == ".") {
|
||||||
|
if (!this.value) {
|
||||||
|
this.value = '0.';
|
||||||
|
} else {
|
||||||
|
if (this.value.indexOf('.') > -1) return;
|
||||||
|
this.value = this.value + item;
|
||||||
|
}
|
||||||
|
} else if (item == 'del') {
|
||||||
|
if (this.value == "0.")
|
||||||
|
this.value = this.value.substring(0, 0);
|
||||||
|
else
|
||||||
|
this.value = this.value.substring(0, this.value.length - 1);
|
||||||
|
} else if (item == 0) {
|
||||||
|
if (this.value) {
|
||||||
|
if (this.value.lastIndexOf('.') != -1 && this.value.length - this.value.lastIndexOf('.') == 3)
|
||||||
|
return;
|
||||||
|
|
||||||
|
this.value = this.value + item;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (this.value.lastIndexOf('.') != -1 && this.value.length - this.value.lastIndexOf('.') == 3) return;
|
||||||
|
this.value = this.value + item;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$emit('change', this.value);
|
||||||
|
},
|
||||||
|
|
||||||
|
// 清空
|
||||||
|
handleClear() {
|
||||||
|
this.value = '';
|
||||||
|
this.$emit('clear');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 付款
|
||||||
|
handlePay() {
|
||||||
|
// 如果最后一位是. 去除
|
||||||
|
if (this.value && this.value.endsWith('.')) {
|
||||||
|
this.value = this.value.replace('.', '');
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$emit('confirm', this.value);
|
||||||
|
this.handleClose();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 开启
|
||||||
|
handleOpen() {
|
||||||
|
this.$refs.popup.open();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 关闭
|
||||||
|
handleClose() {
|
||||||
|
this.$refs.popup.close();
|
||||||
|
},
|
||||||
|
|
||||||
|
maskClick() {
|
||||||
|
// 如果最后一位是. 去除
|
||||||
|
if (this.value && this.value.endsWith('.')) {
|
||||||
|
this.value = this.value.replace('.', '');
|
||||||
|
}
|
||||||
|
this.$emit('change', this.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.keyboard {
|
||||||
|
display: flex;
|
||||||
|
padding-bottom: 20rpx;
|
||||||
|
|
||||||
|
.keyboard-left {
|
||||||
|
width: 75%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.keyboard-left-item {
|
||||||
|
width: 33.3%;
|
||||||
|
height: 120rpx;
|
||||||
|
line-height: 102rpx;
|
||||||
|
border-bottom: 2rpx solid #E6E6E6;
|
||||||
|
border-right: 2rpx solid #E6E6E6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.del {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.keyboard-right {
|
||||||
|
width: 25%;
|
||||||
|
|
||||||
|
.keyboard-right-clear {
|
||||||
|
width: 100%;
|
||||||
|
height: 240rpx;
|
||||||
|
line-height: 226rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.keyboard-right-pay {
|
||||||
|
width: 100%;
|
||||||
|
height: 240rpx;
|
||||||
|
line-height: 226rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #40AE36;
|
||||||
|
color: #fff !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.word {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 34rpx;
|
||||||
|
color: #000000;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active:active {
|
||||||
|
background-color: rgba(232, 232, 232, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.active-pay:active {
|
||||||
|
opacity: .9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
0
mixins/password.js
Normal file
0
mixins/password.js
Normal file
@ -63,9 +63,9 @@
|
|||||||
<popups ref="popups" @confirm="handleConfirm" @clear="handleClear" @change="handleChange"></popups>
|
<popups ref="popups" @confirm="handleConfirm" @clear="handleClear" @change="handleChange"></popups>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var that;
|
var that;
|
||||||
|
|
||||||
import {
|
import {
|
||||||
getProductInfo,
|
getProductInfo,
|
||||||
addCart,
|
addCart,
|
||||||
@ -128,6 +128,10 @@
|
|||||||
this.mer_id = opt.mer_id;
|
this.mer_id = opt.mer_id;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onReady() {
|
||||||
|
this.$refs.payModal.open();
|
||||||
|
},
|
||||||
|
|
||||||
onShow() {
|
onShow() {
|
||||||
if (!this.isLogin) {
|
if (!this.isLogin) {
|
||||||
Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id);
|
Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id);
|
||||||
|
@ -482,8 +482,11 @@
|
|||||||
<areaWindow ref="areaWindow" :display="display" :address='addressInfoArea' :cityShow='cityShow'
|
<areaWindow ref="areaWindow" :display="display" :address='addressInfoArea' :cityShow='cityShow'
|
||||||
@submit="OnAreaAddress" @changeClose="changeAddressClose"></areaWindow>
|
@submit="OnAreaAddress" @changeClose="changeAddressClose"></areaWindow>
|
||||||
|
|
||||||
<!-- 支付密码 -->
|
<!-- 支付密码 键盘 -->
|
||||||
<!-- <popups></popups> -->
|
<popups ref="popups" :isPay="true" @confirm="handleConfirm" @clear="handleClear" @change="handleChange" />
|
||||||
|
|
||||||
|
<!-- 密码错误事件处理 -->
|
||||||
|
<payPwd ref="payPwd" @left="handleLeft" @right="handleRight"></payPwd>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
@ -504,7 +507,8 @@
|
|||||||
getOrderConfirm,
|
getOrderConfirm,
|
||||||
getCouponsOrderPrice,
|
getCouponsOrderPrice,
|
||||||
orderCreate,
|
orderCreate,
|
||||||
createOrder
|
createOrder,
|
||||||
|
verifyPwd
|
||||||
} from '@/api/order.js';
|
} from '@/api/order.js';
|
||||||
import {
|
import {
|
||||||
getAddressDefault,
|
getAddressDefault,
|
||||||
@ -537,6 +541,7 @@
|
|||||||
import discountDetails from '@/components/discountDetails/index.vue';
|
import discountDetails from '@/components/discountDetails/index.vue';
|
||||||
import addInvoicing from '@/components/addInvoicing';
|
import addInvoicing from '@/components/addInvoicing';
|
||||||
import parser from "@/components/jyf-parser/jyf-parser";
|
import parser from "@/components/jyf-parser/jyf-parser";
|
||||||
|
import payPwd from "@/components/payPwd/index.vue";
|
||||||
import {
|
import {
|
||||||
mapGetters
|
mapGetters
|
||||||
} from "vuex";
|
} from "vuex";
|
||||||
@ -555,6 +560,7 @@
|
|||||||
import popups from "@/components/popups/index.vue";
|
import popups from "@/components/popups/index.vue";
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
|
payPwd,
|
||||||
couponListWindow,
|
couponListWindow,
|
||||||
addressWindow,
|
addressWindow,
|
||||||
orderGoods,
|
orderGoods,
|
||||||
@ -637,12 +643,10 @@
|
|||||||
radioList: [{
|
radioList: [{
|
||||||
title: this.deliveryName,
|
title: this.deliveryName,
|
||||||
check: true
|
check: true
|
||||||
},
|
}, {
|
||||||
{
|
|
||||||
title: '到店核销',
|
title: '到店核销',
|
||||||
check: false
|
check: false
|
||||||
}
|
}],
|
||||||
],
|
|
||||||
payType: 'weixin', //支付方式
|
payType: 'weixin', //支付方式
|
||||||
openType: 1, //优惠券打开方式 1=使用
|
openType: 1, //优惠券打开方式 1=使用
|
||||||
active: 0, //支付方式切换
|
active: 0, //支付方式切换
|
||||||
@ -748,7 +752,8 @@
|
|||||||
addressInfoArea: [],
|
addressInfoArea: [],
|
||||||
timeranges: [],
|
timeranges: [],
|
||||||
isShow: false,
|
isShow: false,
|
||||||
moneyInfo: {}
|
moneyInfo: {},
|
||||||
|
orderData: {}, //支付参数
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -909,6 +914,7 @@
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/*获取发票说明*/
|
/*获取发票说明*/
|
||||||
getAgreement() {
|
getAgreement() {
|
||||||
let that = this
|
let that = this
|
||||||
@ -918,6 +924,7 @@
|
|||||||
that.protocol = res.data.sys_receipt_agree
|
that.protocol = res.data.sys_receipt_agree
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/*获取发票说明*/
|
/*获取发票说明*/
|
||||||
getCouponAgreement() {
|
getCouponAgreement() {
|
||||||
let that = this
|
let that = this
|
||||||
@ -1664,9 +1671,11 @@
|
|||||||
let that = this
|
let that = this
|
||||||
that.$set(that.order_extend[that.virtualIndex], 'value', e.detail.value);
|
that.$set(that.order_extend[that.virtualIndex], 'value', e.detail.value);
|
||||||
},
|
},
|
||||||
|
|
||||||
getTime(index) {
|
getTime(index) {
|
||||||
this.virtualIndex = index;
|
this.virtualIndex = index;
|
||||||
},
|
},
|
||||||
|
|
||||||
SubOrder: function(e) {
|
SubOrder: function(e) {
|
||||||
let that = this,
|
let that = this,
|
||||||
data = {};
|
data = {};
|
||||||
@ -1808,30 +1817,81 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (data.pay_type == 'balance' && parseFloat(that.userInfo.now_money) < parseFloat(that.totalPrice))
|
||||||
|
|
||||||
if (data.payType == 'balance' && parseFloat(that.userInfo.now_money) < parseFloat(that.totalPrice))
|
|
||||||
return that.$util.Tips({
|
return that.$util.Tips({
|
||||||
title: '余额不足!'
|
title: '余额不足!'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// 设置支付密码
|
// 设置支付密码
|
||||||
|
if (data.pay_type == 'balance' || data.pay_type == 'merBalance') {
|
||||||
|
this.orderData = data;
|
||||||
|
this.$refs.popups.handleOpen();
|
||||||
|
} else {
|
||||||
|
this.truePayOrder(data);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 输入密码回调
|
||||||
|
handleConfirm(e) {
|
||||||
|
// 验证密码是否正确
|
||||||
|
verifyPwd({
|
||||||
|
withdrawal_pwd: e
|
||||||
|
}).then(res => {
|
||||||
|
|
||||||
|
// 密码是否有效 状态码判断
|
||||||
|
const code = res.data.code;
|
||||||
|
|
||||||
|
if (code == 100) { //密码正确
|
||||||
|
this.$set(this.orderData, 'withdrawal_pwd', e);
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: '订单支付中',
|
title: '订单支付中',
|
||||||
mask: true
|
mask: true
|
||||||
});
|
});
|
||||||
|
this.truePayOrder(this.orderData);
|
||||||
|
} else {
|
||||||
|
this.$refs.payPwd.handleOpen(code);
|
||||||
|
}
|
||||||
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 弹框左边按钮 101 未设置密码 102 忘记密码 都去设置密码
|
||||||
|
handleLeft(code) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/users/user_modify_pwd/index?type=payPwd"
|
||||||
|
});
|
||||||
|
this.$refs.payPwd.handleClose();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 弹框右边按钮 取消 重试
|
||||||
|
handleRight(code) {
|
||||||
|
if (code == 101) { //取消
|
||||||
|
this.$refs.payPwd.handleClose(code);
|
||||||
|
} else {
|
||||||
|
this.$refs.payPwd.handleClose();
|
||||||
|
this.$refs.popups.handleOpen();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交订单
|
||||||
|
truePayOrder(data) {
|
||||||
|
if (!data) data = this.orderData;
|
||||||
|
|
||||||
// #ifdef MP
|
// #ifdef MP
|
||||||
openPaySubscribe().then(() => {
|
openPaySubscribe().then(() => {
|
||||||
that.payment(data);
|
that.payment(data);
|
||||||
});
|
});
|
||||||
// #endif
|
// #endif
|
||||||
// #ifndef MP
|
// #ifndef MP
|
||||||
that.payment(data);
|
this.payment(data);
|
||||||
// #endif
|
// #endif
|
||||||
},
|
},
|
||||||
|
|
||||||
|
handleClear() {},
|
||||||
|
handleChange() {},
|
||||||
|
|
||||||
// 打开配送方式弹窗
|
// 打开配送方式弹窗
|
||||||
openShowBox(item, index) {
|
openShowBox(item, index) {
|
||||||
if (item.delivery_way.length == 2 && this.order_model != 2) {
|
if (item.delivery_way.length == 2 && this.order_model != 2) {
|
||||||
|
@ -440,6 +440,13 @@
|
|||||||
title: '可用余额:',
|
title: '可用余额:',
|
||||||
number: 0,
|
number: 0,
|
||||||
payStatus: this.$store.getters.globalData.yue_pay_status
|
payStatus: this.$store.getters.globalData.yue_pay_status
|
||||||
|
}, {
|
||||||
|
name: "对公转账",
|
||||||
|
icon: "icon-yuezhifu",
|
||||||
|
value: 'public',
|
||||||
|
title: '对公转账:',
|
||||||
|
number: 0,
|
||||||
|
payStatus: this.$store.getters.globalData.yue_pay_status
|
||||||
}],
|
}],
|
||||||
pay_close: false,
|
pay_close: false,
|
||||||
pay_order_id: '',
|
pay_order_id: '',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user