12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view>
- <view class="">
- 操作文档说明:
- </view>
- <!-- #ifdef MP-WEIXIN -->
- <text style="color:#00a3f4;cursor: pointer;margin-left: 50rpx !important;"
- @click.native="viewSee('')">点击预览文件</text>
- <!-- #endif -->
- <!-- #ifdef H5 -->
- <a style="color:#00a3f4;cursor: pointer;margin-left: 50rpx !important;" @click="viewSee('')">点击预览文件</a>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import {
- downSee
- } from '@/utils/common'
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- //查看已上传附件
- viewSee(val){
- downSee(val)
- },
- }
- }
- </script>
- <style>
- </style>
|