From 11b3fee3b15e3facf39e5ce9570b65b838b919c4 Mon Sep 17 00:00:00 2001 From: yxh <172933527@qq.com> Date: 星期三, 11 十月 2023 17:16:04 +0800 Subject: [PATCH] yxh --- src/views/project/fundcheck/medicalCostCheck/index.vue | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 48 insertions(+), 2 deletions(-) diff --git a/src/views/project/fundcheck/medicalCostCheck/index.vue b/src/views/project/fundcheck/medicalCostCheck/index.vue index 8792ddd..9538b5f 100644 --- a/src/views/project/fundcheck/medicalCostCheck/index.vue +++ b/src/views/project/fundcheck/medicalCostCheck/index.vue @@ -88,6 +88,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 @@ -187,6 +198,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="鎿嶄綔" @@ -196,6 +220,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" @@ -699,7 +731,7 @@ fixed="right" align="center" label="鎿嶄綔" - width="120" + width="200" > <template slot-scope="scope"> <el-button @@ -911,7 +943,8 @@ "sys_fund_type", "sys_finsubject", "sys_financeitemtype", - "sys_consolationfundlevel" + "sys_consolationfundlevel", + "sys_stage_type" ], data() { return { @@ -1084,6 +1117,8 @@ mounted() { if (grtItem("medicalCostCheck")) { this.queryParams = grtItem("medicalCostCheck"); + this.queryParams.APPLICATIONBEGTIME = ''; + this.queryParams.APPLICATIONENDTIME =''; }; this.selectReporters(); this.getlistOrganization(); @@ -1360,6 +1395,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