vue-apps/com.actionsoft.apps.coe.pal/views/mappingManagement/MappingManagement.vue
shangxiaoran@qq.com 9d8f9f0e92 初始化应用
2022-06-28 01:29:37 +08:00

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>