Browse Source

门户管理-新闻管理-图片上传方式改变“

Sanmu8 1 year ago
parent
commit
efa09e3740
2 changed files with 28 additions and 35 deletions
  1. 6 5
      src/views/news/index.vue
  2. 22 30
      src/views/news/task/index.vue

+ 6 - 5
src/views/news/index.vue

@@ -265,7 +265,7 @@ export default {
       let formData = new FormData();
       formData.append('file', file);
       upload(formData).then(res => {
-        this.form.picture = res.fileName;
+        this.form.picture = res.url;
       });
     },
     handleRemove(file) {
@@ -357,10 +357,11 @@ export default {
         this.form = response.data;
         this.open = true;
         this.title = '修改网站新闻';
-        downloadpic(this.form.picture).then(res => {
-          let src = window.URL.createObjectURL(res);
-          this.fileList.push({ name: 'xxx', url: src });
-        });
+        this.fileList.push({ name: 'xxx', url: this.form.picture });
+        // downloadpic(this.form.picture).then(res => {
+        //   let src = window.URL.createObjectURL(res);
+        //   this.fileList.push({ name: 'xxx', url: src });
+        // });
       });
     },
     handleCommit(row) {

+ 22 - 30
src/views/news/task/index.vue

@@ -35,24 +35,15 @@
           style="margin-top: 20px"
         >
           <el-form-item label="标题" prop="title">
-            <el-input
-              v-model="taskList.formobj.title"
-              disabled
-            ></el-input>
+            <el-input v-model="taskList.formobj.title" disabled></el-input>
           </el-form-item>
 
           <el-form-item label="来源">
-            <el-input
-              v-model="taskList.formobj.source"
-              disabled
-            ></el-input>
+            <el-input v-model="taskList.formobj.source" disabled></el-input>
           </el-form-item>
 
           <el-form-item label="类型" prop="type">
-            <el-select
-              v-model="taskList.formobj.type"
-              disabled
-            >
+            <el-select v-model="taskList.formobj.type" disabled>
               <el-option
                 v-for="item in typeList"
                 :key="item.value + 'typeList'"
@@ -127,9 +118,7 @@
 </template>
 
 <script>
-import {
-  downloadpic,
-} from "@/api/portal/task/task";
+import { downloadpic } from "@/api/portal/task/task";
 export default {
   data() {
     return {
@@ -140,34 +129,37 @@ export default {
         { label: "通知公告", value: "3" },
         { label: "政策解读", value: "4" },
       ],
-      fileList: [
-      ],
+      fileList: [],
       BigImgVisible: false,
     };
   },
   props: ["taskList"],
   created() {
     if (this.taskList.formobj.picture) {
-      downloadpic(this.taskList.formobj.picture).then((res) => {
-        this.fileList.push({
-          url:window.URL.createObjectURL(res),
-            name:'xxx'
-        })
-        console.log('下载转换后:',this.fileList[0])
+      this.fileList.push({
+        url: this.taskList.formobj.picture,
+        name: "xxx",
       });
+      // downloadpic(this.taskList.formobj.picture).then((res) => {
+
+      //   console.log('下载转换后:',this.fileList[0])
+      // });
     }
   },
   watch: {
     taskList(curVal, oldVal) {
       if (curVal) {
-        this.fileList.pop()
-        downloadpic(curVal.formobj.picture).then((res) => {
+        this.fileList.pop();
           this.fileList.push({
-            url:window.URL.createObjectURL(res),
-            name:'xxx'
-          })
-        });
-
+            url: curVal.formobj.picture,
+            name: "xxx",
+          });
+        // downloadpic(curVal.formobj.picture).then((res) => {
+        //   this.fileList.push({
+        //     url: window.URL.createObjectURL(res),
+        //     name: "xxx",
+        //   });
+        // });
       }
     },
   },