oms 新增健康报告上传页面
This commit is contained in:
40
oms/oms-h5/src/views/member/health/show.vue
Normal file
40
oms/oms-h5/src/views/member/health/show.vue
Normal file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<div class="app-container calendar-list-container">
|
||||
<el-form class="small-space" :model="form" :rules="rules" ref="form" label-position="right">
|
||||
<el-form-item>
|
||||
<el-button style="float: right;margin-top: -25px;" @click="handleCancel">返回</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div id="iframe-container">
|
||||
<iframe :src="search_eq_docPath" scrolling="auto" frameborder="0" id="iframe"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import waves from '@/directive/waves.js'// 水波纹指令
|
||||
|
||||
export default {
|
||||
directives: {
|
||||
waves
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
search_eq_docPath: undefined
|
||||
}
|
||||
},
|
||||
created() {
|
||||
// 初始化
|
||||
this.search_eq_docPath = this.$route.query.docPath
|
||||
},
|
||||
methods: {
|
||||
/**
|
||||
* 取消
|
||||
*/
|
||||
handleCancel() {
|
||||
this.$router.go(-1)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user