This commit is contained in:
u2nyakim 2025-08-22 17:58:34 +08:00
parent ac32c2a74a
commit a6d9063d52
2 changed files with 1 additions and 4 deletions

View File

@ -40,9 +40,6 @@
<el-radio v-for="item in (dataOptions || [])" :label="item.label" :value="item.value" />
</el-radio-group>
</template>
</el-form-item>
</template>

View File

@ -65,7 +65,7 @@ const configLoading = ref(false);
const reload = () => {
configLoading.value = true;
listConfig({group: configGroup.value, limit: 999}).then((data) => {
configList.value = data;
configList.value = data.filter(d=>d.type !== 'hidden');
configLoading.value = false;
});
};