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
@@ -524,6 +524,8 @@ export default {
}
const { bizcode, data } = await getSignUrl(params);
if (bizcode === 100) {
this.downShow = false;
this.signUrl = data.flowApproverUrlInfos[0].longUrl;
} else {
this.$refs.uToastRef.show({
@@ -4,7 +4,8 @@
left-path="/pages/mine_package/mine_purse/mine_purse" />
<view class="info_warp">
<view>
<view v-if="form.category !== 'redpacket'">
<view class="info_title_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)">
@@ -71,23 +72,12 @@ export default {
return BALANCE_TYPE;
}
},
components: { Header },
data() {
return {
infoList: [
{
name: "活期账户",
key: "cur"
},
{
name: "锁定账户",
key: "lock"
},
{
name: "预存款账户",
key: "pre"
},
],
source: [],
@@ -120,7 +110,16 @@ export default {
if (category === 'balance') {
this.onGetBonusStat();
this.infoList = [
{
name: "活期账户",
key: "cur"
},
{
name: "预存款账户",
key: "pre"
},
]
this.source = [
{
name: "今日分红数量",
@@ -161,6 +160,17 @@ export default {
// 贡献值 expend
if (category === 'expend') {
this.onGetAcctContribution();
this.infoList = [
{
name: "活期账户",
key: "cur"
},
{
name: "预存款账户",
key: "pre"
},
]
this.source = [
{
name: "今日贡献值",
@@ -183,6 +193,17 @@ export default {
// 抽奖次数 raffle
// 积分 redpacket
if (category === 'redpacket') {
this.infoList = [
{
name: "活期账户",
key: "cur"
},
]
}
if (lockId && lockId !== 'null') {
this.lockId = lockId;
// this.selectInfo(this.infoList[1]);
@@ -197,7 +218,7 @@ export default {
}
this.onGetAcctFlowList();
// this.onGetAcctFlowList();
},
methods: {
getValue,