Blame view

src/components/Upload/SingleImage.vue 3.18 KB
d7d9c38c2   Adam   auto commit the c...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  <template>
    <div class="upload-container">
      <el-upload
        :data="dataObj"
        :multiple="false"
        :show-file-list="false"
        :on-success="handleImageSuccess"
        class="image-uploader"
        drag
        action="https://httpbin.org/post"
      >
        <i class="el-icon-upload" />
        <div class="el-upload__text">
          将文件拖到此处,或<em>点击上传</em>
        </div>
      </el-upload>
      <div class="image-preview">
        <div v-show="imageUrl.length>1" class="image-preview-wrapper">
          <img :src="imageUrl+'?imageView2/1/w/200/h/200'">
          <div class="image-preview-action">
            <i class="el-icon-delete" @click="rmImage" />
          </div>
        </div>
      </div>
    </div>
  </template>
  
  <script>
  import { getToken } from '@/api/qiniu'
  
  export default {
    name: 'SingleImageUpload',
    props: {
      value: {
        type: String,
        default: ''
      }
    },
    data() {
      return {
        tempUrl: '',
        dataObj: { token: '', key: '' }
      }
    },
    computed: {
      imageUrl() {
        return this.value
      }
    },
    methods: {
      rmImage() {
        this.emitInput('')
      },
      emitInput(val) {
        this.$emit('input', val)
      },
      handleImageSuccess() {
        this.emitInput(this.tempUrl)
      },
      beforeUpload() {
        const _self = this
        return new Promise((resolve, reject) => {
          getToken().then(response => {
            const key = response.data.qiniu_key
            const token = response.data.qiniu_token
            _self._data.dataObj.token = token
            _self._data.dataObj.key = key
            this.tempUrl = response.data.qiniu_url
            resolve(true)
          }).catch(err => {
            console.log(err)
            reject(false)
          })
        })
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
      @import "~@/styles/mixin.scss";
      .upload-container {
          width: 100%;
          position: relative;
          @include clearfix;
          .image-uploader {
              width: 60%;
              float: left;
          }
          .image-preview {
              width: 200px;
              height: 200px;
              position: relative;
              border: 1px dashed #d9d9d9;
              float: left;
              margin-left: 50px;
              .image-preview-wrapper {
                  position: relative;
                  width: 100%;
                  height: 100%;
                  img {
                      width: 100%;
                      height: 100%;
                  }
              }
              .image-preview-action {
                  position: absolute;
                  width: 100%;
                  height: 100%;
                  left: 0;
                  top: 0;
                  cursor: default;
                  text-align: center;
                  color: #fff;
                  opacity: 0;
                  font-size: 20px;
                  background-color: rgba(0, 0, 0, .5);
                  transition: opacity .3s;
                  cursor: pointer;
                  text-align: center;
                  line-height: 200px;
                  .el-icon-delete {
                      font-size: 36px;
                  }
              }
              &:hover {
                  .image-preview-action {
                      opacity: 1;
                  }
              }
          }
      }
  
  </style>