From 13b518856345591ddf9ea7271aba77f6423a1bac Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期一, 09 十月 2023 17:00:56 +0800
Subject: [PATCH] 11

---
 src/views/project/fundcheck/officeExpenseCheck/index.vue |   48 ++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 46 insertions(+), 2 deletions(-)

diff --git a/src/views/project/fundcheck/officeExpenseCheck/index.vue b/src/views/project/fundcheck/officeExpenseCheck/index.vue
index 22410ae..8a949e7 100644
--- a/src/views/project/fundcheck/officeExpenseCheck/index.vue
+++ b/src/views/project/fundcheck/officeExpenseCheck/index.vue
@@ -69,6 +69,17 @@
         </el-col> -->
       </el-row>
       <el-row>
+        <el-col :span="5">
+          <el-form-item label="鎹愮尞鑰�" prop="donorname" style="float: left">
+            <el-input
+              v-model="queryParams.donorname"
+              placeholder="璇疯緭鍏ョ敵璇蜂汉鎹愮尞鑰�"
+              clearable
+              size="small"
+              @keyup.enter.native="flowconclusion"
+            />
+          </el-form-item>
+        </el-col>
         <el-col :span="4">
           <div style="margin-bottom: 15px;">
             <el-button
@@ -167,6 +178,19 @@
               />
             </template>
           </el-table-column>
+          <el-table-column
+        label="棰勫鐘舵��"
+        width="140"
+        align="center"
+        prop="checkstatus"
+      >
+        <template slot-scope="scope">
+          <dict-tag
+            :options="dict.type.sys_stage_type"
+            :value="scope.row.checkstatus"
+          />
+        </template>
+      </el-table-column>
           <el-table-column label="澶囨敞" align="center" prop="remark" />
           <el-table-column
             label="鎿嶄綔"
@@ -189,6 +213,14 @@
                 size="mini"
                 type="text"
                 icon="el-icon-edit"
+                @click="beforehandCheck(scope.row)"
+                >棰勫鏍�</el-button
+              >
+              <el-button
+                v-if="scope.row.checkFlag == 1"
+                size="mini"
+                type="text"
+                icon="el-icon-edit"
                 @click="handleCheck(scope.row)"
                 >瀹℃牳</el-button
               >
@@ -198,9 +230,9 @@
                 type="text"
                 icon="el-icon-download"
                 @click="totaldayin(scope.row.id)"
-                v-hasPermi="['project:donateconsolationfund:download']"
                 >涓嬭浇</el-button
               >
+              <!-- v-hasPermi="['project:donateconsolationfund:download']" -->
 
               <!-- 鏂板瀹℃牳椤甸潰 -->
               <!-- <el-button
@@ -892,7 +924,8 @@
     "sys_fund_type",
     "sys_finsubject",
     "sys_financeitemtype",
-    "sys_consolationfundlevel"
+    "sys_consolationfundlevel",
+    "sys_stage_type"
   ],
   data() {
     return {
@@ -1342,6 +1375,17 @@
         });
       }
     },
+    beforehandCheck(row){
+      this.$router.push({
+        path: "/finance/applyDetail/",
+        query: {
+          id: row.id,
+          businessType: "4",
+          beforehandType:'1',
+          operationType: "check",
+        }
+      });
+    },
     /** 瀹℃牳鎸夐挳鎿嶄綔 */
     handleCheck(row) {
       this.$router.push({

--
Gitblit v1.9.3