20 lines
522 B
Vue
20 lines
522 B
Vue
<template>
|
|
<div style="width: 100%;height: 100%;">
|
|
<iframe id="iframe" width="100%" height="100%" name="iframe" style="border:0;" :src="src"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "MappingManagement",
|
|
data() {
|
|
return {
|
|
src: './w?sid=' + this.$store.state.sessionId + '&cmd=com.actionsoft.apps.coe.pal.mappingmanagement_main_page&dataType=' + this.$route.params.dataType
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |