From e55484fc73e5d7dd3ae0a904a9d4eb56260cd6a4 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 13 十月 2023 10:31:13 +0800 Subject: [PATCH] 11 --- src/views/project/fundcheck/performanceCheck/index.vue | 56 ++++++++++++++++++++++++++++++++++++++++++-------------- 1 files changed, 42 insertions(+), 14 deletions(-) diff --git a/src/views/project/fundcheck/performanceCheck/index.vue b/src/views/project/fundcheck/performanceCheck/index.vue index 579e40d..15110dd 100644 --- a/src/views/project/fundcheck/performanceCheck/index.vue +++ b/src/views/project/fundcheck/performanceCheck/index.vue @@ -64,8 +64,31 @@ </el-select> </el-form-item> </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="4"> <div style="margin-bottom: 15px;"> <el-button @@ -139,7 +162,7 @@ </template> </el-table-column> <el-table-column - label="棰勫鐘舵��" + label="鐢宠鏉愭枡鐘舵��" width="140" align="center" prop="checkstatus" @@ -168,14 +191,7 @@ @click="handleDetail(scope.row)" >璇︽儏</el-button > - <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" @@ -206,8 +222,6 @@ /> </el-row> </el-form> - - </div> </template> @@ -372,6 +386,20 @@ label: "鍏ㄩ儴" } ], + checkmaterials: [ + { + value: 1, + label: "寰呭鏍�" + }, + { + value: 2, + label: "瀹℃牳閫氳繃绛夊緟鏉愭枡" + }, + { + value: 3, + label: "宸叉敹鍒版潗鏂�" + } + ], // 鏌ヨ鍙傛暟 queryParams: { pageNum: 1, @@ -437,8 +465,8 @@ mounted() { if (grtItem("officeExpenseCheck")) { this.queryParams = grtItem("officeExpenseCheck"); - this.queryParams.APPLICATIONBEGTIME = ''; - this.queryParams.APPLICATIONENDTIME =''; + this.queryParams.APPLICATIONBEGTIME = ""; + this.queryParams.APPLICATIONENDTIME = ""; } this.getlistOrganization(); //his.getlistUser(); @@ -591,7 +619,7 @@ this.show = 3; } }); - }, + } } }; </script> -- Gitblit v1.9.3