From e1d633ddeece986c1c866d4bc28e4193f3e3c41e Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期四, 12 十月 2023 15:49:49 +0800 Subject: [PATCH] 11 --- src/views/project/fundcheck/medicalCostCheck/index.vue | 82 +++++++++++++++++++++++++++++++++++++++-- 1 files changed, 78 insertions(+), 4 deletions(-) diff --git a/src/views/project/fundcheck/medicalCostCheck/index.vue b/src/views/project/fundcheck/medicalCostCheck/index.vue index e48da6a..f5394c5 100644 --- a/src/views/project/fundcheck/medicalCostCheck/index.vue +++ b/src/views/project/fundcheck/medicalCostCheck/index.vue @@ -88,6 +88,34 @@ </el-col> --> </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" + placeholder="璇疯緭鍏ョ敵璇蜂汉鎹愮尞鑰�" + clearable + size="small" + @keyup.enter.native="flowconclusion" + /> + </el-form-item> + </el-col> <el-col :span="4"> <div style="margin-bottom: 15px;"> <el-button @@ -103,8 +131,7 @@ </div> </el-col> </el-row> - </el-form - > + </el-form> <el-form ref="infoform" label-width="100px"> <el-row> <el-table @@ -184,6 +211,19 @@ <dict-tag :options="dict.type.sys_recordstatus" :value="scope.row.recordstatus" + /> + </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> @@ -699,7 +739,7 @@ fixed="right" align="center" label="鎿嶄綔" - width="120" + width="200" > <template slot-scope="scope"> <el-button @@ -891,6 +931,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"; export default { components: { @@ -909,7 +950,8 @@ "sys_fund_type", "sys_finsubject", "sys_financeitemtype", - "sys_consolationfundlevel" + "sys_consolationfundlevel", + "sys_stage_type" ], data() { return { @@ -982,6 +1024,20 @@ { value: 2, label: "鍏ㄩ儴" + } + ], + checkmaterials: [ + { + value: 1, + label: "寰呭鏌�" + }, + { + value: 2, + label: "瀹℃牳閫氳繃绛夊緟鏉愭枡" + }, + { + value: 3, + label: "宸叉敹鍒版潗鏂�" } ], // 鏌ヨ鍙傛暟 @@ -1080,6 +1136,11 @@ this.getUsermsg(); }, mounted() { + if (grtItem("medicalCostCheck")) { + this.queryParams = grtItem("medicalCostCheck"); + this.queryParams.APPLICATIONBEGTIME = ""; + this.queryParams.APPLICATIONENDTIME = ""; + } this.selectReporters(); this.getlistOrganization(); //his.getlistUser(); @@ -1094,6 +1155,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 = []; @@ -1353,6 +1416,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