From 89946bea834a200b7edc9a8fbdbb12f48d7d152a Mon Sep 17 00:00:00 2001
From: pyt <626651354@qq.com>
Date: 星期五, 21 三月 2025 14:39:33 +0800
Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/chongzhouResettle
---
src/views/placement-batch/index.vue | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/views/placement-batch/index.vue b/src/views/placement-batch/index.vue
index aab354b..f53e50b 100644
--- a/src/views/placement-batch/index.vue
+++ b/src/views/placement-batch/index.vue
@@ -152,13 +152,13 @@
},
/** 导入资金批次 */
importPrice(form) {
- console.log('//////////////',form)
+ console.log('//////////////', form)
let formData = new FormData()
formData.append('assetFile', form.assetFile)
formData.append('householdFile', form.householdFile)
formData.append('batchNumber', form.batchNumber)
importPlacementBatch(formData).then(res => {
- if(res.code == 200) {
+ if (res.code == 200) {
this.$message.success('导入成功')
this.dialogVisible = false
this.getList()
@@ -168,6 +168,7 @@
/** 查看详情按钮操作 */
handleView(row) {
// TODO: 实现查看详情逻辑
+ this.$router.push('/placement/batch/personnel?id=' + row.id)
},
/** 审核按钮操作 */
handleApproval(row) {
@@ -176,18 +177,18 @@
/** 删除按钮操作 */
handleDelete(row) {
// TODO: 实现删除逻辑
- this.$confirm('确定删除该安置批次吗?', '提示', {
+ this.$confirm('确定删除该安置批次吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
- deletePlacementBatch({id: row.id}).then(res => {
- if(res.code == 200) {
+ deletePlacementBatch({ id: row.id }).then(res => {
+ if (res.code == 200) {
this.$message.success('删除成功')
this.getList()
}
})
- })
+ })
}
}
}
--
Gitblit v1.7.1