hazardousChemicalsDescription.vue 729 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!--危险化学品说明-->
  2. <template>
  3. <view id="hazardousChemicalsDescription">
  4. <web-view :src="baseUrl+'admin/#/codeHtml?code='+code+'&type==1'"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. import { config } from '@/api/request/config.js'
  9. export default {
  10. name: "hazardousChemicalsDescription",
  11. data() {
  12. return {
  13. baseUrl:config.base_url,
  14. code:"",
  15. }
  16. },
  17. onLoad(option) {
  18. this.code = JSON.parse(decodeURIComponent(option.code));
  19. },
  20. mounted(){
  21. },
  22. methods:{
  23. },
  24. }
  25. </script>
  26. <style lang="stylus" scoped>
  27. #hazardousChemicalsDescription{
  28. overflow scroll
  29. }
  30. </style>