fixbug:流水改造

This commit is contained in:
2025-08-16 15:14:16 +08:00
parent 29fdce5b5a
commit d12f085406
3 changed files with 39 additions and 15 deletions
+1
View File
@@ -147,6 +147,7 @@ export default {
} }
const { bizcode, data } = await getSignUrl(params); const { bizcode, data } = await getSignUrl(params);
if (bizcode === 100) { if (bizcode === 100) {
this.downShow = false;
this.signUrl = data.flowApproverUrlInfos[0].longUrl; this.signUrl = data.flowApproverUrlInfos[0].longUrl;
} else { } else {
this.$refs.uToastRef.show({ this.$refs.uToastRef.show({
@@ -524,6 +524,8 @@ export default {
} }
const { bizcode, data } = await getSignUrl(params); const { bizcode, data } = await getSignUrl(params);
if (bizcode === 100) { if (bizcode === 100) {
this.downShow = false;
this.signUrl = data.flowApproverUrlInfos[0].longUrl; this.signUrl = data.flowApproverUrlInfos[0].longUrl;
} else { } else {
this.$refs.uToastRef.show({ this.$refs.uToastRef.show({
@@ -4,7 +4,8 @@
left-path="/pages/mine_package/mine_purse/mine_purse" /> left-path="/pages/mine_package/mine_purse/mine_purse" />
<view class="info_warp"> <view class="info_warp">
<view> <view v-if="form.category !== 'redpacket'">
<view class="info_title_warp"> <view class="info_title_warp">
<view :class="selInfo === item.key ? 'info_title_item_warp info_title_item_sel_warp' : 'info_title_item_warp'" <view :class="selInfo === item.key ? 'info_title_item_warp info_title_item_sel_warp' : 'info_title_item_warp'"
v-for="item in infoList" :key="item.key" @click="selectInfo(item)"> v-for="item in infoList" :key="item.key" @click="selectInfo(item)">
@@ -71,23 +72,12 @@ export default {
return BALANCE_TYPE; return BALANCE_TYPE;
} }
}, },
components: { Header }, components: { Header },
data() { data() {
return { return {
infoList: [ infoList: [
{
name: "活期账户",
key: "cur"
},
{
name: "锁定账户",
key: "lock"
},
{
name: "预存款账户",
key: "pre"
},
], ],
source: [], source: [],
@@ -120,7 +110,16 @@ export default {
if (category === 'balance') { if (category === 'balance') {
this.onGetBonusStat(); this.onGetBonusStat();
this.infoList = [
{
name: "活期账户",
key: "cur"
},
{
name: "预存款账户",
key: "pre"
},
]
this.source = [ this.source = [
{ {
name: "今日分红数量", name: "今日分红数量",
@@ -161,6 +160,17 @@ export default {
// 贡献值 expend // 贡献值 expend
if (category === 'expend') { if (category === 'expend') {
this.onGetAcctContribution(); this.onGetAcctContribution();
this.infoList = [
{
name: "活期账户",
key: "cur"
},
{
name: "预存款账户",
key: "pre"
},
]
this.source = [ this.source = [
{ {
name: "今日贡献值", name: "今日贡献值",
@@ -183,6 +193,17 @@ export default {
// 抽奖次数 raffle // 抽奖次数 raffle
// 积分 redpacket
if (category === 'redpacket') {
this.infoList = [
{
name: "活期账户",
key: "cur"
},
]
}
if (lockId && lockId !== 'null') { if (lockId && lockId !== 'null') {
this.lockId = lockId; this.lockId = lockId;
// this.selectInfo(this.infoList[1]); // this.selectInfo(this.infoList[1]);
@@ -197,7 +218,7 @@ export default {
} }
this.onGetAcctFlowList(); // this.onGetAcctFlowList();
}, },
methods: { methods: {
getValue, getValue,