报名工具小程序初始代码
This commit is contained in:
275
components/RichTextEditor/RichTextEditor.vue
Normal file
275
components/RichTextEditor/RichTextEditor.vue
Normal file
@@ -0,0 +1,275 @@
|
||||
<template>
|
||||
|
||||
<view class="page-body" :style="{height:'calc(100vh - '+removeHeight+')'}">
|
||||
|
||||
<view class='wrapper'>
|
||||
<view class="editor-wrapper">
|
||||
<editor id="editor" class="ql-container" :placeholder="placeholder" showImgSize showImgToolbar
|
||||
showImgResize @statuschange="onStatusChange" :read-only="readOnly" @ready="onEditorReady"
|
||||
@input="getEditorContent">
|
||||
</editor>
|
||||
</view>
|
||||
|
||||
<view class='toolbar' @tap="format" style="height: 120px;overflow-y: auto;">
|
||||
|
||||
<view class="iconfont icon-undo" @tap="undo"></view>
|
||||
<view class="iconfont icon-redo" @tap="redo"></view>
|
||||
|
||||
<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.color === '#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-charutupian" @tap="insertImage"></view>
|
||||
|
||||
<view class="iconfont icon-shanchu" @tap="clear"></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="formats.fontSize === '24px' ? 'ql-active' : ''" class="iconfont icon-fontsize"
|
||||
data-name="fontSize" data-value="24px"></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-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="insertDivider"></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-name="script" data-value="super"></view>
|
||||
<view :class="formats.direction === 'rtl' ? 'ql-active' : ''" class="iconfont icon-direction-rtl"
|
||||
data-name="direction" data-value="rtl"></view>
|
||||
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
html: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
placeholder: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
removeHeight: {
|
||||
type: String,
|
||||
default: '0px'
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
readOnly: false,
|
||||
formats: {},
|
||||
result: {
|
||||
html: "",
|
||||
text: "",
|
||||
delta: {}
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
readOnlyChange() {
|
||||
this.readOnly = !this.readOnly
|
||||
},
|
||||
onEditorReady() {
|
||||
|
||||
// #ifdef APP-PLUS
|
||||
uni.createSelectorQuery().select('#editor').context((res) => {
|
||||
this.editorCtx = res.context
|
||||
|
||||
let _this = this
|
||||
|
||||
let EContent = {
|
||||
html: this.html
|
||||
}
|
||||
//设置富文本编辑器的内容
|
||||
this.editorCtx.setContents(EContent);
|
||||
|
||||
this.editorCtx.getContents({
|
||||
complete: res => {
|
||||
_this.result = res
|
||||
}
|
||||
})
|
||||
}).exec()
|
||||
// #endif
|
||||
|
||||
// #ifdef H5 || MP-WEIXIN
|
||||
this.createSelectorQuery().select('#editor').context((res) => {
|
||||
this.editorCtx = res.context
|
||||
|
||||
let _this = this
|
||||
|
||||
let EContent = {
|
||||
html: this.html
|
||||
}
|
||||
//设置富文本编辑器的内容
|
||||
this.editorCtx.setContents(EContent);
|
||||
|
||||
this.editorCtx.getContents({
|
||||
complete: res => {
|
||||
_this.result = res
|
||||
}
|
||||
})
|
||||
}).exec()
|
||||
// #endif
|
||||
},
|
||||
undo() {
|
||||
this.editorCtx.undo()
|
||||
},
|
||||
redo() {
|
||||
this.editorCtx.redo()
|
||||
},
|
||||
format(e) {
|
||||
let {
|
||||
name,
|
||||
value
|
||||
} = e.target.dataset
|
||||
if (!name) return
|
||||
this.editorCtx.format(name, value)
|
||||
|
||||
},
|
||||
onStatusChange(e) {
|
||||
const formats = e.detail
|
||||
this.formats = formats
|
||||
},
|
||||
insertDivider() {
|
||||
this.editorCtx.insertDivider({
|
||||
success: function() {
|
||||
console.log('insert divider success')
|
||||
}
|
||||
})
|
||||
},
|
||||
clear() {
|
||||
this.editorCtx.clear({
|
||||
success: function(res) {
|
||||
console.log("clear success")
|
||||
}
|
||||
})
|
||||
},
|
||||
removeFormat() {
|
||||
this.editorCtx.removeFormat()
|
||||
},
|
||||
insertDate() {
|
||||
const date = new Date()
|
||||
const formatDate = `${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`
|
||||
this.editorCtx.insertText({
|
||||
text: formatDate
|
||||
})
|
||||
},
|
||||
insertImage() {
|
||||
let that = this
|
||||
console.log('00000>>')
|
||||
uni.chooseImage({
|
||||
count: 1,
|
||||
success: (res) => {
|
||||
console.log('1111>>'+res.tempFilePaths[0])
|
||||
that.$emit("insertPic", res.tempFilePaths[0])
|
||||
}
|
||||
})
|
||||
},
|
||||
insertUrlImage(imageUrl) {
|
||||
console.log('22222>>'+imageUrl)
|
||||
this.editorCtx.insertImage({
|
||||
src: imageUrl,
|
||||
alt: '图像',
|
||||
success: function() {
|
||||
console.log('insert image success')
|
||||
}
|
||||
})
|
||||
},
|
||||
getEditorContent(e) {
|
||||
this.result = e.detail;
|
||||
},
|
||||
getHtml() {
|
||||
return this.result.html
|
||||
},
|
||||
getText() {
|
||||
return this.result.text
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "./editor-icon.css";
|
||||
|
||||
.page-body {
|
||||
background-color: #4CD964;
|
||||
|
||||
.wrapper {
|
||||
height: 100%;
|
||||
|
||||
background-color: #FFFFFF;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.editor-wrapper {
|
||||
height: calc(100% - 120px);
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
box-sizing: border-box;
|
||||
border-bottom: 0;
|
||||
background-color: #F1F1F1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.iconfont {
|
||||
display: inline-block;
|
||||
padding: 8px 8px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
cursor: pointer;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.ql-container {
|
||||
box-sizing: border-box;
|
||||
padding: 12px 15px;
|
||||
width: 100%;
|
||||
min-height: 30vh;
|
||||
height: 100%;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.ql-active {
|
||||
color: #06c;
|
||||
}
|
||||
</style>
|
||||
239
components/RichTextEditor/editor-icon.css
Normal file
239
components/RichTextEditor/editor-icon.css
Normal file
File diff suppressed because one or more lines are too long
30
components/RichTextEditor/readme.md
Normal file
30
components/RichTextEditor/readme.md
Normal file
@@ -0,0 +1,30 @@
|
||||
## 参数
|
||||
| 参数 | 类型 | 解释 | 默认 | 必填 |
|
||||
| ------------ | ------------ | ------------ | ------------ | ------------ |
|
||||
| html | String | 默认html(模板内容) | "" | 否 |
|
||||
| placeholder | String | 提示信息 | "" | 否 |
|
||||
| removeHeight | String | 移除高度(默认占满屏幕高度) | "0px" | 否 |
|
||||
|
||||
## 方法
|
||||
|
||||
| 方法名 | 解释 | 参数 |
|
||||
| ------------ | ------------ | ------------ |
|
||||
| getHtml | 获取富文本html | 无 |
|
||||
| getText | 获取富文本text | 无 |
|
||||
| insertUrlImage | 插入网络图片 | 图片地址 |
|
||||
|
||||
## 事件
|
||||
|
||||
| 事件名 | 解释 | 参数 |
|
||||
| ------------ | ------------ | ------------ |
|
||||
| insertPic | 用户选取本地图片成功后回调 | 选择的本地图片地址 |
|
||||
|
||||
## 支持平台
|
||||
|
||||
| app | 微信小程序 |
|
||||
| ------------ | ------------ |
|
||||
| 未测试 | 支持 |
|
||||
|
||||
| h5-Safari | Android Browser | 微信浏览器(Android) |QQ浏览器(Android) |
|
||||
| ------------ | ------------ | ------------ | |
|
||||
| 未测试 | 支持 | 支持 | 支持 |
|
||||
Reference in New Issue
Block a user