this is lastest update
This commit is contained in:
parent
c560083ae6
commit
04864e6ed1
|
@ -168,16 +168,9 @@
|
||||||
|
|
||||||
|
|
||||||
const wxPayFd = (order) => { //微信支付按钮防抖
|
const wxPayFd = (order) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true //打开遮罩
|
isShow.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(order.id)
|
||||||
await wxPay(order.id)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShow.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
@ -229,6 +222,10 @@
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
|
hideLoading()
|
||||||
|
isShow.value = false //关闭遮罩
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}catch(error) {
|
}catch(error) {
|
||||||
|
|
|
@ -134,6 +134,7 @@
|
||||||
const isShowMask = ref(false)
|
const isShowMask = ref(false)
|
||||||
let wxPayTimer = null;
|
let wxPayTimer = null;
|
||||||
let loading = false;
|
let loading = false;
|
||||||
|
let point = 0
|
||||||
let isLoading = ref(false)
|
let isLoading = ref(false)
|
||||||
const bkgUrl = ref(bookUrl + '/photoProductsOrderDetail/bkg.png')
|
const bkgUrl = ref(bookUrl + '/photoProductsOrderDetail/bkg.png')
|
||||||
onLoad(() => {
|
onLoad(() => {
|
||||||
|
@ -206,7 +207,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const changeState = async (index:any) => {
|
const changeState = (index:any) => {
|
||||||
|
if (point === index) return
|
||||||
|
point = index
|
||||||
if (!isShow.value[index]) {
|
if (!isShow.value[index]) {
|
||||||
for (var i = 0; i < 3; i ++ ) {
|
for (var i = 0; i < 3; i ++ ) {
|
||||||
if (i == index) {
|
if (i == index) {
|
||||||
|
@ -242,16 +245,9 @@
|
||||||
|
|
||||||
|
|
||||||
const wxPayFd = (oid) => { //微信支付按钮防抖
|
const wxPayFd = (oid) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShowMask.value = true //打开遮罩
|
isShowMask.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(oid)
|
||||||
await wxPay(oid)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShowMask.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const wxPay = async ( oid )=> { //传入订单id
|
const wxPay = async ( oid )=> { //传入订单id
|
||||||
|
|
|
@ -123,7 +123,6 @@
|
||||||
import { onPullDownRefresh } from '@dcloudio/uni-app';
|
import { onPullDownRefresh } from '@dcloudio/uni-app';
|
||||||
import { getFonts } from '../../../common/globalFont';
|
import { getFonts } from '../../../common/globalFont';
|
||||||
import { onLoad } from "@dcloudio/uni-app";
|
import { onLoad } from "@dcloudio/uni-app";
|
||||||
const items = ref([null, null, null, null])
|
|
||||||
const isShowUnderLine = ref([true, false, false, false, false])
|
const isShowUnderLine = ref([true, false, false, false, false])
|
||||||
let orderStatusList = ['全部', '待支付', '待发货', '待收货', '交易成功']
|
let orderStatusList = ['全部', '待支付', '待发货', '待收货', '交易成功']
|
||||||
const color = ref(new Array(5).fill('#323232'))
|
const color = ref(new Array(5).fill('#323232'))
|
||||||
|
@ -189,7 +188,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const isSelectedState = async (val) => {
|
const isSelectedState = (val) => {
|
||||||
if (point.value === val) return
|
if (point.value === val) return
|
||||||
point.value = val
|
point.value = val
|
||||||
for (var i = 0; i < 5; i++) {
|
for (var i = 0; i < 5; i++) {
|
||||||
|
@ -287,6 +286,8 @@
|
||||||
orderList.value[i].operationList = [true, true, false, false, false, true]
|
orderList.value[i].operationList = [true, true, false, false, false, true]
|
||||||
} else if (order.orderStatus === '交易成功') {
|
} else if (order.orderStatus === '交易成功') {
|
||||||
orderList.value[i].operationList = [true, false, false, false, false, false]
|
orderList.value[i].operationList = [true, false, false, false, false, false]
|
||||||
|
}else {
|
||||||
|
orderList.value[i].operationList = [true, false, false, false, false, false]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -394,16 +395,9 @@
|
||||||
|
|
||||||
|
|
||||||
const wxPayFd = (oid) => { //微信支付按钮防抖
|
const wxPayFd = (oid) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true //打开遮罩
|
isShow.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(oid)
|
||||||
await wxPay(oid)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShow.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
|
|
@ -197,16 +197,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
const wxPayFd = (order) => { //微信支付按钮防抖
|
const wxPayFd = (order) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true //打开遮罩
|
isShow.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(order.id)
|
||||||
await wxPay(order.id)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShow.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
@ -257,9 +250,15 @@
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
|
hideLoading()
|
||||||
|
isShow.value = false //关闭遮罩
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}catch(error) {
|
}catch(error) {
|
||||||
|
hideLoading()
|
||||||
|
isShow.value = false //关闭遮罩
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
content: '支付失败,请刷新后重试',
|
content: '支付失败,请刷新后重试',
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
import emitter from '../../../utils/emitter';
|
import emitter from '../../../utils/emitter';
|
||||||
import { JudgeIsNullity, dealResult } from '../../../common/globalFunction';
|
import { JudgeIsNullity, dealResult } from '../../../common/globalFunction';
|
||||||
import contactsComponentVue from '../../order/component/contactsComponent.vue';
|
import contactsComponentVue from '../../order/component/contactsComponent.vue';
|
||||||
import { getFonts } from '../../../common/globalFont';
|
import { getFonts } from '../../../common/globalFont';
|
||||||
const period = ref(0)
|
const period = ref(0)
|
||||||
let id = 0
|
let id = 0
|
||||||
const clothesInfo = ref({})
|
const clothesInfo = ref({})
|
||||||
|
@ -215,12 +215,9 @@ import { getFonts } from '../../../common/globalFont';
|
||||||
})
|
})
|
||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true
|
isShow.value = true
|
||||||
wxPayTimer = setTimeout(async () => {
|
createOrder()
|
||||||
await createOrder()
|
|
||||||
}, 1000)
|
|
||||||
}
|
}
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
if (!loading) {
|
if (!loading) {
|
||||||
|
|
|
@ -225,16 +225,9 @@
|
||||||
|
|
||||||
|
|
||||||
const wxPayFd = (order) => { //微信支付按钮防抖
|
const wxPayFd = (order) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true //打开遮罩
|
isShow.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(order.id)
|
||||||
await wxPay(order.id)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShow.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
@ -285,7 +278,11 @@
|
||||||
getOrderById(oid)
|
getOrderById(oid)
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
|
hideLoading()
|
||||||
|
isShow.value = false //关闭遮罩
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}catch(error) {
|
}catch(error) {
|
||||||
|
|
|
@ -218,7 +218,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const isSelectedState = async (val) => {
|
const isSelectedState = (val) => {
|
||||||
if (point.value === val) return
|
if (point.value === val) return
|
||||||
point.value = val
|
point.value = val
|
||||||
for (var i = 0; i < 5; i ++ ) {
|
for (var i = 0; i < 5; i ++ ) {
|
||||||
|
@ -285,16 +285,9 @@
|
||||||
|
|
||||||
|
|
||||||
const wxPayFd = (order) => { //微信支付按钮防抖
|
const wxPayFd = (order) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true //打开遮罩
|
isShow.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(order.id, order.orderType)
|
||||||
await wxPay(order.id, order.orderType)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShow.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
@ -342,17 +335,11 @@
|
||||||
content: '支付成功',
|
content: '支付成功',
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
if (type === 'product') {
|
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
if (type === 'product') {
|
if (type === 'product') {
|
||||||
uni.redirectTo({
|
uni.redirectTo({
|
||||||
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
||||||
|
@ -503,6 +490,8 @@
|
||||||
orderList.value[i].operationList = [false, false, true, false, false, false]
|
orderList.value[i].operationList = [false, false, true, false, false, false]
|
||||||
} else if (order.orderStatus === '交易成功') {
|
} else if (order.orderStatus === '交易成功') {
|
||||||
orderList.value[i].operationList = [false, false, false, false, false, true]
|
orderList.value[i].operationList = [false, false, false, false, false, true]
|
||||||
|
}else {
|
||||||
|
orderList.value[i].operationList = [false, false, false, false, false, true]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -196,16 +196,9 @@
|
||||||
|
|
||||||
|
|
||||||
const wxPayFd = (order) => { //微信支付按钮防抖
|
const wxPayFd = (order) => { //微信支付按钮防抖
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true //打开遮罩
|
isShow.value = true //打开遮罩
|
||||||
wxPayTimer = setTimeout(async () => {
|
wxPay(order.id)
|
||||||
await wxPay(order.id)
|
|
||||||
}, 1000)
|
|
||||||
setTimeout(()=>{
|
|
||||||
hideLoading()
|
|
||||||
isShow.value = false //关闭遮罩
|
|
||||||
},2000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
@ -257,6 +250,10 @@
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
|
hideLoading()
|
||||||
|
isShow.value = false //关闭遮罩
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}catch(error) {
|
}catch(error) {
|
||||||
|
|
|
@ -381,11 +381,11 @@ const wxPay = async( oid )=> { //传入订单id
|
||||||
content: '支付成功',
|
content: '支付成功',
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
uni.redirectTo({
|
uni.redirectTo({
|
||||||
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
||||||
})
|
})
|
||||||
|
@ -423,12 +423,9 @@ const wxPay = async( oid )=> { //传入订单id
|
||||||
})
|
})
|
||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true
|
isShow.value = true
|
||||||
wxPayTimer = setTimeout(async () => {
|
createOrder()
|
||||||
await createOrder()
|
|
||||||
}, 1000)
|
|
||||||
}
|
}
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
if (!loading) {
|
if (!loading) {
|
||||||
|
|
|
@ -423,11 +423,11 @@
|
||||||
content: '支付成功',
|
content: '支付成功',
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
uni.redirectTo({
|
uni.redirectTo({
|
||||||
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
||||||
})
|
})
|
||||||
|
@ -464,12 +464,9 @@
|
||||||
})
|
})
|
||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true
|
isShow.value = true
|
||||||
wxPayTimer = setTimeout(async () => {
|
createOrder()
|
||||||
await createOrder()
|
|
||||||
}, 1000)
|
|
||||||
}
|
}
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
if (!loading) {
|
if (!loading) {
|
||||||
|
|
|
@ -321,12 +321,9 @@ const updateAddressHandler = (val) => {
|
||||||
})
|
})
|
||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true
|
isShow.value = true
|
||||||
wxPayTimer = setTimeout(async () => {
|
createOrder()
|
||||||
await createOrder()
|
|
||||||
}, 1000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -493,11 +490,11 @@ const wxPay = async ( oid )=> { //传入订单id
|
||||||
content: '支付成功',
|
content: '支付成功',
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
uni.redirectTo({
|
uni.redirectTo({
|
||||||
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
url: '/pages/my-order/myGeneralOrderDetail/myGeneralOrderDetail?id=' + oid
|
||||||
})
|
})
|
||||||
|
|
|
@ -417,11 +417,11 @@
|
||||||
content: '支付成功',
|
content: '支付成功',
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
uni.redirectTo({
|
|
||||||
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
fail(e) {
|
fail(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
complete () {
|
||||||
uni.redirectTo({
|
uni.redirectTo({
|
||||||
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
url: '/pages/my-order/myServiceOrderDetail/myServiceOrderDetail?id=' + oid
|
||||||
})
|
})
|
||||||
|
@ -463,12 +463,9 @@
|
||||||
})
|
})
|
||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
clearTimeout(wxPayTimer)
|
|
||||||
showLoading()
|
showLoading()
|
||||||
isShow.value = true
|
isShow.value = true
|
||||||
wxPayTimer = setTimeout(async () => {
|
createOrder()
|
||||||
await createOrder()
|
|
||||||
}, 1000)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showLoading() { //加载弹窗
|
function showLoading() { //加载弹窗
|
||||||
|
|
Loading…
Reference in New Issue
Block a user