123456789101112131415161718192021222324252627282930313233343536 |
- <!--安全管理制度-->
- <template>
- <view id="safetyManagement">
- <web-view :src="baseUrl+'admin/#/codeHtml?code='+code+'&type==2'"></web-view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- export default {
- name: "safetyManagement",
- data() {
- return {
- baseUrl:config.base_url,
- code:"",
- }
- },
- onLoad(option) {
- this.code = JSON.parse(decodeURIComponent(option.code));
- },
- mounted(){
- },
- methods:{
- },
- }
- </script>
- <style lang="stylus" scoped>
- #safetyManagement{
- overflow scroll
- }
- </style>
|