Explorar o código

创还能公司时,过滤掉禁用的模板

louhangfei %!s(int64=2) %!d(string=hai) anos
pai
achega
da0a238b13
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/views/system-config/scene-manage/use-sence-templete.ts

+ 1 - 1
src/views/system-config/scene-manage/use-sence-templete.ts

@@ -23,7 +23,7 @@ export function useSceneTemplete() {
 
   const getTemplete = () => {
     querytemplate().then((res) => {
-      templateList.value = res;
+      templateList.value = res?.filter((x) => x.status === 0) || [];
       console.log('templateList.value', templateList.value);
     });
   };