uniapp中editor的使用

更新时间:2023-07-13 23:29:50 阅读: 评论:0

uniapp中editor的使⽤
有复⽤需求所以做成了组件
**
editor.vue
**
<template>
<view class="container">
<view class="page-body">
<view class='wrapper'>
<view class='toolbar' @tap="format">
<view :class="formats.bold ? 'ql-active' : ''"class="iconfont icon-zitijiacu" data-name="bold"></view>
<view :class="formats.italic ? 'ql-active' : ''"class="iconfont icon-zitixieti" data-name="italic"></view>
<view :class="formats.underline ? 'ql-active' : ''"class="iconfont icon-zitixiahuaxian" data-name="underline"></view>
<view :class="formats.strike ? 'ql-active' : ''"class="iconfont icon-zitishanchuxian" data-name="strike"></view>
<view :class="formats.align === 'left' ? 'ql-active' : ''"class="iconfont icon-zuoduiqi" data-name="align"
data-value="left"></view>
<view :class="formats.align === 'center' ? 'ql-active' : ''"class="iconfont icon-juzhongduiqi" data-name="align"
data-value="center"></view>
<view :class="formats.align === 'right' ? 'ql-active' : ''"class="iconfont icon-youduiqi" data-name="align"
data-value="right"></view>
<view :class="formats.align === 'justify' ? 'ql-active' : ''"class="iconfont icon-zuoyouduiqi" data-name="align"
data-value="justify"></view>
<view :class="formats.lineHeight ? 'ql-active' : ''"class="iconfont icon-line-height" data-name="lineHeight"
data-value="2"></view>
<view :class="formats.letterSpacing ? 'ql-active' : ''"class="iconfont icon-Character-Spacing" data-name="letterSpacing"
data-value="2em"></view>
<view :class="formats.marginTop ? 'ql-active' : ''"class="iconfont icon-722bianjiqi_duanqianju" data-name="marginTop"
data-value="20px"></view>
<view :class="formats.previewarginBottom ? 'ql-active' : ''"class="iconfont icon-723bianjiqi_duanhouju"
data-name="marginBottom" data-value="20px"></view>
<view class="iconfont icon-clearedformat" @tap="removeFormat"></view>
<view :class="formats.fontFamily ? 'ql-active' : ''"class="iconfont icon-font" data-name="fontFamily" data-value="Pacifico"></view> <view :class="formats.fontSize === '24px' ? 'ql-active' : ''"class="iconfont icon-fontsize" data-name="fontSize"
data-value="24px"></view>
<view :class="lor === '#0000ff' ? 'ql-active' : ''"class="iconfont icon-text_color" data-name="color"
data-value="#0000ff"></view>
<view :class="formats.backgroundColor === '#00ff00' ? 'ql-active' : ''"class="iconfont icon-fontbgcolor"
data-name="backgroundColor" data-value="#00ff00"></view>
<view class="iconfont icon-date" @tap="inrtDate"></view>
<view class="iconfont icon--checklist" data-name="list" data-value="check"></view>
<view :class="formats.list === 'ordered' ? 'ql-active' : ''"class="iconfont icon-youxupailie" data-name="list"
data-value="ordered"></view>
<view :class="formats.list === 'bullet' ? 'ql-active' : ''"class="iconfont icon-wuxupailie" data-name="list"
data-value="bullet"></view>
<view class="iconfont icon-undo" @tap="undo"></view>
<view class="iconfont icon-redo" @tap="redo"></view>
<view class="iconfont icon-outdent" data-name="indent" data-value="-1"></view>
<view class="iconfont icon-indent" data-name="indent" data-value="+1"></view>
<view class="iconfont icon-fengexian" @tap="inrtDivider"></view>
<view class="iconfont icon-charutupian" @tap="inrtImage"></view>
<view :class="formats.header === 1 ? 'ql-active' : ''"class="iconfont icon-format-header-1" data-name="header"      :data-value="1"></view>
<view :class="formats.script === 'sub' ? 'ql-active' : ''"class="iconfont icon-zitixiabiao" data-name="script"
data-value="sub"></view>
<view :class="formats.script === 'super' ? 'ql-active' : ''"class="iconfont icon-zitishangbiao" data-nam
圆子大骨汤的做法e="script"      data-value="super"></view>
<view class="iconfont icon-shanchu" @tap="clear"></view>
<view :class="formats.direction === 'rtl' ? 'ql-active' : ''"class="iconfont icon-direction-rtl" data-name="direction"      data-value="rtl"></view>
</view>
<editor id="editor"class="ql-container"placeholder="开始输⼊..." showImgSize showImgToolbar showImgResize      @statuschange="onStatusChange" :read-only="readOnly" @ready="onEditorReady" @blur="getContents">
</editor>
</view>
</view>
</view>
</template>
<script>
export default {
data(){
return{
readOnly: fal,
formats: {},
timer:null,
}
},
props:["editorDetail"],
mounted(){
// 将数据渲染到富⽂本内《画》
this.timer = tInterval(()=>{
if(this.editorDetail){
clearInterval(this.timer)
this.editorCtx.tContents({
html:this.editorDetail,
success(res){
}
})
}
},100)
},
methods: {
// 失去焦点时,获取富⽂本的内容
getContents(){
let _this = this
Contents({
success(res){
_this.$emit('getContents', res.html)
}
})
},
readOnlyChange(){
},
onEditorReady(){
this.editorCtx = t
}).exec()
// onEditorReady(){
//    ateSelectorQuery().lect('#editor').context((res)=>{
/
/    this.editorCtx = t
//      this.editorCtx.tContents({
//                html:t    //t为赋值内容。  //        })
//    }).exec()
// }
undo(){
this.editorCtx.undo()
},
redo(){
do()
},
format(e){
let{
name,
value
}= e.target.datat
if(!name)return
// console.log('format', name, value)
this.editorCtx.format(name, value)
},
onStatusChange(e){
const formats = e.detail
this.formats = formats
},
inrtDivider(){
this.editorCtx.inrtDivider({
success: function(){
console.log('inrt divider success')
工程进度管理
}
})
},
clear(){
this.editorCtx.clear({
success: function(res){
console.log("clear success")
}
})
},
removeFormat(){
veFormat()
},
inrtDate(){
const date= new Date()
const formatDate =`${FullYear()}/${Month() + 1}/${Date()}`
this.editorCtx.inrtText({
text: formatDate
})
},
inrtImage(){
uni.chooImage({
count: 1,
success: (res)=>{
this.editorCtx.inrtImage({
src: pFilePaths[0],
alt: '图像',
success: function(){
console.log('inrt image success')
}
})
}
})
},
onLoad(){
uni.loadFontFace({
family: 'Pacifico',
source: 'url("sungd.github.f")'
})
},
}
</script>
<style>
@import "./cs.css";
.wrapper {
padding: 5px;
}
.iconfont {
display: inline-block;
padding: 8px 8px;
width: 24px;
height: 24px;
cursor: pointer;
font-size: 20px;
}
.toolbar {
box-sizing: border-box;
border-bottom: 0;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-rif;
}
.
ql-container {
box-sizing: border-box;
padding: 12px 15px;
width: 100%;
min-height: 30vh;
height: auto;
background: #fff;
margin-top: 20px;
font-size: 16px;
line-height: 1.5;
}
.
倒排计划ql-active {
color: #06c;
}
</style>
**
使⽤
**
<editor1 :t  @getContents="getContents"class="bg"></editor1>
//引⼊
<script>
import editor1 from '@/components/editor/editor.vue' export default {
components: {
editor1
},
蕨根粉的做法data(){
return{
infos:{查理九世九尾灵猫
content:'', //绑定值
}
}
},
methods: {
getContents(html){
t = html
},
}
}
</script>
补充⽂件css
字体⽂件
cs.css⽂件
@font-face {
font-family: "iconfont";
src: url('./f') format('truetype');
}
.iconfont {赵云的故事
font-family: "iconfont"!important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiad;
-moz-osx-font-smoothing: grayscale;
}
.icon-redo:before {
content: "\e627";
}
.icon-undo:before {
content: "\e633";
}
.icon-indent:before {
content: "\eb28";
}
.icon-outdent:before {
content: "\e6e8";
}
.icon-fontsize:before {
content: "\e6fd";
}
.icon-format-header-1:before {

本文发布于:2023-07-13 23:29:50,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1095140.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:需求   获取   灵猫   渲染
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图