diff --git a/modules/cms/src/main/resources/views/modules/cms/categoryList.html b/modules/cms/src/main/resources/views/modules/cms/categoryList.html index 3c17ac80..391df42e 100644 --- a/modules/cms/src/main/resources/views/modules/cms/categoryList.html +++ b/modules/cms/src/main/resources/views/modules/cms/categoryList.html @@ -97,6 +97,9 @@ $('#dataGrid').dataGrid({ } actions.push(' '); actions.push(' '); + if (row.status == Global.STATUS_NORMAL){ + actions.push(' '); + } <% } %> return actions.join(''); }} diff --git a/modules/cms/src/main/resources/views/modules/cms/siteList.html b/modules/cms/src/main/resources/views/modules/cms/siteList.html index 3029855a..d649d341 100644 --- a/modules/cms/src/main/resources/views/modules/cms/siteList.html +++ b/modules/cms/src/main/resources/views/modules/cms/siteList.html @@ -78,6 +78,9 @@ $('#dataGrid').dataGrid({ actions.push(' '); } actions.push(' '); + if (row.status == Global.STATUS_NORMAL){ + actions.push(' '); + } <% } %> return actions.join(''); }}