fix: 功能优化,接口修改。

This commit is contained in:
tianyongbao
2026-02-04 10:39:53 +08:00
parent 28240d3cfb
commit 7420f1e845
9 changed files with 316 additions and 30 deletions

View File

@@ -203,8 +203,15 @@ onLoad((option) => {
updateInstallmentDetail(form.value).then(res => {
proxy.$refs['uToast'].show({
message: '修改成功', complete() {
uni.navigateTo({ url: `/pages/work/bill/onlineLendHistory/details?id=${form.value.installmentHistoryId}&name=${form.value.bankCardLendName}` })
uni.navigateBack()
}
})
})
} else {
addInstallmentDetail(form.value).then(res => {
proxy.$refs['uToast'].show({
message: '新增成功', complete() {
uni.navigateBack()
}
})
})