up.
This commit is contained in:
parent
ac32c2a74a
commit
a6d9063d52
@ -40,9 +40,6 @@
|
|||||||
<el-radio v-for="item in (dataOptions || [])" :label="item.label" :value="item.value" />
|
<el-radio v-for="item in (dataOptions || [])" :label="item.label" :value="item.value" />
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@ -65,7 +65,7 @@ const configLoading = ref(false);
|
|||||||
const reload = () => {
|
const reload = () => {
|
||||||
configLoading.value = true;
|
configLoading.value = true;
|
||||||
listConfig({group: configGroup.value, limit: 999}).then((data) => {
|
listConfig({group: configGroup.value, limit: 999}).then((data) => {
|
||||||
configList.value = data;
|
configList.value = data.filter(d=>d.type !== 'hidden');
|
||||||
configLoading.value = false;
|
configLoading.value = false;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user