123456789101112131415161718192021222324252627282930313233343536 |
- <!--危险化学品说明-->
- <template>
- <view id="hazardousChemicalsDescription">
- <web-view :src="baseUrl+'admin/#/codeHtml?code='+code+'&type==1'"></web-view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- export default {
- name: "hazardousChemicalsDescription",
- data() {
- return {
- baseUrl:config.base_url,
- code:"",
- }
- },
- onLoad(option) {
- this.code = JSON.parse(decodeURIComponent(option.code));
- },
- mounted(){
- },
- methods:{
- },
- }
- </script>
- <style lang="stylus" scoped>
- #hazardousChemicalsDescription{
- overflow scroll
- }
- </style>
|