Browse Source

[feat]采购报价修改添加页面删除按钮失败的bug

dev
zhangsiqi 3 months ago
parent
commit
8a2125b2f5
  1. 10
      ruoyi-admin/src/main/resources/templates/purchase/purchaseQuote/purchaseQuote.html

10
ruoyi-admin/src/main/resources/templates/purchase/purchaseQuote/purchaseQuote.html

@ -178,7 +178,15 @@
return actions.join('');
}
}
]
],
rowStyle: function (row, index) {
if (row.auditStatus=="0") {
// 如果审核状态为待审核,则设置为红色
return {css:{"color":"red"}};
}
// 否则使用默认样式
return {};
}
};
$.table.init(options);
});

Loading…
Cancel
Save