123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735 |
- <template>
- <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"
- >
- <i slot="default" class="el-icon-plus" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.imgPath">
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">
- <i class="el-icon-zoom-in" />
- </span>
- <span class="el-upload-list__item-delete" @click="handleRemove(file)">
- <i class="el-icon-delete" />
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <el-form-item label="款式设置">
- <el-radio-group v-model="form.attrStyle" @change="changeAttrStyle">
- <el-radio :label="0">单款式</el-radio>
- <el-radio :label="1">多款式</el-radio>
- </el-radio-group>
- </el-form-item>
- <div class="style-container">
- <div v-if="form.attrStyle === 0" class="single-style">
- <el-table :data="skuList" style="width: 100%" :header-cell-style="{ background: '#EEF3FF', color: '#333333' }">
- <el-table-column label="规格">
- <template slot-scope="scope">
- <el-input v-model="singleStyle.skuValue" :sss="scope" maxlength="10" />
- </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"
- />
- </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"
- />
- </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"
- />
- </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"
- />
- </template>
- </el-table-column>
- <el-table-column label="代金卷最大抵扣额度(一般设置全额抵扣)">
- <template slot-scope="scope">
- <!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
- <el-input-number
- v-model="scope.row.voucherPrice" :controls="false" :min="0"
- :precision="6"
- :step="0.01"
- />
- </template>
- </el-table-column>
- <el-table-column label="商品绑定的代金卷">
- <template slot-scope="scope">
- <el-select v-model="scope.row.voucherId" placeholder="请选择商品绑定的代金卷">
- <el-option
- v-for="item in voucherList"
- :key="item.createTime"
- :label="item.voucherName"
- :value="item.id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="国际条码">
- <template slot-scope="scope">
- <el-input v-model="scope.row.sku" maxlength="20" />
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div v-else class="multiple-styles">
- <div v-for="(skuAttr, index) in form.skuAttrList" :key="index" class="sku-attr-list">
- <el-form-item label="规格名">
- <el-input v-model="skuAttr.skuName" maxlength="20" />
- <i v-if="index != 0" class="el-icon-close delImg" @click="delSkuAttrList(index)" />
- <el-checkbox v-if="index === 0" v-model="skuAttr.needImg" style="margin-left: 20px;">需要配图</el-checkbox>
- </el-form-item>
- <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" />
- <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"
- >
- <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">
- </div>
- </el-upload>
- <div v-if="sku.image" class="attr-actions">
- <span class="attr-preview" @click="handlePictureCardPreview({ imgPath: sku.image })">
- <i class="el-icon-zoom-in" />
- </span>
- <span class="attr-delete" @click="handleRemove1(sku)">
- <i class="el-icon-delete" />
- </span>
- </div>
- </div>
- </div>
- </div>
- <el-button type="text" style="margin-left: 10px;" @click="addAttrValue(index)">添加</el-button>
- </div>
- </el-form-item>
- </div>
- <el-button class="add-attr-btn" type="primary" @click="addSkuAttrList">添加规格</el-button>
- <el-table :data="skuList" style="width: 100%" :header-cell-style="{ background: '#EEF3FF', color: '#333333' }">
- <el-table-column v-for="(skuAttr, index) in skuAttrName" :key="index" :label="skuAttr.skuName">
- <template slot-scope="scope">
- {{
- scope.row.skuAttrCodeDTOList &&
- 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"
- />
- </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"
- />
- </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"
- />
- </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"
- />
- </template>
- </el-table-column>
- <el-table-column label="代金卷最大抵扣额度(一般设置全额抵扣)">
- <template slot-scope="scope">
- <!-- <el-input v-model="scope.row.weight" type="number" oninput="value=value.replace(/-/, '')" /> -->
- <el-input-number
- v-model="scope.row.voucherPrice" :controls="false" :min="0"
- :precision="6"
- :step="0.01"
- />
- </template>
- </el-table-column>
- <el-table-column label="商品绑定的代金卷">
- <template slot-scope="scope">
- <el-select v-model="scope.row.voucherId" placeholder="请选择商品绑定的代金卷">
- <el-option
- v-for="item in voucherList"
- :key="item.createTime"
- :label="item.voucherName"
- :value="item.id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="国际条码">
- <template slot-scope="scope">
- <el-input v-model="scope.row.sku" maxlength="20" />
- </template>
- </el-table-column>
- <!-- <el-table-column label="操作">
- <template slot-scope="scope">
- <el-button type="text" @click="delAttrValue(scope.row,scope.$index,scope.row,scope)">删除</el-button>
- </template>
- </el-table-column> -->
- </el-table>
- </div>
- </div>
- <el-dialog
- :append-to-body="true" :visible.sync="dialogVisible" class="check-image-dialog" title="查看图片"
- center="center"
- >
- <img width="100%" :src="dialogImageUrl" alt>
- </el-dialog>
- </div>
- </template>
- <script>
- import { uploadUrl } from '@/utils/request'
- import { getToken } from '@/utils/auth'
- export default {
- filters: {
- attrValueFilter(map, list) {
- const hasChilds =
- list &&
- list.filter((skuAttr) => {
- const hasChild = skuAttr.values.some((attr) => attr.skuValue)
- return skuAttr.skuName && hasChild
- })
- if (!map) {
- return ''
- }
- const { code, valueCode } = map
- let codeStr = ''
- hasChilds.map((item) => {
- const { values } = item
- values &&
- values.some((attr) => {
- const isSome = item.code === code && attr.valueCode === valueCode
- if (isSome) {
- codeStr = attr.skuValue
- }
- return isSome
- })
- })
- return codeStr
- }
- },
- props: {
- form: {
- type: Object,
- default() {
- return {}
- }
- },
- voucherList: {
- type: Array,
- default: []
- }
- },
- data() {
- return {
- dialogImageUrl: '',
- dialogVisible: false,
- newform: this.form,
- headers: {
- 'Authorization-business': getToken()
- },
- action: uploadUrl,
- dataObj: {
- folderId: 1
- },
- fileList: []
- }
- },
- computed: {
- skuAttrName() {
- return (
- this.form.skuAttrList &&
- this.form.skuAttrList.filter((skuAttr) => {
- const hasChilds = skuAttr.values.some((attr) => attr.skuValue)
- return skuAttr.skuName && hasChilds
- })
- )
- },
- singleStyle() {
- if (this.form.skuAttrList && this.form.skuAttrList[0]) {
- return this.form.skuAttrList && this.form.skuAttrList[0].values[0]
- }
- return {
- skuValue: ''
- }
- },
- skuList() {
- // console.log(this.form)
- if (this.form.attrStyle === 0) {
- return this.form.skuList.slice(0, 1)
- }
- return this.form.skuList
- }
- },
- watch: {
- 'form.skuAttrList': {
- handler(newVal, oldVal) {
- // 判断是否有规格值
- const hasChilds =
- this.form.skuAttrList &&
- this.form.skuAttrList.filter((skuAttr) => {
- const hasChild = skuAttr.values.some((attr) => attr.skuValue)
- return skuAttr.skuName && hasChild
- })
- if (this.form.attrStyle === 1 && hasChilds.length) {
- this.skuFormat()
- }
- // console.log(newVal);
- // console.log(oldVal);
- },
- deep: true
- },
- 'form.skuList': {
- handler(newVal, oldVal) {
- // console.log(newVal);
- // console.log(oldVal);
- },
- deep: true
- }
- },
- created() {
- // console.log(this.voucherList)
- this.headers.tenant = 'MDAwMA=='
- },
- methods: {
- // proving1(e) {
- // var keynum = window.event ? e.keyCode : e.which // 获取键盘码
- // // var keychar = String.fromCharCode(keynum) // 获取键盘码对应的字符
- // console.log(
- // e.key
- // .replace(/[^\d^\.]+/g, '')
- // .replace('.', '$#$')
- // .replace(/\./g, '')
- // .replace('$#$', '.')
- // )
- // console.log(keynum)
- // if (
- // e.key
- // .replace(/[^\d^\.]+/g, '')
- // .replace('.', '$#$')
- // .replace(/\./g, '')
- // .replace('$#$', '.') === '' &&
- // keynum !== 8
- // ) {
- // this.$message.warning('禁止输入中文或空')
- // e.target.value = ' '
- // }
- // },
- handleImageSuccess(response) {
- const url = response.data.url
- this.form.imgs.push({
- imgPath: url
- })
- },
- // 移除图片
- handleRemove(file) {
- const { imgPath } = file
- this.form.imgs = this.form.imgs.filter((item) => item.imgPath !== imgPath)
- },
- handleRemove1(file) {
- file.image = ''
- },
- handlePictureCardPreview(file) {
- this.dialogImageUrl = file.imgPath
- this.dialogVisible = true
- },
- handleImageSuccess1(response, file, fileList) {
- const url = response.data.url
- fileList[0].image = url
- },
- del(row, index, arr) {
- console.log(row, index)
- // this.form.skuList.splice(index, 1);
- // console.log(this.form.skuAttrList);
- // console.log(this.form.skuList);
- console.log(arr)
- },
- //
- changeAttrStyle(index) {
- console.log(index)
- console.log(this.form)
- // if (index === 0) {
- // this.form.skuAttrList = []
- // }
- },
- addSkuAttrList() {
- this.form.skuAttrList.push({
- code: '',
- skuName: '',
- values: [
- {
- skuValue: '',
- valueCode: '',
- image: '',
- isDelete: 0,
- sortOrder: 0
- }
- ],
- isDelete: 0,
- needImg: 0,
- sortOrder: 0
- })
- },
- addAttrValue(index) {
- this.form.skuAttrList[index].values.push({
- skuValue: '',
- valueCode: '',
- image: ''
- })
- },
- // 删除规格值
- delValue(index, index1) {
- const newList = JSON.parse(JSON.stringify(this.form.skuAttrList[index]))
- const valueObj = {
- code: newList.code,
- skuId: newList.skuId,
- valueCode: newList.values[index1].valueCode
- }
- this.form.deletes.push(valueObj)
- this.form.skuAttrList[index].values.splice(index1, 1)
- },
- // 删除规格名
- delSkuAttrList(index) {
- const newList = JSON.parse(JSON.stringify(this.form.skuAttrList[index]))
- newList.values.forEach((item) => {
- const valueObj = {
- code: newList.code,
- skuId: newList.skuId,
- valueCode: ''
- }
- valueObj.valueCode = item.valueCode
- this.form.deletes.push(valueObj)
- })
- this.form.skuAttrList.splice(index, 1)
- },
- delAttrValue1(row, index, arr) {
- },
- skuFormat() {
- const skuListArray = []
- const result = {
- isDelete: 0,
- productId: '',
- skuAttrCodeDTOList: [
- {
- code: '',
- valueCode: ''
- }
- ],
- sku: '',
- skuImg: '',
- price: 0,
- originalPrice: 0,
- stockNumber: 0,
- weight: 0
- }
- const doExchange = (arr, depth) => {
- const map = {
- arr: []
- }
- for (var i = 0; i < arr[depth].length; i++) {
- map.arr.push(arr[depth][i])
- const { code, valueCode, attrId } = arr[depth][i]
- result.skuAttrCodeDTOList[depth] = {
- code,
- valueCode,
- attrId
- }
- if (depth !== arr.length - 1) {
- doExchange(arr, depth + 1)
- } else {
- skuListArray.push(JSON.parse(JSON.stringify(result)))
- }
- }
- }
- // this.form.skuList = skuListArray
- // 获取规格值的所有组合
- const values = []
- this.form.skuAttrList.map((skuItem, index) => {
- const attrList = []
- skuItem.code = skuItem.code || 'attr_code_' + index
- const { code } = skuItem
- skuItem.values &&
- skuItem.values.map((attrItem, index1) => {
- attrItem.valueCode = skuItem.valueCode || code + '_value_' + index1
- const skuId = attrItem.skuId
- const attrId = attrItem.attrId
- if (attrItem.skuValue) {
- attrList.push({
- skuId,
- attrId,
- code,
- valueCode: attrItem.valueCode
- })
- }
- })
- if (attrList.length) {
- values.push(attrList)
- }
- })
- // 相互组合
- if (values.length) {
- doExchange(values, 0)
- }
- this.form.skuList = skuListArray.map((sku1) => {
- const { skuAttrList, skuAttrCodeDTOList } = sku1
- const skuAttrList1 = skuAttrCodeDTOList || skuAttrList
- const skuMap = this.form.skuList.filter((sku2) => {
- const skuAttrList2 = sku2.skuAttrList
- sku2.skuAttrCodeDTOList = skuAttrList2
- if (!skuAttrList2) return false
- const ids = []
- skuAttrList1.filter((item) => ids.push(item.id))
- const result = skuAttrList2.every((item) => ids.indexOf(item.attrValueId) !== -1)
- return result
- })
- let selectMap = sku1
- if (skuMap && skuMap.length) {
- selectMap = JSON.parse(JSON.stringify(skuMap[0]))
- selectMap.skuAttrCodeDTOList = skuAttrCodeDTOList
- }
- return selectMap
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import url("../../../styles/elDialog.scss");
- .style-information-component {
- width: 100%;
- min-height: 300px;
- padding: 24px;
- background-color: rgb(255, 255, 255);
- .el-form-item {
- margin-bottom: 10px;
- }
- .attr-value-list {
- display: flex;
- flex-wrap: wrap;
- .main-diagram {
- width: 180px;
- .span-wrap {
- position: relative;
- display: inline-block;
- margin-top: 10px;
- .attr-actions {
- line-height: 100px;
- position: absolute;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- cursor: default;
- text-align: center;
- color: #fff;
- opacity: 0;
- font-size: 20px;
- background-color: rgba(0, 0, 0, 0.5);
- -webkit-transition: opacity 0.3s;
- transition: opacity 0.3s;
- z-index: 1;
- &:hover {
- opacity: 1;
- .attr-preview {
- display: inline-block;
- }
- i {
- color: #fff;
- font-size: 20px;
- }
- }
- }
- .attr-preview {
- display: none;
- cursor: pointer;
- font-size: 20px;
- color: #fff;
- }
- .attr-delete {
- margin-left: 15px;
- color: #fff;
- }
- }
- .attr-value-img {
- width: 100%;
- height: 100%;
- img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
- }
- }
- }
- .m-8 {
- margin-right: 8px;
- }
- .upload-btn {
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 110px;
- cursor: pointer;
- border: 2px dashed #2e60f8;
- border-radius: 2px;
- background-color: #f8f9fb;
- text-align: center;
- font-size: 20px;
- color: #2e60f8;
- i {
- color: #2e60f8;
- font-size: 20px;
- }
- .upload-title {
- margin-left: 10px;
- font-size: 14px;
- }
- }
- .upload-wrap {
- margin-bottom: 25px;
- .el-upload-list__item {
- transition: none !important;
- }
- .el-upload,
- .el-upload-list__item {
- width: 100px;
- height: 100px;
- line-height: 100px;
- }
- .el-progress,
- .el-progress-circle {
- width: 80px !important;
- height: 80px !important;
- }
- }
- .sku-attr-list {
- .el-input {
- width: 180px;
- }
- }
- .single-style {
- .el-input {
- max-width: 180px;
- }
- }
- .add-attr-btn {
- margin-bottom: 25px;
- }
- .check-image-dialog {
- .el-dialog {
- margin-top: 25px;
- .el-dialog__body {
- img {
- max-width: 100%;
- max-height: 100%;
- height: 500px;
- object-fit: contain;
- }
- }
- }
- }
- .delImg {
- position: absolute;
- top: 12px;
- margin-left: -24px
- }
- .delImg:hover {
- border-radius: 50%;
- color: #ffffff;
- background: #2e60f8;
- cursor: pointer;
- }
- }
- </style>
|