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