|
@@ -284,14 +284,8 @@ export default {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
this.title = '修改网站管理';
|
|
|
- downloadpic(this.form.topPicture).then(res => {
|
|
|
- let src = window.URL.createObjectURL(res);
|
|
|
- this.fileList.push({ name: 'xxx', url: src });
|
|
|
- });
|
|
|
- downloadpic(this.form.bottomPicture).then(res => {
|
|
|
- let src = window.URL.createObjectURL(res);
|
|
|
- this.fileList2.push({ name: 'xxx', url: src });
|
|
|
- });
|
|
|
+ this.fileList.push({ name: 'xxx', url: this.baseUrl+response.data.topPicture});
|
|
|
+ this.fileList2.push({ name: 'xxx', url: this.baseUrl+response.data.bottomPicture});
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|