From 73ac28e7bed2c94ccdcb6b96c1e026d6cc9db68d Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期五, 10 一月 2025 10:51:38 +0800
Subject: [PATCH] ll

---
 admin/src/views/finance/account.vue |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/admin/src/views/finance/account.vue b/admin/src/views/finance/account.vue
index 1d60573..d8b6ae1 100644
--- a/admin/src/views/finance/account.vue
+++ b/admin/src/views/finance/account.vue
@@ -9,7 +9,7 @@
       <el-table-column prop="title" label="鏀舵敮鏉$洰" min-width="100" show-overflow-tooltip />
       <el-table-column prop="companyName" label="鏀舵鍏徃" min-width="100" show-overflow-tooltip />
       <el-table-column label="璐︽埛绫诲瀷" min-width="100" show-overflow-tooltip>
-        <template v-slot="{row}">
+        <template v-slot="{ row }">
           <span v-if="row.type == 0">瀵瑰叕</span>
           <span v-if="row.type == 1">涓汉</span>
         </template>
@@ -19,7 +19,8 @@
       <el-table-column prop="bankNo" label="閾惰璐﹀彿" min-width="100" show-overflow-tooltip />
       <el-table-column prop="status" label="鐘舵��" min-width="100" show-overflow-tooltip>
         <template v-slot="scope">
-          <el-switch v-model="scope.row.status" @change="e =>changeStatus(scope.row)" :active-value="0" :inactive-value="1">
+          <el-switch v-model="scope.row.status" @change="e => changeStatus(scope.row)" :active-value="0"
+            :inactive-value="1">
           </el-switch>
         </template>
       </el-table-column>
@@ -117,13 +118,13 @@
         this.getList()
       })
     },
-    getCompany(){
+    getCompany() {
       companyGetList({
-        model: {type: 2},
+        model: { type: 2 },
         capacity: 9999,
         page: 1
       }).then(res => {
-       this.queryFormConfig.formItems[1].options = res.records || []
+        this.queryFormConfig.formItems[1].options = res.records || []
       })
     },
     handleEdit(row) {
@@ -156,6 +157,7 @@
     },
     handleSizeChange(capacity) {
       this.pagination.pageSize = capacity
+      this.getList()
     }
   }
 }

--
Gitblit v1.9.3