mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:13:26 +08:00
修复【余额明细】: 修复跳转到余额明细链接
This commit is contained in:
@@ -1,16 +1,16 @@
|
|||||||
// 不同的环境变量配置
|
// 不同的环境变量配置
|
||||||
const development = {
|
const development = {
|
||||||
requestBaseUrl: 'https://api.test.pro.coreshop.cn',
|
requestBaseUrl: 'https://api.mln.ren',
|
||||||
appid: '',
|
appid: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
const test = {
|
const test = {
|
||||||
requestBaseUrl: 'https://api.test.pro.coreshop.cn',
|
requestBaseUrl: 'https://api.mln.ren',
|
||||||
appid: '',
|
appid: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
const production = {
|
const production = {
|
||||||
requestBaseUrl: 'https://api.test.pro.coreshop.cn',
|
requestBaseUrl: 'https://api.mln.ren',
|
||||||
appid: '',
|
appid: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -114,7 +114,7 @@
|
|||||||
if (state.orderId && isGoodsOrder()) {
|
if (state.orderId && isGoodsOrder()) {
|
||||||
handleRouteRedirectTo(`/pages/subpackage/member/order/detail/detail?orderId=${state.orderId}`);
|
handleRouteRedirectTo(`/pages/subpackage/member/order/detail/detail?orderId=${state.orderId}`);
|
||||||
} else if (state.paymentInfo.type === PaymentTypeEnum.recharge) {
|
} else if (state.paymentInfo.type === PaymentTypeEnum.recharge) {
|
||||||
handleRouteRedirectTo(`/pages/subpackage/member/balance/detail/detail`);
|
handleRouteRedirectTo(`/pages/subpackage/member/balance/balance-detail/index`);
|
||||||
} else if (state.paymentInfo.type === PaymentTypeEnum.formPay || state.paymentInfo.type === PaymentTypeEnum.formOrder) {
|
} else if (state.paymentInfo.type === PaymentTypeEnum.formPay || state.paymentInfo.type === PaymentTypeEnum.formOrder) {
|
||||||
handleRouteSwitchTab()
|
handleRouteSwitchTab()
|
||||||
} else if (state.paymentInfo.type === PaymentTypeEnum.serviceOrder) {
|
} else if (state.paymentInfo.type === PaymentTypeEnum.serviceOrder) {
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<coreshop-page title="我的订单" mode="left">
|
<coreshop-page title="我的订单1" mode="left">
|
||||||
<view class="layout-order-box">
|
<view class="layout-order-box">
|
||||||
<view class="tab-box">
|
<view class="tab-box">
|
||||||
<uv-tabs :list="state.tabList" :activeStyle="{ 'color': '#D33123' }" lineColor="#D33123" :lineWidth="40"
|
<uv-tabs :list="state.tabList" :activeStyle="{ 'color': '#D33123' }" lineColor="#D33123" :lineWidth="40"
|
||||||
:scrollable="false" :current="state.tabsCurrent" keyName="title" @click="handleChangeTab"></uv-tabs>
|
:scrollable="false" :current="state.tabsCurrent" keyName="title" @click="handleChangeTab"></uv-tabs>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="order-list-box">
|
<view class="order-list-box">
|
||||||
<view class="order-box">
|
<view class="order-box">
|
||||||
<view v-if="state.orderList.length > 0">
|
<view v-if="state.orderList.length > 0">
|
||||||
|
|||||||
Reference in New Issue
Block a user