This commit is contained in:
2020-11-12 22:24:29 +00:00
parent da91700fa1
commit a8fc8f4cbf
3 changed files with 13 additions and 2 deletions

View File

@@ -45,6 +45,7 @@
:items="selectLists.mapUrls"
item-text="name"
item-value="value"
@input="mapUrlSelectionChanged"
></v-select>
</v-col>
@@ -263,6 +264,10 @@ export default {
vm.darkMode ? "$ayiSun" : "$ayiMoon"
);
},
mapUrlSelectionChanged(val) {
this.obj.mapUrlTemplate = val;
this.fieldValueChanged("mapUrlTemplate");
},
fieldValueChanged(ref) {
if (!this.formState.loading && !this.formState.readOnly) {
window.$gz.form.fieldValueChanged(this, ref);