mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-28 03:03:23 +08:00
fix: 草稿状态逻辑
This commit is contained in:
@@ -73,8 +73,8 @@ const [BasicTable, tableApi] = useVbenVxeGrid({
|
|||||||
gridOptions,
|
gridOptions,
|
||||||
gridEvents: {
|
gridEvents: {
|
||||||
cellClick: ({ row }) => {
|
cellClick: ({ row }) => {
|
||||||
// 非草稿状态 不做处理
|
// 草稿状态 不做处理
|
||||||
if (row.status !== 'draft') {
|
if (row.status === 'draft') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// 查看详情
|
// 查看详情
|
||||||
|
|||||||
Reference in New Issue
Block a user