1. 2.0 首页功能修改

yj-dev
杨杰 2 years ago
parent e4b239b5ee
commit d8158babc3
  1. 4
      pages/tabBar/home/home.vue
  2. 84
      subPages/unionComfirmation/unionComfirmation.vue

@ -1,7 +1,7 @@
<template> <template>
<view> <view>
<!-- 状态栏 --> <!-- 状态栏 -->
<view v-if="showHeader && isdisplay" class="status" <view v-if="showHeader && !isdisplay" class="status"
:style="{ position: headerPosition,top:statusTop,opacity: afterHeaderOpacity}"></view> :style="{ position: headerPosition,top:statusTop,opacity: afterHeaderOpacity}"></view>
<!-- 顶部导航栏 --> <!-- 顶部导航栏 -->
<view v-if="showHeader && !isdisplay" class="header" <view v-if="showHeader && !isdisplay" class="header"
@ -31,7 +31,7 @@
<!-- #endif --> <!-- #endif -->
</view> </view>
</view> </view>
<view v-if="isdisplay"> <view style="height: 100%;background-color: red;" v-if="isdisplay">
<image :src="imagewxUrl+imgadres5" class="width40w mart90" mode="widthFix"></image> <image :src="imagewxUrl+imgadres5" class="width40w mart90" mode="widthFix"></image>
</view> </view>

@ -185,11 +185,11 @@
<script> <script>
import { import {
addOrderPay, create,
orderToPayByWx, wechatPay,
findUser, findUser,
orderToGoldPayunion, orderToGoldPayunion,
hltUnionCardPayghk, cardPay,
getHuiLianTongCardBalance, getHuiLianTongCardBalance,
loginByPhone, loginByPhone,
getUserOrderPreList, getUserOrderPreList,
@ -515,22 +515,27 @@
title: '提交订单中...' title: '提交订单中...'
}) })
let params = { let params = {
"childOrderList": [{
"goodsId": that.objectId,
"goodsType": 6,
"rechargeContent": that.rechargeContent,
"saleCount": 1
}],
"payGold": that.priceValue[1],
"companyId": app.globalData.companyId,
"memDiscountId": that.memDiscountId, "memDiscountId": that.memDiscountId,
"rechargeContent": that.rechargeContent, "payPwd": ""
"goodsId": that.objectId,
"integralNum": that.priceValue[1],
"password": ''
} }
addOrderPay(params).then(res => { create(params).then(res => {
if (res.return_code == '000000') { if (res.return_code == '000000') {
uni.hideLoading(); uni.hideLoading();
that.orderId = res.return_data.id; that.orderId = res.return_data.orderNo;
let params = { let params = {
"orderId": res.return_data.id, "orderId": res.return_data.id,
"openId": app.globalData.openId, "openId": app.globalData.openId,
"openIdType": 2 "openIdType": 2
} }
that.orderToPayByWx(params); that.wechatPay(params);
} else { } else {
uni.hideLoading(); uni.hideLoading();
uni.showToast({ uni.showToast({
@ -549,21 +554,37 @@
title: '提交订单中...' title: '提交订单中...'
}) })
let params = { let params = {
"childOrderList": [{
"goodsId": that.objectId,
"goodsType": 6,
"rechargeContent": that.rechargeContent,
"saleCount": 1
}],
"payGold": that.priceValue[1],
"companyId": app.globalData.companyId,
"memDiscountId": that.memDiscountId, "memDiscountId": that.memDiscountId,
"rechargeContent": that.rechargeContent, "payPwd": ""
"goodsId": that.objectId,
"integralNum": that.priceValue[1],
"password": ''
} }
addOrderPay(params).then(res => {
create(params).then(res => {
if (res.return_code == '000000') { if (res.return_code == '000000') {
uni.hideLoading(); uni.hideLoading();
that.orderId = res.return_data.id; that.orderId = res.return_data.orderNo;
// #ifdef H5
let params = {
"orderNo": res.return_data.orderNo,
"openId": app.globalData.openId,
"openIdType": 2
}
// #endif
// #ifdef MP
let params = { let params = {
"orderId": res.return_data.id, "orderNo": res.return_data.orderNo,
"openId": app.globalData.openId "openId": app.globalData.openId,
"openIdType": 1
} }
that.orderToPayByWx(params); // #endif
that.wechatPay(params);
} else { } else {
uni.hideLoading(); uni.hideLoading();
uni.showToast({ uni.showToast({
@ -601,10 +622,10 @@
this.$refs.popup.show(); this.$refs.popup.show();
}, },
// //
orderToPayByWx(item) { wechatPay(item) {
let that = this; let that = this;
if (that.paytype == '2') { if (that.paytype == '2') {
orderToPayByWx(item).then(res => { wechatPay(item).then(res => {
if (res.return_code == '000000') { if (res.return_code == '000000') {
// #ifdef MP // #ifdef MP
uni.showLoading({ uni.showLoading({
@ -702,16 +723,21 @@
} }
if (this.payPrice == 0) { if (this.payPrice == 0) {
let params = { let params = {
"childOrderList": [{
"goodsId": this.objectId,
"goodsType": 6,
"rechargeContent": this.rechargeContent,
"saleCount": 1
}],
"payGold": this.priceValue[1],
"companyId": app.globalData.companyId,
"memDiscountId": this.memDiscountId, "memDiscountId": this.memDiscountId,
"rechargeContent": this.rechargeContent, "payPwd": this.PaymentPassword
"goodsId": this.objectId,
"integralNum": this.priceValue[1],
"password": this.PaymentPassword
} }
addOrderPay(params).then(res => { create(params).then(res => {
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000') { if (res.return_code == '000000') {
this.orderId = res.return_data.id; this.orderId = res.return_data.orderNo;
uni.reLaunch({ uni.reLaunch({
url: '../Phone-recharge-details/Phone-recharge-details?id=' + url: '../Phone-recharge-details/Phone-recharge-details?id=' +
this.orderId this.orderId
@ -733,11 +759,11 @@
return; return;
} }
let params = { let params = {
"orderId": this.orderId, "orderNo": this.orderId,
"cardNo": this.user.hltCardNo.cardNo, "cardNo": this.user.hltCardNo.cardNo,
"password": this.PaymentPassword "password": this.PaymentPassword
} }
hltUnionCardPayghk(params).then(res => { cardPay(params).then(res => {
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000') { if (res.return_code == '000000') {
uni.showToast({ uni.showToast({

Loading…
Cancel
Save