12345678910111213141516171819202122232425262728293031323334 |
- <!--危险化学品说明-->
- <template>
- <view id="hazardousChemicalsDescription">
- <web-view :src="'https://lab.sxitdlc.com/jndxlabSystem/admin/#/codeHtml?code='+code+'&type==1'"></web-view>
- </view>
- </template>
- <script>
- export default {
- name: "hazardousChemicalsDescription",
- data() {
- return {
- code:"",
- }
- },
- onLoad(option) {
- this.code = JSON.parse(decodeURIComponent(option.code));
- },
- mounted(){
- },
- methods:{
- },
- }
- </script>
- <style lang="stylus" scoped>
- #hazardousChemicalsDescription{
- overflow scroll
- }
- </style>
|