From e21e9ad99c4c2a306d15cb270dc41520450ac9f2 Mon Sep 17 00:00:00 2001
From: yxh <172933527@qq.com>
Date: 星期二, 12 十二月 2023 00:16:02 +0800
Subject: [PATCH] yxh:修改了预审核提示信息
---
src/views/project/fundcheck/performanceCheck/index.vue | 68 +++++++++++++++++++++++++++------
1 files changed, 55 insertions(+), 13 deletions(-)
diff --git a/src/views/project/fundcheck/performanceCheck/index.vue b/src/views/project/fundcheck/performanceCheck/index.vue
index c7cae40..6e6b569 100644
--- a/src/views/project/fundcheck/performanceCheck/index.vue
+++ b/src/views/project/fundcheck/performanceCheck/index.vue
@@ -66,6 +66,28 @@
</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
@@ -90,6 +112,17 @@
:data="donateconsolationfundList"
@selection-change="handleSelectionChange"
>
+ <el-table-column type="selection" width="45"> </el-table-column>
+ <el-table-column
+ label="涓◣璁$畻鎯呭喌"
+ align="center"
+ prop="recordstatus"
+ width="200"
+ >
+ <template slot-scope="scope">
+ <dict-tag :options="dict.type.sys_tax" :value="scope.row.istax" />
+ </template>
+ </el-table-column>
<el-table-column
label="鐢宠鏃ユ湡"
width="180"
@@ -139,7 +172,7 @@
</template>
</el-table-column>
<el-table-column
- label="棰勫鐘舵��"
+ label="鐢宠鏉愭枡鐘舵��"
width="140"
align="center"
prop="checkstatus"
@@ -168,14 +201,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 +232,6 @@
/>
</el-row>
</el-form>
-
-
</div>
</template>
@@ -297,7 +321,9 @@
"sys_finsubject",
"sys_financeitemtype",
"sys_consolationfundlevel",
- "sys_stage_type"
+ "sys_stage_type",
+ "sys_performance_type",
+ "sys_tax"
],
data() {
return {
@@ -372,6 +398,20 @@
label: "鍏ㄩ儴"
}
],
+ checkmaterials: [
+ {
+ value: 1,
+ label: "鏉愭枡寰呭鏍�"
+ },
+ {
+ value: 2,
+ label: "瀹℃煡閫氳繃绛夊緟閭瘎绾歌川鏉愭枡"
+ },
+ {
+ value: 3,
+ label: "宸叉敹鍒扮焊璐ㄦ潗鏂�"
+ }
+ ],
// 鏌ヨ鍙傛暟
queryParams: {
pageNum: 1,
@@ -437,6 +477,8 @@
mounted() {
if (grtItem("officeExpenseCheck")) {
this.queryParams = grtItem("officeExpenseCheck");
+ this.queryParams.APPLICATIONBEGTIME = "";
+ this.queryParams.APPLICATIONENDTIME = "";
}
this.getlistOrganization();
//his.getlistUser();
@@ -589,7 +631,7 @@
this.show = 3;
}
});
- },
+ }
}
};
</script>
--
Gitblit v1.9.3