12345678910111213141516171819202122232425262728293031323334 |
- <!--安全管理制度-->
- <template>
- <view id="safetyManagement">
- <web-view :src="'https://lab.sxitdlc.com/jndxlabSystem/admin/#/codeHtml?code='+code+'&type==2'"></web-view>
- </view>
- </template>
- <script>
- export default {
- name: "safetyManagement",
- data() {
- return {
- code:"",
- }
- },
- onLoad(option) {
- this.code = JSON.parse(decodeURIComponent(option.code));
- },
- mounted(){
- },
- methods:{
- },
- }
- </script>
- <style lang="stylus" scoped>
- #safetyManagement{
- overflow scroll
- }
- </style>
|