|
@@ -77,7 +77,7 @@
|
|
|
<!-- <div class="el-upload__tip" slot="tip">只能上传不超过200MB的文件</div>-->
|
|
|
<!-- </el-upload>-->
|
|
|
<!-- </el-form-item>-->
|
|
|
- <el-form-item label="封面图">
|
|
|
+ <el-form-item label="图片上传">
|
|
|
<el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload" :file-list="fileList">
|
|
|
<i slot="default" class="el-icon-plus"></i>
|
|
|
<div slot="file" slot-scope="{ file }">
|
|
@@ -103,6 +103,10 @@
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+
|
|
|
+ <el-dialog :visible.sync="dialogVisible" fullscreen append-to-body @close="dialogVisible = false">
|
|
|
+ <img width="100%" :src="form.picture" alt="" />
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -113,6 +117,9 @@ export default {
|
|
|
name: 'COUNSELINGMESSAGE',
|
|
|
data() {
|
|
|
return {
|
|
|
+ disabled: false,
|
|
|
+ //预览
|
|
|
+ dialogVisible: false,
|
|
|
fileList: [],
|
|
|
statusOptionList: [
|
|
|
{ label: '草稿', value: 0 },
|
|
@@ -278,8 +285,16 @@ export default {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
this.title = '修改咨询信息';
|
|
|
+ if (this.form.fileUrl != null){
|
|
|
+ this.fileList.push({ name: 'xxx', url: this.form.fileUrl });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
+ //放大预览
|
|
|
+ handlePictureCardPreview(file) {
|
|
|
+ this.form.picture = file.url;
|
|
|
+ this.dialogVisible = true;
|
|
|
+ },
|
|
|
httprequest() {},
|
|
|
/** 上传附件 */
|
|
|
beforeupload(file) {
|