|
@@ -1,7 +1,6 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<el-tabs v-model="activeName">
|
|
|
-
|
|
|
<el-tab-pane label="详细信息" name="详细信息">
|
|
|
<el-descriptions border>
|
|
|
<el-descriptions-item label="活动名称">{{
|
|
@@ -28,7 +27,7 @@
|
|
|
taskList.comments ? taskList.comments : "无"
|
|
|
}}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
-
|
|
|
+
|
|
|
<el-form
|
|
|
ref="form"
|
|
|
:model="taskList"
|
|
@@ -58,7 +57,6 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
<el-form-item label="封面图" prop="picture" disabled>
|
|
|
<el-upload
|
|
|
action="#"
|
|
@@ -105,13 +103,18 @@
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="审批记录" name="审批记录">
|
|
|
<el-timeline>
|
|
|
-
|
|
|
- <el-timeline-item v-for="(item,index) in taskList.taskHisAction" :timestamp="item.createTime" placement="top" :key="index+'taskHisAction'">
|
|
|
+ <el-timeline-item
|
|
|
+ v-for="(item, index) in taskList.taskHisAction"
|
|
|
+ :timestamp="item.createTime"
|
|
|
+ placement="top"
|
|
|
+ :key="index + 'taskHisAction'"
|
|
|
+ >
|
|
|
<el-card>
|
|
|
- <p>{{item.execId}} {{item.acname}} 于 {{ item.createTime}}</p>
|
|
|
+ <p>
|
|
|
+ {{ item.execId }} {{ item.acname }} 于 {{ item.createTime }}
|
|
|
+ </p>
|
|
|
</el-card>
|
|
|
</el-timeline-item>
|
|
|
-
|
|
|
</el-timeline>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
@@ -129,16 +132,32 @@ export default {
|
|
|
{ label: "通知公告", value: "3" },
|
|
|
{ label: "政策解读", value: "4" },
|
|
|
],
|
|
|
- fileList: [],
|
|
|
+ fileList: [{ name: "", url: "" }],
|
|
|
BigImgVisible: false,
|
|
|
};
|
|
|
},
|
|
|
props: ["taskList"],
|
|
|
created() {
|
|
|
if (this.taskList.formobj.picture) {
|
|
|
- this.fileList.push({ name: "xxx", url: this.taskList.formobj.picture });
|
|
|
- }
|
|
|
+ this.fileList[0] = {
|
|
|
+ name: "xxx",
|
|
|
+ url: this.taskList.formobj.picture,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ taskList(curVal, oldVal) {
|
|
|
+ if (curVal) {
|
|
|
+ if (this.taskList.formobj.picture) {
|
|
|
+ this.fileList[0] = {
|
|
|
+ name: "xxx",
|
|
|
+ url: this.taskList.formobj.picture,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
},
|
|
|
+
|
|
|
methods: {
|
|
|
handlePictureCardPreview(file) {
|
|
|
this.taskList.formobj.picture = file.url;
|