|
@@ -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",
|
|
|
+ // });
|
|
|
+ // });
|
|
|
}
|
|
|
},
|
|
|
},
|