zhangtao
laozt 11 months ago
parent 8da3d99268
commit e282e7906f

@ -2,7 +2,7 @@
# @Author: 张涛 # @Author: 张涛
# @Date: 2023-07-18 13:04:50 # @Date: 2023-07-18 13:04:50
# @LastEditors: laozt 2721205210@qq.com # @LastEditors: laozt 2721205210@qq.com
# @LastEditTime: 2024-01-09 14:04:56 # @LastEditTime: 2024-03-01 16:39:10
# @FilePath: \suzhouyingjiPC\.env.development # @FilePath: \suzhouyingjiPC\.env.development
### ###
# 页面标题 # 页面标题

@ -140,6 +140,33 @@
{{ scope.row.completionRate }}% {{ scope.row.completionRate }}%
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
label="CD执法计划"
prop="cdExecutionPlan"
header-align="center"
>
<template slot-scope="scope">
{{ scope.row.cdExecutionPlan }}
</template>
</el-table-column>
<el-table-column
label="CD完成执法"
prop="cdFinish"
header-align="center"
>
<template slot-scope="scope">
{{ scope.row.cdFinish }}
</template>
</el-table-column>
<el-table-column
label="CD完成率"
prop="cdCompletionRate"
header-align="center"
>
<template slot-scope="scope">
{{ scope.row.cdCompletionRate }}%
</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</div> </div>
@ -168,7 +195,7 @@
<el-table <el-table
:data="tableInfoData" :data="tableInfoData"
style="width: 100%" style="width: 100%"
:height="530" :height="580"
:border="false" :border="false"
:row-class-name="tableRowClassName" :row-class-name="tableRowClassName"
> >
@ -213,6 +240,33 @@
{{ scope.row.completionRate }}% {{ scope.row.completionRate }}%
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
label="CD执法计划"
prop="cdExecutionPlan"
header-align="center"
>
<template slot-scope="scope">
{{ scope.row.cdExecutionPlan }}
</template>
</el-table-column>
<el-table-column
label="CD完成执法"
prop="cdFinish"
header-align="center"
>
<template slot-scope="scope">
{{ scope.row.cdFinish }}
</template>
</el-table-column>
<el-table-column
label="CD完成率"
prop="cdCompletionRate"
header-align="center"
>
<template slot-scope="scope">
{{ scope.row.cdCompletionRate }}%
</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</el-dialog> </el-dialog>
@ -333,7 +387,7 @@ export default {
title: "", title: "",
isDialogShow: false, isDialogShow: false,
tableInfoData: [], tableInfoData: [],
tableHeight: 530, tableHeight: 580,
}; };
}, },
components: { components: {
@ -352,7 +406,7 @@ export default {
if (screenWidth == 1366) { if (screenWidth == 1366) {
this.tableHeight = 500; this.tableHeight = 500;
} else { } else {
this.tableHeight = detectZoom == 100 ? 750 : 530; this.tableHeight = detectZoom == 100 ? 750 : 580;
} }
if (JSON.parse(sessionStorage.getItem("USER_P_STATUS")) == 1) { if (JSON.parse(sessionStorage.getItem("USER_P_STATUS")) == 1) {
// //

@ -71,7 +71,7 @@
<img src="@/assets/images/export.png" alt="" /> <img src="@/assets/images/export.png" alt="" />
<span>导出excel</span> <span>导出excel</span>
</div> </div>
<div class="newProjectDis" @click="handleAdd"> <div class="newProject" @click="handleAdd">
<img src="@/assets/images/newProject.png" alt="" /> <img src="@/assets/images/newProject.png" alt="" />
<span>新增计划</span> <span>新增计划</span>
</div> </div>
@ -378,11 +378,11 @@ export default {
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
handleAdd() { handleAdd() {
this.$message({ // this.$message({
message: '2024年执法计划申报结束暂时不允许新增计划', // message: '2024',
type: 'warning' // type: 'warning'
}); // });
// this.$refs.addDialog.openDialog(); this.$refs.addDialog.openDialog();
}, },
/** 详情按钮操作 */ /** 详情按钮操作 */
handleInfo(row) { handleInfo(row) {
@ -626,8 +626,7 @@ export default {
.newProjectDis { .newProjectDis {
background-color: #ccc; background-color: #ccc;
/* 设置背景颜色为灰色 */ opacity: 0.6;
opacity: 0.6; /* 设置透明度为 60% */
} }
} }

Loading…
Cancel
Save