|
@@ -123,6 +123,8 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
activeName: "详细信息",
|
|
|
+ // 根路径
|
|
|
+ baseURL: process.env.VUE_APP_BASE_API,
|
|
|
typeList: [
|
|
|
{ label: "要闻咨询", value: "1" },
|
|
|
{ label: "政策法规", value: "2" },
|
|
@@ -137,7 +139,7 @@ export default {
|
|
|
created() {
|
|
|
if (this.taskList.formobj.picture) {
|
|
|
this.fileList.push({
|
|
|
- url: this.taskList.formobj.picture,
|
|
|
+ url: this.baseURL + this.taskList.formobj.picture,
|
|
|
name: "xxx",
|
|
|
});
|
|
|
// downloadpic(this.taskList.formobj.picture).then((res) => {
|
|
@@ -150,10 +152,10 @@ export default {
|
|
|
taskList(curVal, oldVal) {
|
|
|
if (curVal) {
|
|
|
this.fileList.pop();
|
|
|
- this.fileList.push({
|
|
|
- url: curVal.formobj.picture,
|
|
|
- name: "xxx",
|
|
|
- });
|
|
|
+ this.fileList.push({
|
|
|
+ url: this.baseURL + curVal.formobj.picture,
|
|
|
+ name: "xxx",
|
|
|
+ });
|
|
|
// downloadpic(curVal.formobj.picture).then((res) => {
|
|
|
// this.fileList.push({
|
|
|
// url: window.URL.createObjectURL(res),
|