dev_review
yujialong 1 year ago
parent 1b9a21d642
commit 8082bc6975
  1. 4
      src/components/quill/index.vue
  2. 45
      src/views/parnerOperation/learnMg.vue
  3. 4
      src/views/parnerOperation/schemeSet.vue
  4. 109
      src/views/shop/addProduct/index.vue

@ -1,6 +1,7 @@
<template> <template>
<div> <div>
<el-radio-group class="type-radio" <el-radio-group v-if="!readonly"
class="type-radio"
v-model="type" v-model="type"
@change="typeChange"> @change="typeChange">
<el-radio :label="0">富文本</el-radio> <el-radio :label="0">富文本</el-radio>
@ -28,6 +29,7 @@
v-show="type" v-show="type"
ref="md" ref="md"
:ishljs="true" :ishljs="true"
:subfield="false"
@change="mdChange" @change="mdChange"
@imgAdd="imgAdd" /> @imgAdd="imgAdd" />
</div> </div>

@ -424,6 +424,8 @@ export default {
}, },
// //
addClass () { addClass () {
this.classifications.find(e => e.edit) ?
Util.errorMsg('请先保存分类!') :
this.classifications.push({ this.classifications.push({
edit: true, edit: true,
id: '', id: '',
@ -432,6 +434,8 @@ export default {
}, },
// //
editClass (row) { editClass (row) {
this.classifications.find(e => e.edit) ?
Util.errorMsg('请先保存分类!') :
this.$set(row, 'edit', 1) this.$set(row, 'edit', 1)
}, },
// //
@ -496,6 +500,8 @@ export default {
}, },
// //
addLabel () { addLabel () {
this.labels.find(e => e.edit) ?
Util.errorMsg('请先保存主题!') :
this.labels.push({ this.labels.push({
edit: true, edit: true,
id: '', id: '',
@ -504,6 +510,8 @@ export default {
}, },
// //
editLabel (row) { editLabel (row) {
this.labels.find(e => e.edit) ?
Util.errorMsg('请先保存主题!') :
this.$set(row, 'edit', 1) this.$set(row, 'edit', 1)
}, },
// //
@ -576,43 +584,6 @@ export default {
formData.append('file', data, this.file.name) formData.append('file', data, this.file.name)
this.imgUpload(formData) this.imgUpload(formData)
}, },
//
compress (img) {
const canvas = document.createElement('canvas')
const ctx = canvas.getContext('2d')
// let initSize = img.src.length;
const width = img.width
const height = img.height
canvas.width = width
canvas.height = height
//
ctx.fillStyle = '#fff'
ctx.fillRect(0, 0, canvas.width, canvas.height)
ctx.drawImage(img, 0, 0, width, height)
//
const ndata = canvas.toDataURL('image/jpeg', 0.8)
return ndata
},
// base64bolb
dataURItoBlob (base64Data) {
let byteString
if (base64Data.split(',')[0].indexOf('base64') >= 0) {
byteString = atob(base64Data.split(',')[1])
} else {
byteString = unescape(base64Data.split(',')[1])
}
const mimeString = base64Data
.split(',')[0]
.split(':')[1]
.split(';')[0]
const ia = new Uint8Array(byteString.length)
for (let i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i)
}
return new Blob([ia], {
type: mimeString
})
},
// //
imgUpload (formData) { imgUpload (formData) {
this.isUpload = true this.isUpload = true

@ -404,6 +404,8 @@ export default {
}, },
// //
addClass () { addClass () {
this.classifications.find(e => e.edit) ?
Util.errorMsg('请先保存分类!') :
this.classifications.push({ this.classifications.push({
edit: true, edit: true,
id: '', id: '',
@ -412,6 +414,8 @@ export default {
}, },
// //
editClass (row) { editClass (row) {
this.classifications.find(e => e.edit) ?
Util.errorMsg('请先保存分类!') :
this.$set(row, 'edit', 1) this.$set(row, 'edit', 1)
}, },
// //

@ -243,8 +243,9 @@
<el-upload class="avatar-uploader" <el-upload class="avatar-uploader"
accept=".jpg,.png,.jpeg" accept=".jpg,.png,.jpeg"
:before-remove="beforeCoverRemove" :before-remove="beforeCoverRemove"
:on-success="uploadSuccess" :on-change="file => changeFile(file, 1)"
:limit="1" :limit="1"
:auto-upload="false"
:action="api.fileupload" :action="api.fileupload"
:headers="headers" :headers="headers"
name="file"> name="file">
@ -268,7 +269,8 @@
prop="miniProgramPictureAddress"> prop="miniProgramPictureAddress">
<el-upload accept=".jpg,.png,.jpeg" <el-upload accept=".jpg,.png,.jpeg"
:before-upload="beforeUpload" :before-upload="beforeUpload"
:on-success="uploadSuccessInterface" :on-change="file => changeFile(file, 2)"
:auto-upload="false"
:action="api.fileupload" :action="api.fileupload"
:headers="headers" :headers="headers"
:show-file-list="false" :show-file-list="false"
@ -298,7 +300,8 @@
<el-upload class="avatar-uploader" <el-upload class="avatar-uploader"
accept=".jpg,.png,.jpeg" accept=".jpg,.png,.jpeg"
:on-remove="handleMiniRemove" :on-remove="handleMiniRemove"
:on-success="uploadSuccessMini" :on-change="file => changeFile(file, 3)"
:auto-upload="false"
:limit="1" :limit="1"
:action="api.fileupload" :action="api.fileupload"
:headers="headers" :headers="headers"
@ -714,6 +717,22 @@
@click="submitProduct">确定</el-button> @click="submitProduct">确定</el-button>
</span> </span>
</el-dialog> </el-dialog>
<!-- 剪裁组件弹窗 -->
<el-dialog title="图片裁剪"
append-to-body
:visible.sync="cropperModel"
width="1100px"
:close-on-click-modal="false">
<Cropper ref="cropper"
:img-file.sync="file"
:is-upload="isUpload"
:fixed="true"
:fixedNumber.sync="fixedNumber"
:autoCropWidth="autoCropWidth"
:autoCropHeight="autoCropHeight"
@upload="customUpload" />
</el-dialog>
</div> </div>
</template> </template>
@ -723,6 +742,8 @@ import Setting from "@/setting";
import quill from "@/components/quill"; import quill from "@/components/quill";
import Editor from '@tinymce/tinymce-vue' import Editor from '@tinymce/tinymce-vue'
import editorConfig from '@/utils/editor' import editorConfig from '@/utils/editor'
import Cropper from '@/components/img-upload/Cropper'
import Axios from 'axios'
export default { export default {
data () { data () {
return { return {
@ -832,7 +853,15 @@ export default {
updateTime: 0, updateTime: 0,
nameRepeat: false, nameRepeat: false,
appletList: [], appletList: [],
isPython: false isPython: false,
cropperModel: false,
isUpload: false,
fixedNumber: [1.74, 1],
autoCropWidth: 484,
autoCropHeight: 278,
file: {}, //
picType: 1
}; };
}, },
watch: { watch: {
@ -879,7 +908,8 @@ export default {
}, 1000) }, 1000)
}, },
components: { components: {
Editor Editor,
Cropper
}, },
methods: { methods: {
getData () { getData () {
@ -1033,11 +1063,11 @@ export default {
form.mallPrices.find(e => e.settlementPriceType && e.area === 0).settlementPrice = data.settlementPrice form.mallPrices.find(e => e.settlementPriceType && e.area === 0).settlementPrice = data.settlementPrice
this.getProfessionalClassData(form.mallDisciplines[0]) this.getProfessionalClassData(form.mallDisciplines[0])
this.getProfessionalData(form.mallDisciplines[0]) this.getProfessionalData(form.mallDisciplines[0])
mall.courseHours = data.expectedCourse if (data.expectedCourse) mall.courseHours = data.expectedCourse
mall.coverDrawing = data.coverUrl if (data.coverUrl) mall.coverDrawing = data.coverUrl
mall.appletIcon = data.miniProgramPictureAddress if (data.miniProgramPictureAddress) mall.appletIcon = data.miniProgramPictureAddress
mall.productIntroduction = data.briefIntroduction if (data.briefIntroduction) mall.productIntroduction = data.briefIntroduction
mall.marketUnitPrice = data.marketPrice if (data.marketPrice) mall.marketUnitPrice = data.marketPrice
// python // python
const systemIds = data.systemIds.split(',') const systemIds = data.systemIds.split(',')
this.isPython = systemIds.filter(e => e != 12 && e != 13).length this.isPython = systemIds.filter(e => e != 12 && e != 13).length
@ -1395,6 +1425,64 @@ export default {
uploadSuccess (res) { uploadSuccess (res) {
this.form.mall.coverDrawing = res.data.filesResult.fileUrl this.form.mall.coverDrawing = res.data.filesResult.fileUrl
}, },
//
customUpload (data) {
const formData = new FormData()
formData.append('file', data, this.file.name)
this.imgUpload(formData)
},
//
imgUpload (formData) {
this.isUpload = true
Axios({
method: 'post',
url: this.api.fileUploadNakadai,
data: formData,
headers: {
'Content-Type': 'multipart/form-data',
...this.headers
},
}).then(({ data }) => {
const url = data.filesResult.fileUrl
if (this.picType == 2) {
this.form.mall.interfaceDiagrams.push(url)
} else {
this.form.mall[this.picType == 1 ? 'coverDrawing' : 'appletIcon'] = url
}
}).catch(res => { })
this.$refs.cropper.isDisabled = false
this.isUpload = false
this.cropperModel = false
},
//
changeFile (file, type) {
this.picType = type
if (type === 1 || type === 2) {
this.fixedNumber = [1.74, 1]
this.autoCropWidth = 484
this.autoCropHeight = 278
} else {
this.fixedNumber = [1, 1]
this.autoCropWidth = 57
this.autoCropHeight = 57
}
const { name } = file
const ext = name.substring(name.lastIndexOf('.') + 1)
if (!Util.isImg(ext)) {
this.$message.error('请上传图片!')
return false
}
this.file = file
this.cropperModel = true
this.$nextTick(() => {
this.$refs.cropper.updateImg({
url: window.URL.createObjectURL(file.raw),
size: file.size
})
})
},
beforeCoverRemove () { beforeCoverRemove () {
this.form.mall.coverDrawing = '' this.form.mall.coverDrawing = ''
}, },
@ -1438,6 +1526,7 @@ export default {
if (!form.classificationIds) return Util.errorMsg('请选择产品分类!') if (!form.classificationIds) return Util.errorMsg('请选择产品分类!')
if (!form.typeIds) return Util.errorMsg('请选择产品类型!') if (!form.typeIds) return Util.errorMsg('请选择产品类型!')
if (!form.supplierIds.length) return Util.errorMsg('请选择供应厂商!') if (!form.supplierIds.length) return Util.errorMsg('请选择供应厂商!')
if (this.isPython && !mall.themeId) return Util.errorMsg('请选择主题UI!')
if (!mall.coverDrawing) return Util.errorMsg('请上传封面图!') if (!mall.coverDrawing) return Util.errorMsg('请上传封面图!')
if (!mall.marketUnitPrice) return Util.errorMsg('请输入市场建议单价!') if (!mall.marketUnitPrice) return Util.errorMsg('请输入市场建议单价!')
let priceInvalid = 0 let priceInvalid = 0

Loading…
Cancel
Save