instruct.vue 743 B

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