{{$t("module.valueSet.getIndVsInfo")}}
{{$t("module.valueSet.invoke")}}GetValueSetByCode
{{$t("module.valueSet.mustPassParams")}}code
{{$t("module.valueSet.Eg")}}
this.$store
.dispatch("GetValueSetByCode", {
code: 'country'
})
.then(response => {
// your code ...
});
{{$t("module.valueSet.getParentVs")}}
{{$t("module.valueSet.invoke")}}GetValueSetByCodeAndParentKey
{{$t("module.valueSet.mustPassParams")}}code, parentKey
{{$t("module.valueSet.Eg")}}
this.$store
.dispatch("GetValueSetByCodeAndParentKey", {
"parentKey": "ShanXi",
"code": "city",
})
.then(response => {
// your code ...
});