bug修复

This commit is contained in:
BianLzhaoMin 2025-03-24 17:11:11 +08:00
parent c189c03bfb
commit 493ce4d513
1 changed files with 6 additions and 6 deletions

View File

@ -45,10 +45,12 @@
<div>累计减免费用(){{ item.leaseMoneyAll }}</div> <div>累计减免费用(){{ item.leaseMoneyAll }}</div>
<div> <div>
状态 状态
<span v-if="item.status == 0" class="text-color">未审核</span> <span v-if="item.status == '1'" style="color: orange">审核中</span>
<span v-else-if="item.status == 1" class="text-color-success" <span v-if="item.status == '0'" style="color: blue">待审核</span>
>已审核</span <span v-if="item.status == '2'" class="text-color-success"
>已完成</span
> >
<span v-if="item.status == '3'" class="text-color">已驳回</span>
</div> </div>
</div> </div>
</div> </div>
@ -138,9 +140,7 @@ const handleEdit = (item) => {
type: 'edit', type: 'edit',
} }
uni.navigateTo({ uni.navigateTo({
url: url: '/pages/business/discountApply?params=' + JSON.stringify(params),
'/pages/business/discountApply?params=' +
JSON.stringify(params),
}) })
} }
} }