This commit is contained in:
2021-03-15 22:31:42 +00:00
parent 2be0ae5850
commit f932cb8ff5

View File

@@ -4,7 +4,7 @@
<v-form data-cy="dlcForm" ref="form">
<v-row>
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
{{ hiddenAffectiveColumns }}
<template v-for="(item, index) in editView">
<v-col :key="item.key" cols="12" sm="6" lg="4" xl="3" px-2>
<v-card :data-cy="'columncard:' + item.key">
@@ -78,7 +78,7 @@ export default {
let vm = this;
try {
vm.dataListKey = this.$route.params.dataListKey;
vm.hiddenAffectiveColumns=this.$route.params.hiddenAffectiveColumns;
vm.hiddenAffectiveColumns = this.$route.params.hiddenAffectiveColumns;
await initForm(vm);
vm.formState.ready = true;
window.$gz.eventBus.$on("menu-click", clickHandler);