vue-apps/com.actionsoft.apps.coe.pal/views/mappingManagement/MappingManagement.vue

20 lines
522 B
Vue
Raw Normal View History

2022-06-28 01:29:37 +08:00
<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>