zhangtao
laozt 11 months ago
parent 8da3d99268
commit e282e7906f

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

@ -140,6 +140,33 @@
{{ scope.row.completionRate }}%
</template>
</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>
</div>
</div>
@ -168,7 +195,7 @@
<el-table
:data="tableInfoData"
style="width: 100%"
:height="530"
:height="580"
:border="false"
:row-class-name="tableRowClassName"
>
@ -213,6 +240,33 @@
{{ scope.row.completionRate }}%
</template>
</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>
</div>
</el-dialog>
@ -333,7 +387,7 @@ export default {
title: "",
isDialogShow: false,
tableInfoData: [],
tableHeight: 530,
tableHeight: 580,
};
},
components: {
@ -352,7 +406,7 @@ export default {
if (screenWidth == 1366) {
this.tableHeight = 500;
} else {
this.tableHeight = detectZoom == 100 ? 750 : 530;
this.tableHeight = detectZoom == 100 ? 750 : 580;
}
if (JSON.parse(sessionStorage.getItem("USER_P_STATUS")) == 1) {
//

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

Loading…
Cancel
Save