instruct.vue 655 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view>
  3. <view class="">
  4. 操作文档说明:
  5. </view>
  6. <!-- #ifdef MP-WEIXIN -->
  7. <text style="color:#00a3f4;cursor: pointer;margin-left: 50rpx !important;"
  8. @click.native="viewSee('')">点击预览文件</text>
  9. <!-- #endif -->
  10. <!-- #ifdef H5 -->
  11. <a style="color:#00a3f4;cursor: pointer;margin-left: 50rpx !important;" @click="viewSee('')">点击预览文件</a>
  12. <!-- #endif -->
  13. </view>
  14. </template>
  15. <script>
  16. import {
  17. downSee
  18. } from '@/utils/common'
  19. export default {
  20. data() {
  21. return {
  22. }
  23. },
  24. methods: {
  25. //查看已上传附件
  26. viewSee(val){
  27. downSee(val)
  28. },
  29. }
  30. }
  31. </script>
  32. <style>
  33. </style>