refactor(projects): 重构创建/修改作品集

This commit is contained in:
祝梦园 2023-01-05 17:16:49 +08:00
parent cb55e86891
commit 272eadbaed
3 changed files with 45 additions and 42 deletions

View File

@ -3,7 +3,7 @@ import {NODE_ENV} from '../environment'
const apisMap = { const apisMap = {
development: { development: {
FE: 'http://localhost:3000', FE: 'http://localhost:3000',
BASE: 'http://localhost:8099/forest', BASE: 'https://test.rymcu.com',
CDN: '', CDN: '',
PROXY: '/proxy', PROXY: '/proxy',
SOCKET: 'http://localhost:3000/ws', SOCKET: 'http://localhost:3000/ws',

View File

@ -114,7 +114,7 @@ export default {
proxy: [ //proxy配置 proxy: [ //proxy配置
['/api', { ['/api', {
target: apiConfig.BASE, //api请求路径 target: apiConfig.BASE, //api请求路径
pathRewrite: {'^/api': isDevMode ? '/api/v1' : '/api'} //重定向请求路径防止路由、api路径的冲突 pathRewrite: {'^/api': isDevMode ? '/api' : '/api'} //重定向请求路径防止路由、api路径的冲突
}], }],
['/ws', { ['/ws', {
target: apiConfig.BASE //api请求路径 target: apiConfig.BASE //api请求路径

View File

@ -9,15 +9,15 @@
</el-breadcrumb> </el-breadcrumb>
</div> </div>
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12"> <el-col :span="12" :offset="3">
<el-card> <el-card>
<h1>创建作品集</h1> <h1>创建作品集</h1>
<p>作品集需要有明确的写作方向如果您在某个领域有深度的研究欢迎创建自己的作品集分享自己的观点</p> <p>作品集需要有明确的写作方向如果您在某个领域有深度的研究欢迎创建自己的作品集分享自己的观点</p>
<el-form :model="portfolio" :rules="rules" label-width="100px" ref="topic"> <el-form :model="portfolio" label-width="100px" ref="topic">
<el-form-item label="作品集名称" prop="portfolioTitle"> <el-form-item label="作品集名称">
<el-input v-model="portfolio.portfolioTitle"></el-input> <el-input v-model="portfolio.portfolioTitle"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="作品集介绍" prop="portfolioDescription"> <el-form-item label="作品集介绍">
<div id="contentEditor"></div> <div id="contentEditor"></div>
</el-form-item> </el-form-item>
<el-form-item class="text-right"> <el-form-item class="text-right">
@ -27,10 +27,8 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
</el-card> </el-card>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-card> <el-card>
<vue-cropper <vue-cropper
:aspect-ratio="1" :aspect-ratio="1"
@ -48,31 +46,27 @@
<div class="preview preview-large"/> <div class="preview preview-large"/>
<h4 class="article-header-md">{{ portfolio.portfolioTitle }}</h4> <h4 class="article-header-md">{{ portfolio.portfolioTitle }}</h4>
<span> <div class="portfolioDescription">
{{ portfolio.portfolioDescription }} {{ portfolio.portfolioDescription }}
</span> </div>
<el-upload <el-upload
:before-upload="beforeAvatarUpload" :before-upload="beforeAvatarUpload"
:http-request="requestUpload"
:multiple="true" :multiple="true"
:show-file-list="false" :show-file-list="false"
action="" action=""
class="avatar-uploader"> class="avatar-uploader">
<div> <div>
<el-button plain round type="primary">上传</el-button> <el-button plain round type="primary">上传</el-button>
<el-button @click.prevent="reset" plain round style="margin-top: 1rem;" type="primary">重置
</el-button>
<el-button @click.prevent="cropImage" plain round type="primary">裁剪</el-button>
</div> </div>
</el-upload> </el-upload>
<el-button @click.prevent="reset" plain round style="margin-top: 1rem;" type="primary">重置
</el-button>
<el-button @click.prevent="cropImage" plain round type="primary">裁剪</el-button>
<p style="color: red;padding-right: 5px;">* <p style="color: red;padding-right: 5px;">*
<span style="color: black">上传图片调整至最佳效果后,请点击裁剪按钮截取</span> <span style="color: black">上传图片调整至最佳效果后,请点击裁剪按钮截取</span>
</p> </p>
</el-card> </el-card>
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
@ -143,14 +137,14 @@ export default {
idPortfolio: 0, idPortfolio: 0,
portfolioDescription: '' portfolioDescription: ''
}, },
rules: { // rules: {
portfolioTitle: [ // portfolioTitle: [
{required: true, message: '请输入作品集名称', trigger: 'blur'} // {required: true, message: '', trigger: 'blur'}
], // ],
portfolioDescription: [ // portfolioDescription: [
{required: true, message: '请输入作品集介绍', trigger: 'blur'} // {required: true, message: '', trigger: 'blur'}
] // ]
}, // },
loading: false, loading: false,
tokenURL: { tokenURL: {
URL: '', URL: '',
@ -162,16 +156,13 @@ export default {
isEdit: false, isEdit: false,
autoCrop: true, autoCrop: true,
notificationFlag: true notificationFlag: true
, contentHtml: {}
} }
}, },
methods: { methods: {
//
requestUpload(e) {
console.log('e', e)
},
_initEditor(data) { _initEditor(data) {
//
let _ts = this; let _ts = this;
let toolbar = [ let toolbar = [
'emoji', 'emoji',
'headings', 'headings',
@ -221,7 +212,12 @@ export default {
}, },
after() { after() {
_ts.contentEditor.setValue(data.value ? data.value : ''); _ts.contentEditor.setValue(data.value ? data.value : '');
}, },
input: (val) => {
this.portfolio.portfolioDescription = val
},
typewriterMode: true,
hint: { hint: {
emoji: Vue.emoji emoji: Vue.emoji
}, },
@ -237,7 +233,7 @@ export default {
/*url: `${process.env.Server}/api/console/markdown`,*/ /*url: `${process.env.Server}/api/console/markdown`,*/
parse: (element) => { parse: (element) => {
if (element.style.display === 'none') { if (element.style.display === 'none') {
return return false
} }
// LazyLoadImage(); // LazyLoadImage();
// Vue.Vditor.highlightRender({style: 'github'}, element, this.contentEditor); // Vue.Vditor.highlightRender({style: 'github'}, element, this.contentEditor);
@ -252,7 +248,7 @@ export default {
enable: data.resize, enable: data.resize,
}, },
lang: this.$store.state.locale, lang: this.$store.state.locale,
placeholder: data.placeholder, // placeholder: data.placeholder,
}) })
}, },
// handleAvatarSuccess(res) { // handleAvatarSuccess(res) {
@ -285,7 +281,6 @@ export default {
// this.$set(_ts, 'headImgUrl', res.data.url); // this.$set(_ts, 'headImgUrl', res.data.url);
}, },
fileToBase64(file) { fileToBase64(file) {
console.log('我执行了?')
let _ts = this; let _ts = this;
let reader = new FileReader(); let reader = new FileReader();
reader.readAsDataURL(file); reader.readAsDataURL(file);
@ -316,8 +311,6 @@ export default {
this.$message.error('请输入必填信息'); this.$message.error('请输入必填信息');
return false return false
} }
let title = id ? '更新' : '添加'; let title = id ? '更新' : '添加';
_ts.$axios[id ? '$put' : '$post']('/api/portfolio/post', data).then(function (res) { _ts.$axios[id ? '$put' : '$post']('/api/portfolio/post', data).then(function (res) {
if (res && res.message) { if (res && res.message) {
@ -429,15 +422,19 @@ export default {
} }
}); });
this.portfolioContent = ''; let portfolioContent = '';
if (_ts.idPortfolio) { if (_ts.idPortfolio) {
_ts.$set(_ts, 'isEdit', true); this.isEdit = true
// _ts.$set(_ts, 'isEdit', true);
_ts.$set(_ts, 'portfolio', JSON.parse(JSON.stringify(_ts.portfolioDetail))); _ts.$set(_ts, 'portfolio', JSON.parse(JSON.stringify(_ts.portfolioDetail)));
_ts.$set(_ts, 'headImgUrl', _ts.portfolioDetail.headImgUrl); _ts.$set(_ts, 'headImgUrl', _ts.portfolioDetail.headImgUrl);
_ts.$refs.cropper.replace(_ts.portfolioDetail.headImgUrl); if (!this.isEdit) {
portfolioContent = _ts.portfolioDetail.portfolioDescription; _ts.$refs?.cropper.replace(_ts.portfolioDetail.headImgUrl);
portfolioContent = _ts.portfolioDetail.portfolioDescription;
}
} else { } else {
_ts.$set(_ts, 'isEdit', false); this.isEdit = false
} }
this.contentEditor = this._initEditor({ this.contentEditor = this._initEditor({
@ -446,7 +443,7 @@ export default {
height: 480, height: 480,
placeholder: '', //this.$t('inputContent', this.$store.state.locale) placeholder: '', //this.$t('inputContent', this.$store.state.locale)
resize: false, resize: false,
value: this.portfolioContent value: this.portfolio.portfolioDescription
}); });
} }
} }
@ -495,4 +492,10 @@ export default {
background-color: #ffffff; background-color: #ffffff;
overflow: hidden; overflow: hidden;
} }
.portfolioDescription {
min-height: 50px;
font-size: 12px;
color: #909399;
}
</style> </style>