#295
Showing
3 changed files
with
4 additions
and
3 deletions
| ... | @@ -182,14 +182,14 @@ export default { | ... | @@ -182,14 +182,14 @@ export default { |
| 182 | } else { | 182 | } else { |
| 183 | clearInterval(item.intervial); | 183 | clearInterval(item.intervial); |
| 184 | item.intervial = false; | 184 | item.intervial = false; |
| 185 | item.err = this.lan == 'en' ? "Fail" : this.lan == 'tc' ? "失敗" : "失败"; | 185 | item.err = this.lan == 'en' ? "Upload Failed" : this.lan == 'tc' ? "失敗" : "失败"; |
| 186 | this.$set(this, "images", this.images); | 186 | this.$set(this, "images", this.images); |
| 187 | this.refreshUploadNumber(); | 187 | this.refreshUploadNumber(); |
| 188 | } | 188 | } |
| 189 | }).catch(err => { | 189 | }).catch(err => { |
| 190 | clearInterval(item.intervial); | 190 | clearInterval(item.intervial); |
| 191 | item.intervial = false; | 191 | item.intervial = false; |
| 192 | item.err = this.lan == 'en' ? "Fail" : this.lan == 'tc' ? "失敗" : "失败"; | 192 | item.err = this.lan == 'en' ? "Upload Failed" : this.lan == 'tc' ? "失敗" : "失败"; |
| 193 | this.$set(this, "images", this.images); | 193 | this.$set(this, "images", this.images); |
| 194 | this.refreshUploadNumber(); | 194 | this.refreshUploadNumber(); |
| 195 | }); | 195 | }); | ... | ... |
| ... | @@ -162,6 +162,7 @@ $borderSize: 6px; | ... | @@ -162,6 +162,7 @@ $borderSize: 6px; |
| 162 | background-color: rgba($color: #000000, $alpha: .5) !important; | 162 | background-color: rgba($color: #000000, $alpha: .5) !important; |
| 163 | color: white !important; | 163 | color: white !important; |
| 164 | font-size: 1rem; | 164 | font-size: 1rem; |
| 165 | line-height: initial; | ||
| 165 | } | 166 | } |
| 166 | } | 167 | } |
| 167 | 168 | ... | ... |
| ... | @@ -21,7 +21,7 @@ export default { | ... | @@ -21,7 +21,7 @@ export default { |
| 21 | hadLoadPolicy: false, | 21 | hadLoadPolicy: false, |
| 22 | ignorePolicyCodes: [], | 22 | ignorePolicyCodes: [], |
| 23 | // 显示 | 23 | // 显示 |
| 24 | policyDetail: {}, | 24 | policyDetail: null, |
| 25 | showSuccessTip: false, | 25 | showSuccessTip: false, |
| 26 | showDownloadError: false | 26 | showDownloadError: false |
| 27 | } | 27 | } | ... | ... |
-
Please register or sign in to post a comment