<template> <el-row style="margin-top: 20px;"> <el-col style="margin-bottom: 1rem;"> <el-breadcrumb separator-class="el-icon-arrow-right"> <el-breadcrumb-item :to="{ path: '/admin' }">首页</el-breadcrumb-item> <el-breadcrumb-item :to="{ path: '/admin/topics' }">专题管理</el-breadcrumb-item> <el-breadcrumb-item v-if="topic.idTopic" :to="{ path: '/admin/topic/' + topic.topicUri }">{{ topic.topicTitle }} </el-breadcrumb-item> <el-breadcrumb-item v-if="topic.idTopic">编辑</el-breadcrumb-item> <el-breadcrumb-item v-else>创建</el-breadcrumb-item> </el-breadcrumb> </el-col> <el-col> <el-form :model="topic" :rules="rules" ref="topic" label-width="100px" class="demo-ruleForm"> <el-form-item label="主题名称" prop="topicTitle"> <el-input v-model="topic.topicTitle"></el-input> </el-form-item> <el-form-item label="URI" prop="topicUri"> <el-input v-model="topic.topicUri"></el-input> </el-form-item> <el-form-item label="图标"> <el-row> <el-col :span="24"> <vue-cropper ref="cropper" :aspect-ratio="1 / 1" :src="topicIconPath" :checkCrossOrigin="false" :checkOrientation="false" :imgStyle="{width: '480px', height: '480px'}" :autoCropArea="1" :autoCrop="autoCrop" preview=".preview" /> </el-col> <el-col :span="24" style="margin-top: 2rem;"> <el-col :span="8"> <el-card> <div class="card-body d-flex flex-column"> <el-col :span="4" style="text-align: right;"> <div v-if="topicIconPath" class="preview preview-large topic-brand-img"/> <el-image v-else class="topic-brand-img" /> </el-col> <el-col :span="20"> <el-col> <el-col> <el-link rel="nofollow" :underline="false"> <h4>{{ topic.topicTitle }}</h4> </el-link> </el-col> <el-col> <div class="text-muted article-summary-md">{{ topic.topicDescription }}</div> </el-col> </el-col> </el-col> </div> </el-card> </el-col> </el-col> <el-col :span="24" style="margin-top: 2rem;"> <el-upload class="avatar-uploader" action="" :multiple="true" :show-file-list="false" :on-success="handleAvatarSuccess" :before-upload="beforeAvatarUpload"> <div> <el-button type="primary" round plain>上传</el-button> </div> </el-upload> <el-button style="margin-top: 1rem;" type="primary" round plain @click.prevent="reset">重置</el-button> <el-button type="primary" round plain @click.prevent="cropImage">裁剪</el-button> <el-col> <span style="color: red;padding-right: 5px;">*</span> <span>上传图片调整至最佳效果后,请点击裁剪按钮截取</span> </el-col> </el-col> </el-row> </el-form-item> <el-form-item label="导航主题"> <el-switch v-model="topic.topicNva" active-text="启用" inactive-text="禁用" active-value="0" inactive-value="1"> </el-switch> </el-form-item> <el-form-item label="状态"> <el-switch v-model="topic.topicStatus" active-text="启用" inactive-text="禁用" active-value="0" inactive-value="1"> </el-switch> </el-form-item> <el-form-item label="排序"> <el-input-number v-model="topic.topicSort" :min="1"></el-input-number> </el-form-item> <el-form-item label="标签数"> <el-input v-model="topic.topicTagCount" :disabled="true"></el-input> </el-form-item> <el-form-item label="描述"> <div id="contentEditor"></div> </el-form-item> <el-form-item class="text-right"> <el-button @click="updateTopic" :loading="loading" plain>提交</el-button> </el-form-item> </el-form> </el-col> </el-row> </template> <script> import Vue from 'vue'; import {mapState} from 'vuex'; import VueCropper from 'vue-cropperjs'; import 'cropperjs/dist/cropper.css'; import apiConfig from '~/config/api.config'; export default { name: "adminTopicPost", components: { VueCropper }, computed: { ...mapState({ uploadHeaders: state => { return {'X-Upload-Token': state.uploadHeaders} } }) }, data() { return { topic: { topicTitle: '', topicIconPath: '', topicDescription: '', topicNva: '0', topicStatus: '0', topicTagCount: 0, topicSort: 10 }, rules: { topicTitle: [ {required: true, message: '请输入主题名称', trigger: 'blur'} ], topicUri: [ {required: true, message: '请输入主题uri', trigger: 'blur'} ] }, loading: false, tokenURL: { URL: '', linkToImageURL: '', token: '' }, topicIconPath: '', isEdit: false, autoCrop: true, notificationFlag: true } }, methods: { _initEditor(data) { let _ts = this; let toolbar = [ 'emoji', 'headings', 'bold', 'italic', 'strike', 'link', '|', 'list', 'ordered-list', 'check', 'outdent', 'indent', '|', 'quote', 'line', 'code', 'inline-code', 'insert-before', 'insert-after', '|', // 'upload', // 'record', 'table', '|', 'undo', 'redo', '|', 'edit-mode', { name: 'more', toolbar: [ 'fullscreen', 'both', 'preview', 'info' ], }] return new Vue.Vditor(data.id, { toolbar, mode: 'sv', tab: '\t', cdn: apiConfig.VDITOR, cache: { enable: this.$route.params.topic_id ? false : true, id: this.$route.params.topic_id ? this.$route.params.topic_id : '', }, after() { _ts.contentEditor.setValue(data.value ? data.value : ''); }, hint: { emoji: Vue.emoji }, preview: { hljs: { enable: true, lineNumber: true, style: 'github' }, markdown: { toc: true, }, math: { inlineDigit: true }, delay: 500, mode: data.mode, /*url: `${process.env.Server}/api/console/markdown`,*/ parse: (element) => { if (element.style.display === 'none') { return } // LazyLoadImage(); // Vue.Vditor.highlightRender({style: 'github'}, element, this.contentEditor); }, theme: { cdn: apiConfig.VDITOR_CSS } }, height: data.height, counter: 102400, resize: { enable: data.resize, }, lang: this.$store.state.locale, placeholder: data.placeholder, }) }, handleAvatarSuccess(res) { let _ts = this; if (res && res.data && res.data.url) { let topic = _ts.topic; topic.topicIconPath = res.data.url; _ts.$set(_ts, 'topic', topic); _ts.$set(_ts, 'topicIconPath', res.data.url); } else { _ts.$message.error('上传失败!'); } }, beforeAvatarUpload(file) { const isJPG = file.type === 'image/jpeg'; const isPNG = file.type === 'image/png'; const isLt2M = file.size / 1024 / 1024 < 2; if (!(isJPG || isPNG)) { this.$message.error('上传图标只能是 JPG 或者 PNG 格式!'); return false; } if (!isLt2M) { this.$message.error('上传图标大小不能超过 2MB!'); return false; } this.fileToBase64(file); return false; }, fileToBase64(file) { let _ts = this; let reader = new FileReader(); reader.readAsDataURL(file); reader.onload = function () { _ts.$set(_ts, 'topicIconPath', this.result); _ts.$refs.cropper.replace(this.result); } }, async updateTopic() { let _ts = this; _ts.$set(_ts, 'loading', true); let id = _ts.topic.idTopic; let topicDescription = _ts.contentEditor.getValue(); let topicDescriptionHtml = await _ts.contentEditor.getHTML(); let data = _ts.topic; data.topicDescription = topicDescription; data.topicDescriptionHtml = topicDescriptionHtml; let title = id ? '更新' : '添加'; _ts.$axios[id ? '$put' : '$post']('/api/admin/topic/post', data).then(function (res) { if (res && res.message) { _ts.$message.error(res.message); } else { _ts.$message({ type: 'success', message: title + '成功!' }); _ts.$set(_ts, 'loading', false); _ts.$set(_ts, 'notificationFlag', false); _ts.contentEditor.setValue(''); _ts.$router.push({ path: `/admin/topic/${data.topicUri}` }) } }) }, reset() { this.$refs.cropper.reset(); }, // get image data for post processing, e.g. upload or setting image src cropImage() { let _ts = this; try { _ts.cropImg = _ts.$refs.cropper.getCroppedCanvas().toDataURL(); let topic = _ts.topic; topic.topicIconPath = _ts.cropImg; _ts.$set(_ts, 'topic', topic); _ts.$set(_ts, 'topicIconPath', _ts.cropImg); _ts.$message.success('已裁剪 !'); } catch (e) { _ts.$message.error('图片获取失败 !'); return; } } }, beforeRouteLeave(to, from, next) { let _ts = this; if (_ts.notificationFlag) { _ts.$confirm('系统可能不会保存您所做的更改。', '离开此网站?', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { next(); }).catch(() => { _ts.$store.commit("setActiveMenu", "admin-topic-post"); return false }); } else { next(); } }, beforeDestroy() { window.onbeforeunload = null; }, async mounted() { window.addEventListener('beforeunload', e => { e = e || window.event; // 兼容IE8和Firefox 4之前的版本 if (e) { e.returnValue = '关闭提示'; } // Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+ return '关闭提示'; }); let _ts = this; _ts.$store.commit("setActiveMenu", "admin-topic-post"); _ts.$axios.$get('/api/upload/simple/token').then(function (res) { if (res) { _ts.$store.commit('setUploadHeaders', res.uploadToken); _ts.$set(_ts, 'tokenURL', { token: res.uploadToken || '', URL: res.uploadURL || '', }) } }); if (_ts.$route.params.topic_id) { _ts.$set(_ts, 'isEdit', true); const responseData = await _ts.$axios.$get('/api/admin/topic/detail/' + _ts.$route.params.topic_id); _ts.$set(_ts, 'topic', responseData); if (responseData.topicIconPath) { _ts.$set(_ts, 'topicIconPath', responseData.topicIconPath); } } else { _ts.$set(_ts, 'isEdit', false); } let articleContent = ''; if (_ts.topic.topicDescription) { articleContent = _ts.topic.topicDescription; } _ts.contentEditor = _ts._initEditor({ id: 'contentEditor', mode: 'both', height: 480, placeholder: '', //this.$t('inputContent', this.$store.state.locale) resize: false, value: articleContent }); } } </script> <style lang="less"> @import "~vditor/src/assets/less/index.less"; .preview-area { width: 16rem; } .preview-area p { font-size: 1.25rem; } .preview-area p:last-of-type { margin-top: 1rem; } .crop-placeholder { width: 36px; height: 36px; background: #ccc; } .cropped-image img { max-width: 100%; } .img-cropper { width: 480px; min-height: 480px; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC); } .preview-large { width: 100%; height: 144px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); background-color: #ffffff; overflow: hidden; } </style>