Browse Source

fix: create new datadictionary parentid not convert form string

pull/280/head
cKey 5 years ago
parent
commit
2adcdc5f5f
  1. 4
      vueJs/src/views/admin/data-dictionary/index.vue

4
vueJs/src/views/admin/data-dictionary/index.vue

@ -37,9 +37,9 @@ import DataDictionaryTree from './components/DataDictionaryTree.vue'
} }
}) })
export default class extends Vue { export default class extends Vue {
private selectDataId = '' private selectDataId: string | null = null
private onDataChecked(dataId: string) { private onDataChecked(dataId: string | null) {
this.selectDataId = dataId this.selectDataId = dataId
} }
} }

Loading…
Cancel
Save