|
@@ -122,6 +122,9 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import {
|
|
|
+ downloadpic,
|
|
|
+} from "@/api/portal/task/task";
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -132,29 +135,37 @@ export default {
|
|
|
{ label: "通知公告", value: "3" },
|
|
|
{ label: "政策解读", value: "4" },
|
|
|
],
|
|
|
- fileList: [{ name: "", url: "" }],
|
|
|
+ fileList: [
|
|
|
+ ],
|
|
|
BigImgVisible: false,
|
|
|
};
|
|
|
},
|
|
|
props: ["taskList"],
|
|
|
created() {
|
|
|
if (this.taskList.formobj.picture) {
|
|
|
-
|
|
|
- this.fileList[0] = {
|
|
|
- name: "xxx",
|
|
|
- url: 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])
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
taskList(curVal, oldVal) {
|
|
|
if (curVal) {
|
|
|
- if (this.taskList.formobj.picture) {
|
|
|
- this.fileList[0] = {
|
|
|
- name: "xxx",
|
|
|
- url: this.taskList.formobj.picture,
|
|
|
- };
|
|
|
- }
|
|
|
+ this.fileList.pop()
|
|
|
+ console.log('新数据:',curVal.formobj.picture)
|
|
|
+ console.log('ssss',this.fileList)
|
|
|
+ downloadpic(curVal.formobj.picture).then((res) => {
|
|
|
+ this.fileList.push({
|
|
|
+ url:window.URL.createObjectURL(res),
|
|
|
+ name:'xxx'
|
|
|
+ })
|
|
|
+ console.log('下载转换后:',this.fileList[0])
|
|
|
+ });
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -169,4 +180,4 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
-</style>
|
|
|
+</style>
|