From efc2a0655f6666c92564ddff6e4c2234cbdd2a77 Mon Sep 17 00:00:00 2001
From: weipengfei <2187978347@qq.com>
Date: Fri, 22 Mar 2024 15:53:59 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/accounts/subsidy/index.vue | 83 ++++++++++++++++++++++++++--
1 file changed, 78 insertions(+), 5 deletions(-)
diff --git a/src/views/accounts/subsidy/index.vue b/src/views/accounts/subsidy/index.vue
index f6392ed..78b5aac 100644
--- a/src/views/accounts/subsidy/index.vue
+++ b/src/views/accounts/subsidy/index.vue
@@ -43,19 +43,17 @@
+
审核
-
-
-
- 修改
-
+ 修改
@@ -71,6 +69,53 @@
/>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -94,6 +139,7 @@ export default {
data: [],
total: 0
},
+ dialogVisible: false,
roterPre: roterPre,
listLoading: true,
tableFrom: {
@@ -106,12 +152,39 @@ export default {
fromList: fromList,
options: [],
cardLists: [],
+ formData: {
+ extra: {}
+ },
+ rules:{
+ amount: [{
+ required: true,
+ message: '请输入补贴金额',
+ tigger: 'blur'
+ }]
+ }
}
},
mounted() {
this.getList()
},
methods: {
+ showDialog(row){
+ this.formData = {...row};
+ this.dialogVisible = true;
+ },
+ updateInfo(){
+ this.$refs.editForm.validate((valid) => {
+ if (valid) {
+ subsidyUpdateApi(this.formData).then(res => {
+ this.$message.success(res.message);
+ this.dialogVisible = false;
+ this.getList()
+ }).catch(res => {
+ this.$message.error(res.message);
+ })
+ }
+ })
+ },
/**重置 */
searchReset(){
this.timeVal = []