初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
.draggable-element .rich-text .preview-draggable{word-break: break-all;}
.rich-text{max-width:100%;}
.rich-text img{max-width:100%!important;}
.rich-text .preview-draggable{
word-wrap: break-word;
white-space: pre-wrap;
word-break: break-all;
/*overflow: hidden;*/
}

View File

@@ -0,0 +1,41 @@
<nc-component :data="data[index]" class="rich-text">
<!-- 预览 -->
<template slot="preview">
<div :style="{backgroundColor: nc.componentBgColor ,
borderTopLeftRadius: (nc.componentAngle == 'round' ? nc.topAroundRadius + 'px' : 0),
borderTopRightRadius: (nc.componentAngle == 'round' ? nc.topAroundRadius + 'px' : 0),
borderBottomLeftRadius: (nc.componentAngle == 'round' ? nc.bottomAroundRadius + 'px' : 0),
borderBottomRightRadius: (nc.componentAngle == 'round' ? nc.bottomAroundRadius + 'px' : 0)
}">
<div v-if="nc.html" v-html="nc.html"></div>
<template v-else>
<p>点此编辑『富文本』内容 ——&gt;</p>
<p>你可以对文字进行<strong>加粗</strong><em>斜体</em><span style="text-decoration: underline;">下划线</span><span style="text-decoration: line-through;">删除线</span>、文字<span style="color: rgb(0, 176, 240);">颜色</span><span style="background-color: rgb(255, 192, 0); color: rgb(255, 255, 255);">背景色</span>、以及字号<span style="font-size: 20px;"></span><span style="font-size: 14px;"></span>等简单排版操作。</p>
<p style="text-align: left;">
<span style="text-align: left;">也可在这里插入图片、并对图片加上超级链接,方便用户点击。</span>
</p>
</template>
</div>
</template>
<!-- 内容编辑 -->
<template slot="edit-content">
<template v-if="nc.lazyLoad">
<div class="template-edit-title">
<h3>内容设置</h3>
<rich-text></rich-text>
</div>
</template>
</template>
<!-- 样式编辑 -->
<template slot="edit-style"></template>
<!-- 资源 -->
<template slot="resource">
<css src="{$resource_path}/css/design.css"></css>
<js src="{$resource_path}/js/design.js"></js>
</template>
</nc-component>

View File

@@ -0,0 +1,53 @@
var richTextHtml = '<div class="rich-text-list" >';
richTextHtml += '<div :id="id" style="width:100%;height:450px;padding-left:10px;box-sizing:border-box;"></div>';
richTextHtml += '</div>';
Vue.component("rich-text", {
template: richTextHtml,
data: function () {
return {
data : this.$parent.data,
id: ns.gen_non_duplicate(10),
editor : null
}
},
created: function () {
if(!this.$parent.data.verify) this.$parent.data.verify = [];
this.$parent.data.verify.push(this.verify);//加载验证方法
this.$parent.data.ignore = ['elementBgColor','elementAngle','textColor'];//加载忽略内容 -- 其他设置中的属性设置
this.$parent.data.ignoreLoad = true; // 等待忽略数组赋值后加载
var self = this;
setTimeout(function () {
self.editor = UE.getEditor(self.id,{
toolbars: [[
'source', 'undo', 'redo',
'bold', 'italic', 'underline', '|', 'strikethrough', 'removeformat', 'forecolor', 'backcolor', 'selectall', 'cleardoc',
'fontsize',
'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify',
'horizontal'
]],
autoHeightEnabled: false,
theme:'gray',
});
self.editor.ready(function () {
if(self.$parent.data.html) self.editor.setContent(self.$parent.data.html);
});
self.editor.addListener("contentChange",function(){
self.$parent.data.html = self.editor.getContent();
});
}, 100);
},
methods:{
verify : function (index) {
var res = {code: true, message: ""};
if (vue.data[index].html === "") {
res.code = false;
res.message = "请输入富文本内容";
}
return res;
}
}
});