|
@@ -20,33 +20,36 @@
|
|
|
|
|
|
<el-form ref="form" :model="taskList" label-width="80px" style="margin-top: 20px">
|
|
|
<el-form-item label="标题" prop="title">{{ taskList.formobj.title }}</el-form-item>
|
|
|
- <el-form-item label="图片" prop="fileUrl" disabled>
|
|
|
- <el-upload
|
|
|
- action="#"
|
|
|
- list-type="picture-card"
|
|
|
- :limit="1"
|
|
|
- :auto-upload="false"
|
|
|
- :file-list="fileList"
|
|
|
- :disabled="true"
|
|
|
- >
|
|
|
- <i slot="default" class="el-icon-plus"></i>
|
|
|
- <div slot="file" slot-scope="{ file }">
|
|
|
- <img class="el-upload-list__item-thumbnail" :src="file.url" />
|
|
|
+<!-- <el-form-item label="图片" prop="fileUrl" disabled>-->
|
|
|
+<!-- <el-upload-->
|
|
|
+<!-- action="#"-->
|
|
|
+<!-- list-type="picture-card"-->
|
|
|
+<!-- :limit="1"-->
|
|
|
+<!-- :auto-upload="false"-->
|
|
|
+<!-- :file-list="fileList"-->
|
|
|
+<!-- :disabled="true"-->
|
|
|
+<!-- >-->
|
|
|
+<!-- <i slot="default" class="el-icon-plus"></i>-->
|
|
|
+<!-- <div slot="file" slot-scope="{ file }">-->
|
|
|
+<!-- <img class="el-upload-list__item-thumbnail" :src="file.url" />-->
|
|
|
|
|
|
- <!-- 放大预览 -->
|
|
|
- <span class="el-upload-list__item-actions">
|
|
|
- <span
|
|
|
- class="el-upload-list__item-preview"
|
|
|
- @click="handlePictureCardPreview(file)"
|
|
|
- >
|
|
|
- <i class="el-icon-zoom-in"></i>
|
|
|
- </span>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="新闻内容" prop="content">
|
|
|
- <editor v-model="taskList.formobj.content" :min-height="192" :readOnly="true" />
|
|
|
+<!-- <!– 放大预览 –>-->
|
|
|
+<!-- <span class="el-upload-list__item-actions">-->
|
|
|
+<!-- <span-->
|
|
|
+<!-- class="el-upload-list__item-preview"-->
|
|
|
+<!-- @click="handlePictureCardPreview(file)"-->
|
|
|
+<!-- >-->
|
|
|
+<!-- <i class="el-icon-zoom-in"></i>-->
|
|
|
+<!-- </span>-->
|
|
|
+<!-- </span>-->
|
|
|
+<!-- </div>-->
|
|
|
+<!-- </el-upload>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+<!-- <el-form-item label="新闻内容" prop="content">-->
|
|
|
+<!-- <editor v-model="taskList.formobj.content" :min-height="192" :readOnly="true" />-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+ <el-form-item label="内容" prop="content">
|
|
|
+ <editor v-model="taskList.formobj.content"/>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
@@ -85,14 +88,14 @@ export default {
|
|
|
name: "xxx",
|
|
|
});
|
|
|
}
|
|
|
- console.log('1231132',this.taskList.formobj);
|
|
|
},
|
|
|
watch: {
|
|
|
taskList(curVal, oldVal) {
|
|
|
if (curVal) {
|
|
|
+ curVal.formobj.content = curVal.formobj.content.replace(new RegExp('/profile/upload/', 'g'), this.baseUrl + '/profile/upload/');
|
|
|
this.fileList.pop();
|
|
|
this.fileList.push({
|
|
|
- url: this.baseURL + curVal.formobj.fileUrl,
|
|
|
+ url: this.baseUrl + curVal.formobj.fileUrl,
|
|
|
name: "xxx",
|
|
|
});
|
|
|
}
|