diff --git a/src/WguAppTemplate.vue b/src/WguAppTemplate.vue index 5570dc78..c3bdd1b6 100644 --- a/src/WguAppTemplate.vue +++ b/src/WguAppTemplate.vue @@ -33,6 +33,9 @@ :color="baseColor" :draggable="moduleWin.draggable" :initPos="moduleWin.initPos" + :width="moduleWin.width" + :title="moduleWin.title" + :icon="moduleWin.icon" /> @@ -63,6 +66,7 @@ import LayerListWin from './components/layerlist/LayerListWin' import InfoClickWin from './components/infoclick/InfoClickWin' import MapLoadingStatus from './components/progress/MapLoadingStatus' + import FeatureInfoWindow from './components/FeatureInfoWindow' export default { name: 'wgu-app-tpl', @@ -74,7 +78,8 @@ 'wgu-measuretool-win': MeasureWin, 'wgu-layerlist-win': LayerListWin, 'wgu-infoclick-win': InfoClickWin, - 'wgu-maploading-status': MapLoadingStatus + 'wgu-maploading-status': MapLoadingStatus, + 'wgu-feature-info-window-win': FeatureInfoWindow }, data () { return { @@ -121,7 +126,10 @@ moduleWins.push({ type: key + '-win', draggable: moduleOpts.draggable, - initPos: moduleOpts.initPos + initPos: moduleOpts.initPos, + title: moduleOpts.title, + width: moduleOpts.width, + icon: moduleOpts.icon }); } } diff --git a/src/components/AppHeader.vue b/src/components/AppHeader.vue index bb5f2520..0bee9ba6 100644 --- a/src/components/AppHeader.vue +++ b/src/components/AppHeader.vue @@ -10,7 +10,7 @@ - {{title}} + diff --git a/src/components/AppLogo.vue b/src/components/AppLogo.vue index a42e2cb9..9399c8a0 100644 --- a/src/components/AppLogo.vue +++ b/src/components/AppLogo.vue @@ -1,13 +1,22 @@ @@ -18,7 +27,8 @@ export default { data () { return { logoSrc: this.$appConfig.logo, - logoSize: this.$appConfig.logoSize + logoSize: this.$appConfig.logoSize, + logoText: this.$appConfig.logoText } } } @@ -27,7 +37,7 @@ export default {