Browse Source

当前金额补充

master
wuxu 1 month ago
parent
commit
f9d92c3add
  1. 9
      jwtech-admin-page/src/views/building/projectInfo/costChangeWarning/costInfo.vue
  2. 4
      jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiCostChangeRule.java

9
jwtech-admin-page/src/views/building/projectInfo/costChangeWarning/costInfo.vue

@ -45,15 +45,16 @@
<el-table-column label="预警类型" align="center" prop="warnType" :formatter="warningTypeFormat" min-width="120"/> <el-table-column label="预警类型" align="center" prop="warnType" :formatter="warningTypeFormat" min-width="120"/>
<el-table-column label="预警条件" align="center" prop="warnCondition" :formatter="warningConditionFormat" width="80"/> <el-table-column label="预警条件" align="center" prop="warnCondition" :formatter="warningConditionFormat" width="80"/>
<el-table-column label="金额" align="center" prop="amount" min-width="120"/> <el-table-column label="金额" align="center" prop="amount" min-width="120"/>
<el-table-column label="预警级别" align="center" prop="warnLevel" :formatter="warningLevelFormat" width="100"/> <!--<el-table-column label="预警级别" align="center" prop="warnLevel" :formatter="warningLevelFormat" width="100"/>-->
<el-table-column label="时间节点" align="center" prop="dateNode" width="120"/> <el-table-column label="时间节点" align="center" prop="dateNode" width="120"/>
<el-table-column label="预警描述" align="center" prop="ruleMsg" min-width="170"/> <el-table-column label="预警描述" align="center" prop="ruleMsg" min-width="170"/>
<el-table-column label="当前金额" align="center" prop="currentAmount" min-width="170"/>
<!-- <el-table-column label="状态" align="center" prop="status" min-width="120"> <!-- <el-table-column label="状态" align="center" prop="status" min-width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.status=='1' ? '预警' : '正常' }}</span> <span>{{ scope.row.status=='1' ? '预警' : '正常' }}</span>
</template> </template>
</el-table-column> --> </el-table-column> -->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right"> <!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
size="mini" size="mini"
@ -70,7 +71,7 @@
v-hasPermi="['build:costChangeWarning:remove']" v-hasPermi="['build:costChangeWarning:remove']"
>删除</el-button> >删除</el-button>
</template> </template>
</el-table-column> </el-table-column>-->
</el-table> </el-table>
<pagination <pagination
@ -188,6 +189,7 @@ export default {
dateNode: null, dateNode: null,
ruleMsg: null, ruleMsg: null,
createUid: null, createUid: null,
currentAmount: null,
createTime: null, createTime: null,
updateUid: null, updateUid: null,
updateTime: null, updateTime: null,
@ -362,6 +364,7 @@ export default {
ruleMsg: null, ruleMsg: null,
createUid: null, createUid: null,
createTime: null, createTime: null,
currentAmount: null,
updateUid: null, updateUid: null,
updateTime: null, updateTime: null,
remark: null, remark: null,

4
jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiCostChangeRule.java

@ -85,4 +85,8 @@ public class BsSgcJsjdBuiCostChangeRule extends BaseEntity
@ApiModelProperty("状态") @ApiModelProperty("状态")
private String status; private String status;
/** 创建人 */
@Excel(name = "当前金额")
@ApiModelProperty("当前金额")
private String currentAmount;
} }

Loading…
Cancel
Save