123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- <template>
- <view class="container">
- <view class="page-body">
- <form @submit="formSubmit" @reset="formReset">
- <view class="select-input">
- <input class="input" style="display:none;" />
- <text>标题:</text><input class="input" name="title" v-model="title" placeholder="请输入标题" />
- </view>
- <view class="head-wrapper">
- <view class='wrapper'>
- <view class='toolbar' @tap="format" style="height: 120px;overflow-y: auto;">
- <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="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-date" @tap="insertDate"></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="insertDivider"></view>
- <view class="iconfont icon-charutupian" @tap="insertImage"></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-name="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>
- <view class="editor-wrapper">
- <editor id="editor" class="ql-container" placeholder="开始输入..." showImgSize
- showImgToolbar showImgResize @statuschange="onStatusChange" :read-only="readOnly"
- @ready="onEditorReady">
- </editor>
- </view>
- </view>
- </view>
- <!-- <button>提交</button> -->
- <view class="btn-area">
- <button type="primary" formType="submit">确认</button>
- </view>
- </form>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- readOnly: false,
- title:'',
- formats: {}
- }
- },
- methods: {
- formSubmit: function(e) {
- console.log('form发生了submit事件,携带数据为:' + JSON.stringify(e.detail.value.title))
- var title = this.title;
- this.editorCtx.getContents({
- success: (res) => {
- console.log(res.html)
- var note = res.html;
- var that = this;
- // var id = uni.getStorageSync("globalUser").id;
- var token = uni.getStorageSync("token");
- if(note == "<p><br></p>") {
- uni.showToast({
- title: '公告内容不为空',
- duration: 3000,
- icon: 'error'
- });
- return;
- } else {
- uni.request({
- url: this.serverurl + '/TNotice/addNotice',
- data: {
- "title": title,
- "note":note
- },
- header: {
- 'token': token
- },
- method: "POST",
- success: (res) => {
- uni.showModal({
- title: "提示",
- content: res.data.message,
- success: (res) => {
-
- }
- })
- },
- });
- }
- },
- fail: function(error) {
- console.log(error)
- }
- })
- },
- readOnlyChange() {
- this.readOnly = !this.readOnly
- },
- onEditorReady() {
- uni.createSelectorQuery().select('#editor').context((res) => {
- this.editorCtx = res.context
- }).exec()
- },
- undo() {
- this.editorCtx.undo()
- },
- redo() {
- this.editorCtx.redo()
- },
- format(e) {
- let {
- name,
- value
- } = e.target.dataset
- if (!name) return
- console.log('format', name, value)
- 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() {
- uni.chooseImage({
- count: 1,
- success: (res) => {
- this.editorCtx.insertImage({
- src: res.tempFilePaths[0],
- alt: '图像',
- success: function() {
- console.log('insert image success')
- }
- })
- }
- })
- }
- },
- }
- </script>
- <style lang="scss">
- @import "./editor-icon.css";
- .page-body {
- height: calc(100vh - var(--window-top) - var(--status-bar-height));
- }
- .head-wrapper {
- border-style: solid;
- border-width: 2px;
- margin: 10px;
- }
- .wrapper {
- height: 100%;
- }
- .editor-wrapper {
- height: calc(100vh - var(--window-top) - var(--status-bar-height) - 50px - 240px);
- background: #fff;
- }
- .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-serif;
- }
- .ql-container {
- box-sizing: border-box;
- padding: 12px 15px;
- width: 100%;
- min-height: 30vh;
- height: 100%;
- margin-top: 20px;
- font-size: 16px;
- line-height: 1.5;
- }
- .ql-active {
- color: #06c;
- }
- .btn-area {
- padding: 50upx;
- padding-top: 20upx;
- padding-bottom: 0upx;
- button {
- background-color: #007AFF;
- }
- }
- .select-input {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- font-size: 16px;
- margin: 30upx 0 50upx 30upx;
- input {
- padding-left: 20upx;
- // padding-top: 10upx;
- background-color: #FFFFFF;
- width: 500upx;
- height: 50upx;
- box-shadow: 0upx 0upx 20upx #D3D3D3;
- border-radius: 5upx;
- }
- }
- </style>
|