代码完善

This commit is contained in:
BianLzhaoMin 2025-02-19 17:18:52 +08:00
parent 1548ebb0c6
commit e65aba9c94
1 changed files with 2 additions and 2 deletions

View File

@ -160,11 +160,11 @@
cellData.templet = function (d) {
//如果d.isApprove == 1 去除当前行的编辑功能
let text = "";
if (d.isTwoApprove == 1) {
if (d.isThreeApprove == 1) {
text += '<a style="color: #009688;cursor: pointer;font-size: 15px"' +
' id="pass">已通过</a>';
}
if (d.isTwoApprove == 2) {
if (d.isThreeApprove == 2) {
text += '<a style="color: #a59e9e;cursor: pointer;font-size: 15px"' +
' id="reject">已驳回</a>';
}