nebula/pages/admin/product/post/_product_id.vue

485 lines
14 KiB
Vue
Raw Normal View History

<template>
2024-03-18 15:45:01 +08:00
<el-row class="products">
<el-col style="margin-bottom: 1rem;">
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="{ path: '/admin/dashboard' }">首页</el-breadcrumb-item>
<el-breadcrumb-item :to="{ path: '/admin/products' }">产品管理</el-breadcrumb-item>
<el-breadcrumb-item v-if="product.idProduct">编辑</el-breadcrumb-item>
<el-breadcrumb-item v-else>创建</el-breadcrumb-item>
</el-breadcrumb>
</el-col>
2024-03-18 15:45:01 +08:00
<el-col>
<el-form ref='productInfo' :model='productInfo' :rules='rules' label-poionsit='right' label-width='110px'>
2024-03-18 15:45:01 +08:00
<div style="margin-bottom:20px">
<img :src="productInfo.productImgUrl" style="width: 120px;height: 120px;margin: 0 auto;display: block"
2024-03-18 15:45:01 +08:00
@click="cropperVisible=true">
</div>
<el-form-item label='产品名称' prop='productTitle'>
<el-input v-model='productInfo.productTitle' placeholder='请输入产品名称'/>
2024-03-18 15:45:01 +08:00
</el-form-item>
<el-form-item label='产品价格' prop='productPrice'>
<el-input v-model='productInfo.productPrice' placeholder='请输入产品价格'/>
2024-03-18 15:45:01 +08:00
</el-form-item>
<el-form-item label='产品描述' prop='type'>
<div id="contentEditor"></div>
</el-form-item>
<el-form-item label='标签' prop='tags'>
<el-select
style="width: 100%;"
v-model="productTags"
multiple
filterable
allow-create
default-first-option
remote
:remote-method="remoteMethod"
placeholder="请选择文章标签"
:loading="loading"
@change="setLocalstorage('tags', productTags)">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
2024-03-18 15:45:01 +08:00
</el-form-item>
</el-form>
<el-col style="margin-top: 1rem;">
</el-col>
<el-col v-if="!isEdit" style="margin-top: 1rem;padding-right:3rem;text-align: right;">
<el-button :loading="doLoading" plain type="primary" @click="postProduct">发布</el-button>
2024-03-18 15:45:01 +08:00
</el-col>
<el-col v-else style="margin-top: 1rem;padding-right:3rem;text-align: right;">
<el-button v-if="productInfo.status === 0" :loading="doLoading" plain type="danger" @click="updateStatus">下架</el-button>
<el-button v-else :loading="doLoading" plain type="danger" @click="updateStatus">上架</el-button>
<el-button v-if="productInfo.status === 0" :loading="doLoading" plain type="primary" @click="postProduct">更新
2024-03-18 15:45:01 +08:00
</el-button>
<el-button v-else :loading="doLoading" plain type="primary" @click="postProduct">发布</el-button>
2024-03-18 15:45:01 +08:00
</el-col>
</el-col>
<ImgCropper :avatarUrl="productInfo.productImgUrl||''" :visible.sync='cropperVisible'
@onSubmit="updateProductImgUrl"></ImgCropper>
2024-03-18 15:45:01 +08:00
</el-row>
</template>
2024-03-18 15:45:01 +08:00
<script>
import Vue from 'vue';
import {mapState} from 'vuex';
import apiConfig from '~/config/api.config';
import ImgCropper from "~/components/ImgCropper.vue";
import VueCropper from "vue-cropper";
const rules = {
productTitle: [
{required: true, message: '请输入公司名称', trigger: 'blur'},
{min: 1, max: 50, message: '长度在 1 到 50 个字符', trigger: 'blur'}
],
productDescription: [{required: true, message: '请输入产品描述', trigger: 'blur'}]
}
export default {
name: "PostProducts",
middleware: 'auth',
validate({params, store}) {
if (typeof params.product_id === 'undefined') {
return true;
}
return params.product_id && !isNaN(Number(params.product_id))
},
asyncData({store, params, error}) {
return Promise.all([
store.dispatch('product/fetchPostDetail', params)
.catch(err => error({statusCode: 404}))
])
},
components: {
VueCropper, ImgCropper
},
computed: {
...mapState({
product: state => state.product.detail.data
})
2024-03-18 15:45:01 +08:00
},
data() {
return {
contentEditor: null,
tokenURL: {
URL: '',
linkToImageURL: '',
token: ''
},
productInfo: {
idProduct: 0,
2024-03-18 15:45:01 +08:00
productTitle: '',
productContent: '',
productType: 0,
tags: '',
status: 0,
2024-03-18 15:45:01 +08:00
productPrice: 0,
productImgUrl: '',
2024-03-18 15:45:01 +08:00
productImgType: 0
},
productTags: [],
options: [],
list: [],
loading: false,
doLoading: false,
isEdit: false,
notificationFlag: true,
cropperVisible: false,
rules: rules,
}
},
methods: {
updateProductImgUrl(data) {
this.productInfo.productImgUrl = data
this.productInfo.productImgType = '1'
2024-03-18 15:45:01 +08:00
this.cropperVisible = false
},
_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.product_id,
id: this.$route.params.product_id ? this.$route.params.product_id : '',
},
after() {
_ts.contentEditor.setValue(data.value ? data.value : '');
},
hint: {
emoji: Vue.emoji
},
preview: {
hljs: {
enable: true,
lineNumber: true,
style: 'github'
},
markdown: {
toc: true,
autoSpace: true
},
math: {
inlineDigit: true
},
delay: 500,
mode: data.mode,
/*url: `${process.env.Server}/api/console/markdown`,*/
parse: (element) => {
if (element.style.display === 'none') {
}
// LazyLoadImage();
// Vue.Vditor.highlightRender({style: 'github'}, element, this.contentEditor);
},
theme: {
cdn: apiConfig.VDITOR_CSS
}
},
upload: {
max: 10 * 1024 * 1024,
url: this.tokenURL.URL,
linkToImgUrl: this.tokenURL.linkToImageURL,
token: this.tokenURL.token,
filename: name => name.replace(/[^(a-zA-Z0-9\u4e00-\u9fa5\.)]/g, '').replace(/[\?\\/:|<>\*\[\]\(\)\$%\{\}@~]/g, '').replace('/\\s/g', '')
},
height: data.height,
counter: 102400,
resize: {
enable: data.resize,
},
lang: this.$store.state.locale,
placeholder: data.placeholder,
})
},
setLocalstorage(type) {
if (typeof arguments[0] === 'object') {
localStorage.setItem('productTags', arguments[1]);
return
}
switch (type) {
case 'title': {
localStorage.setItem('product-title', arguments[1])
break;
}
case 'tags': {
localStorage.setItem('product-tags', arguments[1]);
break;
}
}
},
remoteMethod(query) {
if (query !== '') {
this.loading = true;
setTimeout(() => {
this.loading = false;
this.options = this.list.filter(item => {
return item.label.toLowerCase()
.indexOf(query.toLowerCase()) > -1;
});
}, 200);
} else {
this.options = [];
}
},
deleteProduct() {
2024-03-18 15:45:01 +08:00
let _ts = this;
_ts.doLoading = true;
this.$confirm('确定下架吗?', '提示', {
2024-03-18 15:45:01 +08:00
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let id = _ts.$route.params.product_id;
_ts.$axios.$delete('/api/product/delete/' + id).then(function (res) {
if (res && res.message) {
_ts.$message(res.message);
return false;
}
localStorage.removeItem('product-title');
localStorage.removeItem('product-tags');
_ts.contentEditor.setValue('');
_ts.$set(_ts, 'notificationFlag', false);
_ts.$router.push({
name: 'admin-products'
})
})
}).catch(() => {
_ts.doLoading = false;
});
},
async postProduct() {
2024-03-18 15:45:01 +08:00
let _ts = this;
_ts.doLoading = true;
let productContent = _ts.contentEditor.getValue();
let productContentHtml = await _ts.contentEditor.getHTML();
if (!(_ts.productInfo.productTitle && productContent)) {
2024-03-18 15:45:01 +08:00
_ts.$message("标题/正文不能为空!");
_ts.doLoading = false;
return false;
}
let product = {
idProduct: _ts.productInfo.idProduct,
productTitle: _ts.productInfo.productTitle,
productPrice: _ts.productInfo.productPrice,
productImgType: _ts.productInfo.productImgType || '0',
productImgUrl: _ts.productInfo.productImgUrl,
tags: _ts.productTags.join(','),
2024-03-18 15:45:01 +08:00
productContent: productContent,
productContentHtml: productContentHtml,
};
_ts.$axios[_ts.productInfo.idProduct ? '$put' : '$post']('/api/product/post', product).then(function (res) {
2024-03-18 15:45:01 +08:00
if (res) {
if (res.message) {
_ts.$message(res.message);
_ts.doLoading = false;
return false;
}
localStorage.removeItem('product-title');
localStorage.removeItem('product-tags');
_ts.contentEditor.setValue('');
_ts.$store.commit('product/clearDetailData')
_ts.$set(_ts, 'notificationFlag', false);
_ts.$router.push({
name: 'admin-products'
})
}
})
2024-03-18 15:45:01 +08:00
},
async saveProduct() {
2024-03-18 15:45:01 +08:00
let _ts = this;
_ts.doLoading = true;
let id = _ts.$route.params.product_id;
let productContent = _ts.contentEditor.getValue();
let productContentHtml = await _ts.contentEditor.getHTML();
if (!(_ts.productInfo.productTitle && productContent)) {
2024-03-18 15:45:01 +08:00
_ts.$message("标题/正文不能为空!");
_ts.doLoading = false;
return false;
}
2024-03-18 15:45:01 +08:00
let product = {
productContent: productContent,
productContentHtml: productContentHtml,
productStatus: 1,
..._ts.productInfo
2024-03-18 15:45:01 +08:00
};
_ts.$axios[_ts.productInfo.idProduct ? '$put' : '$post']('/api/product/post', product).then(function (res) {
2024-03-18 15:45:01 +08:00
if (res) {
if (res.message) {
_ts.$message(res.message);
_ts.doLoading = false;
return false;
}
localStorage.removeItem('product-title');
localStorage.removeItem('product-tags');
_ts.contentEditor.setValue('');
_ts.$set(_ts, 'notificationFlag', false);
_ts.$router.push({
name: 'admin-products'
})
}
})
},
getTags() {
let _ts = this;
_ts.$axios.$get('/api/tag/tags').then(function (res) {
if (res) {
_ts.$set(_ts, 'list', res);
}
})
},
updateStatus() {
let _ts = this;
let product = _ts.productInfo
let title, status;
if (product.status === 0) {
title = '下架';
status = 1;
} else {
title = '上架';
status = 0;
}
_ts.$confirm('确定' + title + '产品 ' + product.productTitle + '?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
_ts.$axios.$patch('/api/admin/product/update-status', {
idProduct: product.idProduct,
status: status
}).then(function (res) {
if (res && res.message) {
_ts.$message.error(res.message);
} else {
_ts.$message({
type: 'success',
message: title + '成功!'
});
}
});
}).catch(() => {
_ts.$message({
type: 'info',
message: '已取消'
});
});
2024-03-18 15:45:01 +08:00
}
},
beforeRouteLeave(to, from, next) {
let _ts = this;
if (_ts.notificationFlag) {
_ts.$confirm('系统可能不会保存您所做的更改。', '离开此网站?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
next();
}).catch(() => {
return false
});
_ts.$store.commit("setActiveMenu", "admin-product-post-product_id");
2024-03-18 15:45:01 +08:00
} else {
next();
}
},
beforeDestroy() {
window.onbeforeunload = null;
},
async mounted() {
window.addEventListener('beforeunload', e => {
e = e || window.event;
if (e) {
e.returnValue = '关闭提示';
}
return '关闭提示';
});
let _ts = this;
_ts.$store.commit('setActiveMenu', 'admin-product-post-product_id');
2024-03-18 15:45:01 +08:00
const responseData = await _ts.$axios.$get('/api/upload/token');
if (responseData) {
_ts.$set(_ts, 'tokenURL', {
token: responseData.uploadToken || '',
URL: responseData.uploadURL || '',
linkToImageURL: responseData.linkToImageURL || ''
})
}
2024-03-18 15:45:01 +08:00
_ts.getTags();
Vue.nextTick(() => {
let productContent = '';
if (_ts.$route.params.product_id) {
_ts.$set(_ts, 'isEdit', true);
let product = _ts.product;
_ts.productInfo = JSON.parse(JSON.stringify(product))
2024-03-18 15:45:01 +08:00
productContent = product.productContent
let productTags = product.tags?.split(',');
_ts.$set(_ts, 'productTags', productTags || []);
2024-03-18 15:45:01 +08:00
} else {
_ts.$set(_ts, 'isEdit', false);
}
_ts.contentEditor = _ts._initEditor({
id: 'contentEditor',
mode: 'both',
height: 480,
placeholder: '', //_ts.$t('inputContent', _ts.$store.state.locale)
resize: false,
value: productContent
});
})
}
}
</script>
2024-03-18 15:45:01 +08:00
<style lang="less">
@import "~vditor/src/assets/less/index.less";
</style>