mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
13 lines
754 B
HTML
Executable File
13 lines
754 B
HTML
Executable File
<div class="uploadImage row margin-left-0">
|
|
<div v-for="image in this.uploadImageInfo.photos">
|
|
<img v-bind:src="image" width="100px" height="100px"/>
|
|
<span v-on:click="this._removeImage(image)" class="fa fa-remove"
|
|
style="position: relative; top: -35px;right: 20px; color: #d9534f"></span>
|
|
</div>
|
|
<div class="uploadButton" v-on:click="this._uploadPhoto()" v-if= "this.uploadImageInfo.photos.length < this.uploadImageInfo.imageCount">
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
|
</div>
|
|
<input type="file" class="file" accept="image/*" id="uploadImage" v-if= "this.uploadImageInfo.photos.length < this.uploadImageInfo.imageCount" hidden
|
|
v-on:change="this._choosePhoto($event)">
|
|
</div>
|