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/officeExpenseCheck/index.vue | 79 +++++++++++++++++++++++++-------------- 1 files changed, 51 insertions(+), 28 deletions(-) diff --git a/src/views/project/fundcheck/officeExpenseCheck/index.vue b/src/views/project/fundcheck/officeExpenseCheck/index.vue index 1f9119c..70332bf 100644 --- a/src/views/project/fundcheck/officeExpenseCheck/index.vue +++ b/src/views/project/fundcheck/officeExpenseCheck/index.vue @@ -70,6 +70,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" @@ -179,18 +196,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="鎿嶄綔" @@ -208,14 +225,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" @@ -904,8 +914,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: { @@ -998,6 +1007,20 @@ { value: 2, label: "鍏ㄩ儴" + } + ], + checkmaterials: [ + { + value: 1, + label: "寰呭鏌�" + }, + { + value: 2, + label: "瀹℃牳閫氳繃绛夊緟鏉愭枡" + }, + { + value: 3, + label: "宸叉敹鍒版潗鏂�" } ], // 鏌ヨ鍙傛暟 @@ -1098,9 +1121,9 @@ mounted() { if (grtItem("officeExpenseCheck")) { this.queryParams = grtItem("officeExpenseCheck"); - this.queryParams.APPLICATIONBEGTIME = ''; - this.queryParams.APPLICATIONENDTIME =''; - }; + this.queryParams.APPLICATIONBEGTIME = ""; + this.queryParams.APPLICATIONENDTIME = ""; + } this.selectReporters(); this.getlistOrganization(); //his.getlistUser(); @@ -1377,14 +1400,14 @@ }); } }, - beforehandCheck(row){ + beforehandCheck(row) { this.$router.push({ path: "/finance/applyDetail/", query: { id: row.id, businessType: "4", - beforehandType:'1', - operationType: "check", + beforehandType: "1", + operationType: "check" } }); }, -- Gitblit v1.9.3