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