|
@@ -10,7 +10,7 @@
|
|
|
<script>
|
|
|
import E from "wangeditor";
|
|
|
import "../../common/aws-sdk-2.235.1.min";
|
|
|
-import { Loading } from 'element-ui';
|
|
|
+import { Loading } from "element-ui";
|
|
|
// import 'wangeditor/release/wangEditor.min.css'
|
|
|
export default {
|
|
|
name: "editoritem",
|
|
@@ -34,10 +34,10 @@ export default {
|
|
|
type: Boolean,
|
|
|
default: false,
|
|
|
},
|
|
|
- placeholder:{
|
|
|
- type:String,
|
|
|
- default:"请输入正文"
|
|
|
- }
|
|
|
+ placeholder: {
|
|
|
+ type: String,
|
|
|
+ default: "请输入正文",
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
isClear(val) {
|
|
@@ -63,6 +63,10 @@ export default {
|
|
|
this.editor = new E(this.$refs.toolbar, this.$refs.editor);
|
|
|
// 关闭菜单栏fixed
|
|
|
this.editor.config.menuFixed = false;
|
|
|
+ //修改图片
|
|
|
+ this.editor.config.uploadImgShowBase64 = true;
|
|
|
+ // 上传图片大小 5M
|
|
|
+ this.editor.config.uploadImgMaxSize = 10 * 1024 * 1024;
|
|
|
// 普通的自定义菜单
|
|
|
this.editor.config.menus = [
|
|
|
"head", //标题
|
|
@@ -100,7 +104,7 @@ export default {
|
|
|
this.editor.config.customUploadImg = function (files, insert) {
|
|
|
const loading = Loading.service({
|
|
|
lock: true,
|
|
|
- background: 'rgba(0, 0, 0, 0.7)'
|
|
|
+ background: "rgba(0, 0, 0, 0.7)",
|
|
|
});
|
|
|
// 图片自定义上传方法
|
|
|
for (var i = 0; i < files.length; i++) {
|
|
@@ -114,13 +118,18 @@ export default {
|
|
|
|
|
|
var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
|
|
|
|
|
|
+ if (file.size / 1024 / 1024 > 5) {
|
|
|
+ this.$message.error("添加的上传文件大于5M,请重新选择文件!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
if (file) {
|
|
|
var params = {
|
|
|
Key:
|
|
|
file.name.split(".")[0] +
|
|
|
new Date().getTime() +
|
|
|
"." +
|
|
|
- file.name.split(".")[file.name.split(".").length-1],
|
|
|
+ file.name.split(".")[file.name.split(".").length - 1],
|
|
|
ContentType: file.type,
|
|
|
Body: file,
|
|
|
"Access-Control-Allow-Credentials": "*",
|
|
@@ -138,7 +147,7 @@ export default {
|
|
|
// console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
|
|
|
})
|
|
|
.send(function (err, data) {
|
|
|
- loading.close();
|
|
|
+ loading.close();
|
|
|
if (err) {
|
|
|
that.$message.error("上传失败");
|
|
|
} else {
|
|
@@ -151,16 +160,16 @@ export default {
|
|
|
};
|
|
|
//配置 自定义处理粘贴的文本内容
|
|
|
this.editor.config.pasteTextHandle = function (content) {
|
|
|
- if (content == '' && !content) return ''
|
|
|
- var str = content
|
|
|
- str = str.replace(/<xml>[\s\S]*?<\/xml>/ig, '')
|
|
|
- str = str.replace(/<style>[\s\S]*?<\/style>/ig, '')
|
|
|
- str = str.replace(/<\/?[^>]*>/g, '')
|
|
|
- str = str.replace(/[ | ]*\n/g, '\n')
|
|
|
- str = str.replace(/ /ig, '')
|
|
|
+ if (content == "" && !content) return "";
|
|
|
+ var str = content;
|
|
|
+ str = str.replace(/<xml>[\s\S]*?<\/xml>/gi, "");
|
|
|
+ str = str.replace(/<style>[\s\S]*?<\/style>/gi, "");
|
|
|
+ str = str.replace(/<\/?[^>]*>/g, "");
|
|
|
+ str = str.replace(/[ | ]*\n/g, "\n");
|
|
|
+ str = str.replace(/ /gi, "");
|
|
|
// console.log('****', content)
|
|
|
// console.log('****', str)
|
|
|
- return str
|
|
|
+ return str;
|
|
|
};
|
|
|
this.editor.config.onchange = (html) => {
|
|
|
this.info_ = html; // 绑定当前逐渐地值
|
|
@@ -190,26 +199,26 @@ export default {
|
|
|
}
|
|
|
|
|
|
/* table 样式 */
|
|
|
-.editor>>>table {
|
|
|
+.editor >>> table {
|
|
|
border-top: 1px solid #ccc;
|
|
|
border-left: 1px solid #ccc;
|
|
|
}
|
|
|
|
|
|
-.editor>>>table td,
|
|
|
-.editor>>>table th {
|
|
|
+.editor >>> table td,
|
|
|
+.editor >>> table th {
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
border-right: 1px solid #ccc;
|
|
|
padding: 20px 5px;
|
|
|
max-width: 0px;
|
|
|
}
|
|
|
|
|
|
-.editor>>>table th {
|
|
|
+.editor >>> table th {
|
|
|
border-bottom: 2px solid #ccc;
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
/* blockquote 样式 */
|
|
|
-.editor>>>blockquote {
|
|
|
+.editor >>> blockquote {
|
|
|
display: block;
|
|
|
border-left: 8px solid #d0e5f2;
|
|
|
padding: 5px 10px;
|
|
@@ -220,7 +229,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
/* code 样式 */
|
|
|
-.editor>>>code {
|
|
|
+.editor >>> code {
|
|
|
display: inline-block;
|
|
|
*display: inline;
|
|
|
*zoom: 1;
|
|
@@ -230,28 +239,28 @@ export default {
|
|
|
margin: 0 3px;
|
|
|
}
|
|
|
|
|
|
-.editor>>>pre code {
|
|
|
+.editor >>> pre code {
|
|
|
display: block;
|
|
|
}
|
|
|
|
|
|
/* ul ol 样式 */
|
|
|
-.editor>>>ul,
|
|
|
+.editor >>> ul,
|
|
|
ol {
|
|
|
margin: 10px 0 10px 20px;
|
|
|
}
|
|
|
|
|
|
-.editor>>>.w-e-text p,
|
|
|
-.editor>>>.w-e-text h1,
|
|
|
-.editor>>>.w-e-text h2,
|
|
|
-.editor>>>.w-e-text h3,
|
|
|
-.editor>>>.w-e-text h4,
|
|
|
-.editor>>>.w-e-text h5,
|
|
|
-.editor>>>.w-e-text table,
|
|
|
-.editor>>>.w-e-text pre{
|
|
|
+.editor >>> .w-e-text p,
|
|
|
+.editor >>> .w-e-text h1,
|
|
|
+.editor >>> .w-e-text h2,
|
|
|
+.editor >>> .w-e-text h3,
|
|
|
+.editor >>> .w-e-text h4,
|
|
|
+.editor >>> .w-e-text h5,
|
|
|
+.editor >>> .w-e-text table,
|
|
|
+.editor >>> .w-e-text pre {
|
|
|
line-height: 1.15;
|
|
|
margin: 5px 0 !important;
|
|
|
}
|
|
|
-.editor >>> .w-e-text-container .placeholder{
|
|
|
+.editor >>> .w-e-text-container .placeholder {
|
|
|
font-size: 14px;
|
|
|
color: #757575;
|
|
|
}
|