|
@@ -2,17 +2,24 @@
|
|
|
<div class="style-information-component">
|
|
|
<el-form-item label="商品图片" />
|
|
|
<div class="upload-wrap">
|
|
|
- <el-upload list-type="picture-card" :on-preview="handlePictureCardPreview" :on-remove="handleRemove"
|
|
|
- :headers="headers" :data="dataObj" :file-list="form.imgs" :limit="20" :on-success="handleImageSuccess"
|
|
|
- :action="action">
|
|
|
+ <el-upload
|
|
|
+ list-type="picture-card" :on-preview="handlePictureCardPreview" :on-remove="handleRemove"
|
|
|
+ :headers="headers" :data="dataObj" :file-list="form.imgs" :limit="20"
|
|
|
+ :on-success="handleImageSuccess"
|
|
|
+ :action="action"
|
|
|
+ >
|
|
|
<i slot="default" class="el-icon-plus" />
|
|
|
<div slot="file" slot-scope="{ file }">
|
|
|
<img v-if="!isVideo(file.imgPath)" class="el-upload-list__item-thumbnail" :src="file.imgPath">
|
|
|
- <video v-else class="el-upload-list__item-thumbnail" style="width: 148px;height: 148px;"
|
|
|
- :src="file.imgPath"></video>
|
|
|
+ <video
|
|
|
+ v-else class="el-upload-list__item-thumbnail" style="width: 148px;height: 148px;"
|
|
|
+ :src="file.imgPath"
|
|
|
+ ></video>
|
|
|
<span class="el-upload-list__item-actions">
|
|
|
- <span v-if="!isVideo(file.imgPath)" class="el-upload-list__item-preview"
|
|
|
- @click="handlePictureCardPreview(file)">
|
|
|
+ <span
|
|
|
+ v-if="!isVideo(file.imgPath)" class="el-upload-list__item-preview"
|
|
|
+ @click="handlePictureCardPreview(file)"
|
|
|
+ >
|
|
|
<i class="el-icon-zoom-in" />
|
|
|
</span>
|
|
|
<span @click="playVideo(file.imgPath)">
|
|
@@ -42,29 +49,39 @@
|
|
|
<el-table-column label="售价">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.price" type="number" oninput="value=value.replace(/-/, '')" /> -->
|
|
|
- <el-input-number v-model="scope.row.price" :controls="false" :max="999999999" :min="0" :precision="2"
|
|
|
- :step="0.01" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.price" :controls="false" :max="999999999" :min="0"
|
|
|
+ :precision="2"
|
|
|
+ :step="0.01"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="原价">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.originalPrice" type="number" oninput="value=value.replace(/-/, '')" /> -->
|
|
|
- <el-input-number v-model="scope.row.originalPrice" :controls="false" :max="999999999" :min="0"
|
|
|
- :precision="2" :step="0.01" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.originalPrice" :controls="false" :max="999999999" :min="0"
|
|
|
+ :precision="2" :step="0.01"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="库存">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.stockNumber" type="number" oninput="value=value.replace(/[^\d]/g,'')" /> -->
|
|
|
- <el-input-number v-model="scope.row.stockNumber" :controls="false" :max="999999999" :min="0"
|
|
|
- :precision="0" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.stockNumber" :controls="false" :max="999999999" :min="0"
|
|
|
+ :precision="0"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="重量(KG)">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
|
|
|
- <el-input-number v-model="scope.row.weight" :controls="false" :max="999" :min="0" :precision="2"
|
|
|
- :step="0.01" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.weight" :controls="false" :max="999" :min="0"
|
|
|
+ :precision="2"
|
|
|
+ :step="0.01"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="代金卷最大抵扣额度(一般设置全额抵扣)">
|
|
@@ -98,14 +115,17 @@
|
|
|
<el-form-item label="规格值">
|
|
|
<div class="attr-value-list">
|
|
|
<div v-for="(sku, index1) in skuAttr.values" :key="index + '-' + index1" class="main-diagram m-8">
|
|
|
- <el-input v-model="sku.skuValue" maxlength="10" />
|
|
|
+ <el-input v-model="sku.skuValue" maxlength="10" />{{ index === 0 && index1 === 0 }}
|
|
|
<i v-if="index === 0 && index1 === 0" />
|
|
|
<i v-else class="el-icon-close delImg" @click="delValue(index, index1)" />
|
|
|
<div v-if="skuAttr.needImg && index === 0" class="upload-wrap diagram-upload">
|
|
|
<div class="span-wrap">
|
|
|
- <el-upload list-type="picture-card" :show-file-list="false" :on-preview="handlePictureCardPreview"
|
|
|
- :on-remove="handleRemove" :headers="headers" :data="dataObj" :file-list="[sku]" :multiple="false"
|
|
|
- :on-success="handleImageSuccess1" :action="action">
|
|
|
+ <el-upload
|
|
|
+ list-type="picture-card" :show-file-list="false" :on-preview="handlePictureCardPreview"
|
|
|
+ :on-remove="handleRemove" :headers="headers" :data="dataObj" :file-list="[ sku ]"
|
|
|
+ :multiple="false"
|
|
|
+ :on-success="handleImageSuccess1" :action="action"
|
|
|
+ >
|
|
|
<i v-if="!sku.image" slot="trigger" class="el-icon-plus" />
|
|
|
<div v-else class="attr-value-img">
|
|
|
<img class="attr-thumbnail" :src="sku.image">
|
|
@@ -132,37 +152,47 @@
|
|
|
<template slot-scope="scope">
|
|
|
{{
|
|
|
scope.row.skuAttrCodeDTOList &&
|
|
|
- scope.row.skuAttrCodeDTOList[index]
|
|
|
- | attrValueFilter(form.skuAttrList)
|
|
|
+ scope.row.skuAttrCodeDTOList[index]
|
|
|
+ | attrValueFilter(form.skuAttrList)
|
|
|
}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="售价">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.price" type="number" oninput="value=value.replace(/-/, '')" /> -->
|
|
|
- <el-input-number v-model="scope.row.price" :controls="false" :max="999999999" :min="0" :precision="2"
|
|
|
- :step="0.01" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.price" :controls="false" :max="999999999" :min="0"
|
|
|
+ :precision="2"
|
|
|
+ :step="0.01"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="原价">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.originalPrice" type="number" oninput="value=value.replace(/-/, '')" /> -->
|
|
|
- <el-input-number v-model="scope.row.originalPrice" :controls="false" :max="999999999" :min="0"
|
|
|
- :precision="2" :step="0.01" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.originalPrice" :controls="false" :max="999999999" :min="0"
|
|
|
+ :precision="2" :step="0.01"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="库存">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.stockNumber" type="number" oninput="value=value.replace(/[^\d]/g,'')" /> -->
|
|
|
- <el-input-number v-model="scope.row.stockNumber" :controls="false" :max="999999999" :min="0"
|
|
|
- :precision="0" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.stockNumber" :controls="false" :max="999999999" :min="0"
|
|
|
+ :precision="0"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="重量(KG)">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
|
|
|
- <el-input-number v-model="scope.row.weight" :controls="false" :max="999" :min="0" :precision="6"
|
|
|
- :step="0.01" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.weight" :controls="false" :max="999" :min="0"
|
|
|
+ :precision="6"
|
|
|
+ :step="0.01"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="代金卷最大抵扣额度(一般设置全额抵扣)">
|
|
@@ -192,13 +222,17 @@
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <el-dialog :append-to-body="true" :visible.sync="dialogVisible" class="check-image-dialog" title="查看图片"
|
|
|
- center="center">
|
|
|
+ <el-dialog
|
|
|
+ :append-to-body="true" :visible.sync="dialogVisible" class="check-image-dialog" title="查看图片"
|
|
|
+ center="center"
|
|
|
+ >
|
|
|
<img width="100%" :src="dialogImageUrl" alt>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog width="30%" :append-to-body="true" :visible.sync="previewVideoVisible" class="check-image-dialog"
|
|
|
- title="预览视频" center="center">
|
|
|
+ <el-dialog
|
|
|
+ width="30%" :append-to-body="true" :visible.sync="previewVideoVisible" class="check-image-dialog"
|
|
|
+ title="预览视频" center="center"
|
|
|
+ >
|
|
|
<div style="display: flex; align-items: center; justify-content: center;">
|
|
|
<video controls autoplay muted style="width: 400px; height: 400px;" :src="dialogVideoUrl"></video>
|
|
|
</div>
|
|
@@ -211,6 +245,8 @@ import { uploadUrl } from '@/utils/request'
|
|
|
import { getToken } from '@/utils/auth'
|
|
|
import { isVideo } from '@/utils/index'
|
|
|
export default {
|
|
|
+ // eslint-disable-next-line vue/match-component-file-name, vue/component-definition-name-casing
|
|
|
+ name: 'addComponent',
|
|
|
filters: {
|
|
|
attrValueFilter(map, list) {
|
|
|
const hasChilds =
|
|
@@ -224,6 +260,7 @@ export default {
|
|
|
}
|
|
|
const { code, valueCode } = map
|
|
|
let codeStr = ''
|
|
|
+ // eslint-disable-next-line array-callback-return
|
|
|
hasChilds.map((item) => {
|
|
|
const { values } = item
|
|
|
values &&
|
|
@@ -247,6 +284,7 @@ export default {
|
|
|
},
|
|
|
voucherList: {
|
|
|
type: Array,
|
|
|
+ // eslint-disable-next-line vue/require-valid-default-prop
|
|
|
default: []
|
|
|
}
|
|
|
},
|
|
@@ -291,7 +329,7 @@ export default {
|
|
|
return this.form.skuList.slice(0, 1)
|
|
|
}
|
|
|
return this.form.skuList
|
|
|
- },
|
|
|
+ }
|
|
|
|
|
|
},
|
|
|
watch: {
|
|
@@ -355,6 +393,7 @@ export default {
|
|
|
},
|
|
|
handleImageSuccess(response) {
|
|
|
const url = response.data.url
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.imgs.push({
|
|
|
imgPath: url
|
|
|
})
|
|
@@ -362,6 +401,7 @@ export default {
|
|
|
// 移除图片
|
|
|
handleRemove(file) {
|
|
|
const { imgPath } = file
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.imgs = this.form.imgs.filter((item) => item.imgPath !== imgPath)
|
|
|
},
|
|
|
handleRemove1(file) {
|
|
@@ -391,6 +431,7 @@ export default {
|
|
|
// }
|
|
|
},
|
|
|
addSkuAttrList() {
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.skuAttrList.push({
|
|
|
code: '',
|
|
|
skuName: '',
|
|
@@ -409,6 +450,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
addAttrValue(index) {
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.skuAttrList[index].values.push({
|
|
|
skuValue: '',
|
|
|
valueCode: '',
|
|
@@ -423,7 +465,9 @@ export default {
|
|
|
skuId: newList.skuId,
|
|
|
valueCode: newList.values[index1].valueCode
|
|
|
}
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.deletes.push(valueObj)
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.skuAttrList[index].values.splice(index1, 1)
|
|
|
},
|
|
|
// 删除规格名
|
|
@@ -436,8 +480,10 @@ export default {
|
|
|
valueCode: ''
|
|
|
}
|
|
|
valueObj.valueCode = item.valueCode
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.deletes.push(valueObj)
|
|
|
})
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.skuAttrList.splice(index, 1)
|
|
|
},
|
|
|
delAttrValue1(row, index, arr) {
|
|
@@ -483,11 +529,13 @@ export default {
|
|
|
// this.form.skuList = skuListArray
|
|
|
// 获取规格值的所有组合
|
|
|
const values = []
|
|
|
+ // eslint-disable-next-line array-callback-return
|
|
|
this.form.skuAttrList.map((skuItem, index) => {
|
|
|
const attrList = []
|
|
|
skuItem.code = skuItem.code || 'attr_code_' + index
|
|
|
const { code } = skuItem
|
|
|
skuItem.values &&
|
|
|
+ // eslint-disable-next-line array-callback-return
|
|
|
skuItem.values.map((attrItem, index1) => {
|
|
|
attrItem.valueCode = skuItem.valueCode || code + '_value_' + index1
|
|
|
const skuId = attrItem.skuId
|
|
@@ -509,6 +557,7 @@ export default {
|
|
|
if (values.length) {
|
|
|
doExchange(values, 0)
|
|
|
}
|
|
|
+ // eslint-disable-next-line vue/no-mutating-props
|
|
|
this.form.skuList = skuListArray.map((sku1) => {
|
|
|
const { skuAttrList, skuAttrCodeDTOList } = sku1
|
|
|
const skuAttrList1 = skuAttrCodeDTOList || skuAttrList
|
|
@@ -551,6 +600,7 @@ export default {
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
.main-diagram {
|
|
|
+ position: relative;
|
|
|
width: 180px;
|
|
|
|
|
|
.span-wrap {
|