<el-form-item label="轮播图图片" prop="image"> <el-upload class="avatar-uploader" :action="`${BASE_URL}/manager/banner/upload`"//上传的路径 :headers="{'Authorization':Authorization}"//头文件 :show-file-list="false" //是否显示已上传文件列表 :on-success="handleAvatarSuccess" //成功上传的回调 :before-upload="beforeAvatarUpload"//上传文件之前的钩子
> <img v-if="form.image" :src="image" class="avatar">//使用image的时候获取本地仓储存的位置
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
</el-form-item>《--handleAvatarSuccess(res, file) { this.image = URL.createObjectURL(file.raw); this.form.image = res.url; },--》