From 863c5a26cb1f065bf24a8f28e5641242fdb95644 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期三, 20 九月 2023 16:11:30 +0800 Subject: [PATCH] 11 --- src/views/project/fundcheck/expertFeeCheck/index.vue | 44 ++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 40 insertions(+), 4 deletions(-) diff --git a/src/views/project/fundcheck/expertFeeCheck/index.vue b/src/views/project/fundcheck/expertFeeCheck/index.vue index 9e7c574..264798d 100644 --- a/src/views/project/fundcheck/expertFeeCheck/index.vue +++ b/src/views/project/fundcheck/expertFeeCheck/index.vue @@ -6,14 +6,25 @@ <el-form-item label="鐢宠鏃ユ湡" prop="createTime"> <el-date-picker format="yyyy-MM-dd" @change="selectapplication" value-format="yyyy-MM-dd" v-model="createTime" type="daterange" range-separator="鑷�" start-placeholder="鐢宠寮�濮嬫棩鏈�" end-placeholder="鐢宠缁撴潫鏃ユ湡" - @keyup.enter.native="handleQuery"> + @keyup.enter.native="flowconclusion"> </el-date-picker> + </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" placeholder="璇疯緭鍏ョ敵璇蜂汉濮撳悕" clearable size="small" - @keyup.enter.native="handleQuery" /> + @keyup.enter.native="flowconclusion" /> </el-form-item> </el-col> <el-col :span="5"> @@ -24,9 +35,25 @@ </el-select> </el-form-item> </el-col> - <el-col :span="6"> + <!-- <el-col :span="6"> <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> + </el-col> --> + </el-row> + <el-row> + <el-col :span="3"> + <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> @@ -397,6 +424,8 @@ } from "@/api/project/donatebaseinfo"; import Li_area_select from "@/components/Address"; import OrgSelecter from "@/views/project/components/orgselect"; +import { setItem,grtItem,removeItem } from '@/utils/storage.js'; + export default { components: { @@ -497,6 +526,7 @@ APPLICATIONENDTIME: null, CHECKFLAG: 1, APPLYTYPE: 1, + money: null }, // 琛ㄥ崟鍙傛暟 form: {}, @@ -571,14 +601,18 @@ watch: {}, created() { //this.getBaseInfoList(); - this.getlistbypower(); //this.resetForm(); this.getCurFundType(); this.getUsermsg(); }, mounted() { + if (grtItem("expertFeeCheck")) { + this.queryParams = grtItem("expertFeeCheck"); + }; this.selectReporters(); this.getlistOrganization(); + this.getlistbypower(); + //this.getlistUser(); this.getlistExternalperson(); }, @@ -610,6 +644,8 @@ this.loading = true; listbypower(this.queryParams).then((res) => { console.log("鏍规嵁鏉冮檺鏄剧ず鍒楄〃", res); + removeItem("expertFeeCheck"); + setItem("expertFeeCheck", this.queryParams); this.loading = false; let list = res.rows; let arr = []; -- Gitblit v1.9.3