From 6196fc48d9a22add90e600e2d3a9ed8bacad3dd7 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期三, 25 十月 2023 14:20:00 +0800
Subject: [PATCH] 11

---
 src/views/project/fundcheck/medicalCostCheck/index.vue |   91 ++++++++++++++++++++++++++-------------------
 1 files changed, 52 insertions(+), 39 deletions(-)

diff --git a/src/views/project/fundcheck/medicalCostCheck/index.vue b/src/views/project/fundcheck/medicalCostCheck/index.vue
index 17d2f03..c23c0c7 100644
--- a/src/views/project/fundcheck/medicalCostCheck/index.vue
+++ b/src/views/project/fundcheck/medicalCostCheck/index.vue
@@ -46,17 +46,7 @@
             />
           </el-form-item>
         </el-col>
-        <el-col :span="5">
-          <el-form-item label="鎹愮尞浜�" prop="APPLICANT" 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="5">
           <el-form-item label="瀹℃壒鐘舵��" prop="CHECKFLAG" style="float: left">
             <el-select
@@ -89,6 +79,23 @@
       </el-row>
       <el-row>
         <el-col :span="5">
+          <el-form-item label-width="120px" label="鐢宠鏉愭枡鐘舵��" prop="checkstatus" style="float: left">
+            <el-select
+              v-model="queryParams.checkstatus"
+              placeholder="璇烽�夋嫨"
+              style="width: 100%"
+            >
+              <el-option
+                v-for="item in checkmaterials"
+                :key="item.value"
+                :label="item.label"
+                :value="item.value"
+              >
+              </el-option>
+            </el-select>
+          </el-form-item>
+        </el-col>
+        <el-col :span="5">
           <el-form-item label="鎹愮尞鑰�" prop="donorname" style="float: left">
             <el-input
               v-model="queryParams.donorname"
@@ -114,8 +121,7 @@
           </div>
         </el-col>
       </el-row>
-      </el-form
-    >
+    </el-form>
     <el-form ref="infoform" label-width="100px">
       <el-row>
         <el-table
@@ -199,18 +205,18 @@
             </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>
+            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="鎿嶄綔"
@@ -220,14 +226,6 @@
             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"
@@ -923,8 +921,7 @@
 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';
-
+import { setItem, grtItem, removeItem } from "@/utils/storage.js";
 
 export default {
   components: {
@@ -1017,6 +1014,20 @@
         {
           value: 2,
           label: "鍏ㄩ儴"
+        }
+      ],
+      checkmaterials: [
+      {
+          value: 1,
+          label: "鏉愭枡寰呭鏍�"
+        },
+        {
+          value: 2,
+          label: "瀹℃煡閫氳繃绛夊緟閭瘎绾歌川鏉愭枡"
+        },
+        {
+          value: 3,
+          label: "宸叉敹鍒扮焊璐ㄦ潗鏂�"
         }
       ],
       // 鏌ヨ鍙傛暟
@@ -1117,7 +1128,9 @@
   mounted() {
     if (grtItem("medicalCostCheck")) {
       this.queryParams = grtItem("medicalCostCheck");
-    };
+      this.queryParams.APPLICATIONBEGTIME = "";
+      this.queryParams.APPLICATIONENDTIME = "";
+    }
     this.selectReporters();
     this.getlistOrganization();
     //his.getlistUser();
@@ -1393,14 +1406,14 @@
         });
       }
     },
-    beforehandCheck(row){
+    beforehandCheck(row) {
       this.$router.push({
         path: "/finance/applyDetail/",
         query: {
           id: row.id,
           businessType: "3",
-          beforehandType:'1',
-          operationType: "check",
+          beforehandType: "1",
+          operationType: "check"
         }
       });
     },

--
Gitblit v1.9.3