hazardousChemicalsDescription.vue 680 B

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