From 2871dd51e0adc895781cf4ddb6979c93abe55b75 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期五, 22 九月 2023 15:54:18 +0800
Subject: [PATCH] 11

---
 src/views/project/fundcheck/medicalCostCheck/index.vue |   77 ++++++++++++++++++++++++++++++++++++--
 1 files changed, 73 insertions(+), 4 deletions(-)

diff --git a/src/views/project/fundcheck/medicalCostCheck/index.vue b/src/views/project/fundcheck/medicalCostCheck/index.vue
index 1b16d95..d59a34a 100644
--- a/src/views/project/fundcheck/medicalCostCheck/index.vue
+++ b/src/views/project/fundcheck/medicalCostCheck/index.vue
@@ -25,6 +25,17 @@
           </el-form-item>
         </el-col>
         <el-col :span="5">
+          <el-form-item label="閲戦" prop="money" style="float: left">
+            <el-input
+              v-model="queryParams.money"
+              placeholder="璇疯緭鍏ョ敵璇蜂汉閲戦"
+              clearable
+              size="small"
+              @keyup.enter.native="flowconclusion"
+            />
+          </el-form-item>
+        </el-col>
+        <el-col :span="5">
           <el-form-item label="缁忓姙浜�" prop="APPLICANT" style="float: left">
             <el-input
               v-model="queryParams.APPLICANT"
@@ -63,7 +74,7 @@
             </el-select>
           </el-form-item>
         </el-col>
-        <el-col :span="6">
+        <!-- <el-col :span="6">
           <el-button
             type="primary"
             icon="el-icon-search"
@@ -74,8 +85,25 @@
           <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
             >閲嶇疆</el-button
           >
+        </el-col> -->
+      </el-row>
+      <el-row>
+        <el-col :span="4">
+          <div style="margin-bottom: 15px;">
+            <el-button
+              type="primary"
+              icon="el-icon-search"
+              size="mini"
+              @click="flowconclusion"
+              >鎼滅储</el-button
+            >
+            <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
+              >閲嶇疆</el-button
+            >
+          </div>
         </el-col>
-      </el-row></el-form
+      </el-row>
+      </el-form
     >
     <el-form ref="infoform" label-width="100px">
       <el-row>
@@ -159,6 +187,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="鎿嶄綔"
@@ -168,6 +209,14 @@
             width="260px"
           >
             <template slot-scope="scope">
+              <el-button
+                v-if="scope.row.checkFlag == 1"
+                size="mini"
+                type="text"
+                icon="el-icon-edit"
+                @click="beforehandCheck(scope.row)"
+                >棰勫鏍�</el-button
+              >
               <el-button
                 v-if="scope.row.checkFlag == 1"
                 size="mini"
@@ -863,6 +912,8 @@
 import OrgSelecter from "@/views/project/components/orgselect";
 import { getUserProfile } from "@/api/system/user";
 import { getToken } from "@/utils/auth";
+import { setItem,grtItem,removeItem } from '@/utils/storage.js';
+
 
 export default {
   components: {
@@ -881,7 +932,8 @@
     "sys_fund_type",
     "sys_finsubject",
     "sys_financeitemtype",
-    "sys_consolationfundlevel"
+    "sys_consolationfundlevel",
+    "sys_stage_type"
   ],
   data() {
     return {
@@ -965,7 +1017,8 @@
         APPLICATIONENDTIME: null,
         CHECKFLAG: 1,
         APPLYTYPE: 3,
-        donorname: null
+        donorname: null,
+        money: null
       },
       // 琛ㄥ崟鍙傛暟
       form: {},
@@ -1051,6 +1104,9 @@
     this.getUsermsg();
   },
   mounted() {
+    if (grtItem("medicalCostCheck")) {
+      this.queryParams = grtItem("medicalCostCheck");
+    };
     this.selectReporters();
     this.getlistOrganization();
     //his.getlistUser();
@@ -1065,6 +1121,8 @@
       this.loading = true;
       // this.queryParams.params = {};
       listbypower(this.queryParams).then(res => {
+        removeItem("medicalCostCheck");
+        setItem("medicalCostCheck", this.queryParams);
         this.loading = false;
         let list = res.rows;
         let arr = [];
@@ -1324,6 +1382,17 @@
         });
       }
     },
+    beforehandCheck(row){
+      this.$router.push({
+        path: "/finance/applyDetail/",
+        query: {
+          id: row.id,
+          businessType: "3",
+          beforehandType:'1',
+          operationType: "check",
+        }
+      });
+    },
     /** 淇敼鎸夐挳鎿嶄綔 */
     handleCheck(row) {
       this.$router.push({

--
Gitblit v1.9.3