123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- <template>
- <div class="container">
- <el-tabs v-model="activeName" class="tabs" :before-leave="confirmLeave">
- <!-- 基础设置 -->
- <el-tab-pane label="基础设置" name="base">
- <el-form ref="base" :model="baseForm" :rules="rules" label-width="100px" style="width: 95%">
- <el-form-item label="商品名称" prop="name">
- <el-input v-model="baseForm.name" placeholder="请输入商品名称"/>
- </el-form-item>
- <el-form-item label="卖点">
- <el-input v-model="baseForm.sellPoint" placeholder="请输入卖点"/>
- </el-form-item>
- <el-form-item label="分类id" prop="categoryIds">
- <el-cascader
- v-model="baseForm.categoryIds"
- placeholder="请输入分类id"
- style="width: 100%"
- :options="categoryList"
- :props="propName"
- clearable
- ></el-cascader>
- </el-form-item>
- <el-form-item label="商品轮播图" prop="picUrls">
- <ImageUpload v-model="baseForm.picUrls" :value="baseForm.picUrls" :limit="10"/>
- </el-form-item>
- <el-form-item label="排序字段">
- <el-input v-model="baseForm.sort" placeholder="请输入排序字段" oninput="value=value.replace(/^(0+)|[^\d]+/g,'')"/>
- </el-form-item>
- </el-form>
- </el-tab-pane>
- <!-- 价格库存 -->
- <el-tab-pane label="价格库存" name="rates" class="rates">
- <el-form ref="rates" :model="ratesForm" :rules="rules">
- <el-form-item label="商品规格">
- <el-radio-group v-model="ratesForm.spec" @change="changeRadio">
- <el-radio :label="1">单规格</el-radio>
- <el-radio :label="2">多规格</el-radio>
- </el-radio-group>
- </el-form-item>
- <!-- 动态添加规格属性 -->
- <div v-show="ratesForm.spec === 2">
- <div
- v-for="(specs, index) in dynamicSpec"
- :key="index"
- class="dynamic-spec"
- >
- <!-- 删除按钮 -->
- <el-button
- type="danger"
- icon="el-icon-delete"
- circle
- class="spec-delete"
- @click="removeSpec(index)"
- ></el-button>
- <div class="spec-header">
- 规格项:
- <el-select v-model="specs.specId" filterable placeholder="请选择" @change="changeSpec">
- <el-option
- v-for="item in propertyPageList"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- </div>
- <div class="spec-values">
- <template v-for="(v, i) in specs.specValue">
- <el-input v-model="v.name" class="spec-value" :key="i" disabled/>
- </template>
- </div>
- </div>
- <el-button type="primary" @click="dynamicSpec.push({specValue: []}); ratesForm.rates = []"
- >添加规格项目
- </el-button
- >
- </div>
- <!-- 规格明细 -->
- <el-form-item label="规格明细">
- <el-table :data="ratesForm.rates" border style="width: 100%" ref="ratesTable">
- <template v-if="ratesForm.spec == 2">
- <el-table-column :key="index" v-for="(item, index) in dynamicSpec.filter(v=>v.specName != undefined)"
- :label="item.specName">
- <template slot-scope="scope">
- <el-input
- v-if="scope.row.spec"
- v-model="scope.row.spec[index]"
- disabled
- ></el-input>
- </template>
- </el-table-column>
- </template>
- <el-table-column label="规格图片" width="120px" :render-header="addRedStar" key="90">
- <template slot-scope="scope">
- <ImageUpload v-model="scope.row.picUrl" :limit="1" :isShowTip="false"
- style="width: 100px; height: 50px"/>
- </template>
- </el-table-column>
- <template v-if="ratesForm.spec == 2">
- <el-table-column label="sku名称" :render-header="addRedStar" key="91">
- <template slot-scope="scope">
- <el-form-item :prop="'rates.'+ scope.$index + '.name'" :rules="[{required: true, trigger: 'change'}]">
- <el-input
- v-model="scope.row.name"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- </template>
- <el-table-column label="市场价(元)" :render-header="addRedStar" key="92">
- <template slot-scope="scope">
- <el-form-item :prop="'rates.'+ scope.$index + '.marketPrice'" :rules="[{required: true, trigger: 'change'}]">
- <el-input
- v-model="scope.row.marketPrice"
- oninput="value= value.match(/\d+(\.\d{0,2})?/) ? value.match(/\d+(\.\d{0,2})?/)[0] : ''"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="销售价(元)" :render-header="addRedStar" key="93">
- <template slot-scope="scope">
- <el-form-item :prop="'rates.'+ scope.$index + '.price'" :rules="[{required: true, trigger: 'change'}]">
- <el-input v-model="scope.row.price" oninput="value= value.match(/\d+(\.\d{0,2})?/) ? value.match(/\d+(\.\d{0,2})?/)[0] : ''"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="成本价" :render-header="addRedStar" key="94">
- <template slot-scope="scope">
- <el-form-item :prop="'rates.'+ scope.$index + '.costPrice'" :rules="[{required: true, trigger: 'change'}]">
- <el-input
- v-model="scope.row.costPrice"
- oninput="value= value.match(/\d+(\.\d{0,2})?/) ? value.match(/\d+(\.\d{0,2})?/)[0] : ''"
- ></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="库存" :render-header="addRedStar" key="95">
- <template slot-scope="scope">
- <el-form-item :prop="'rates.'+ scope.$index + '.stock'" :rules="[{required: true, trigger: 'change'}]">
- <el-input v-model="scope.row.stock" oninput="value=value.replace(/^(0+)|[^\d]+/g,'')"></el-input>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="预警库存" key="96">
- <template slot-scope="scope">
- <el-input v-model="scope.row.warnStock" oninput="value=value.replace(/^(0+)|[^\d]+/g,'')"></el-input>
- </template>
- </el-table-column>
- <el-table-column label="体积" key="97">
- <template slot-scope="scope">
- <el-input v-model="scope.row.volume" ></el-input>
- </template>
- </el-table-column>
- <el-table-column label="重量" key="98">
- <template slot-scope="scope">
- <el-input v-model="scope.row.weight" ></el-input>
- </template>
- </el-table-column>
- <el-table-column label="条码" key="99">
- <template slot-scope="scope">
- <el-input v-model="scope.row.barCode"></el-input>
- </template>
- </el-table-column>
- <template v-if="ratesForm.spec == 2">
- <el-table-column
- fixed="right"
- label="操作"
- width="50"
- key="100">
- <template slot-scope="scope">
- <el-button @click="scope.row.status = 1" type="text" size="small" v-show="scope.row.status == undefined || scope.row.status == 0 ">禁用</el-button>
- <el-button @click="scope.row.status = 0" type="text" size="small" v-show="scope.row.status == 1">启用</el-button>
- </template>
- </el-table-column>
- </template>
- </el-table>
- </el-form-item>
- </el-form>
- </el-tab-pane>
- <!-- 商品详情 -->
- <el-tab-pane label="商品描述" name="third">
- <el-form ref="third" :model="baseForm" :rules="rules">
- <el-form-item prop="description">
- <editor v-model="baseForm.description" :min-height="380"/>
- </el-form-item>
- </el-form>
- </el-tab-pane>
- <!-- 销售设置 -->
- <el-tab-pane label="销售设置" name="fourth">
- <el-form ref="fourth" :model="baseForm" :rules="rules" label-width="100px" style="width: 95%">
- <el-form-item label="虚拟销量" prop="virtualSalesCount">
- <el-input v-model="baseForm.virtualSalesCount" placeholder="请输入虚拟销量" oninput="value=value.replace(/^(0+)|[^\d]+/g,'')"/>
- </el-form-item>
- <el-form-item label="是否展示库存" prop="showStock">
- <el-radio-group v-model="baseForm.showStock">
- <el-radio :label="true">是</el-radio>
- <el-radio :label="false">否</el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item label="商品状态" prop="status">
- <el-radio-group v-model="baseForm.status">
- <el-radio :label="0">上架</el-radio>
- <el-radio :label="1">下架</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-form>
- </el-tab-pane>
- </el-tabs>
- <div class="buttons">
- <el-button type="info" round @click="cancel">取消</el-button>
- <el-button type="success" round @click="submit">确认</el-button>
- </div>
- </div>
- </template>
- <script>
- import {getProductCategoryList} from "@/api/mall/product/category";
- import {createSpu,} from "@/api/mall/product/spu";
- import {getPropertyPage,} from "@/api/mall/product/property";
- import Editor from "@/components/Editor";
- import ImageUpload from "@/components/ImageUpload";
- export default {
- components: {
- Editor,
- ImageUpload
- },
- data() {
- return {
- activeName: "base",
- propName: {
- checkStrictly: true,
- label: "name",
- value: "id",
- },
- // 基础设置
- baseForm: {
- name: null,
- sellPoint: null,
- categoryIds: null,
- sort: null,
- description: null,
- picUrls: null,
- status: 0,
- virtualSalesCount: 0,
- showStock: true,
- },
- categoryList: [],
- // 价格库存
- ratesForm: {
- spec: 1,
- // 规格明细
- rates: [{}]
- },
- dynamicSpec: [
- // {
- // specId: 86,
- // specName: "颜色",
- // specValue:[{
- // name: "红色",
- // id: 225,
- // }]
- // },
- ],
- propertyPageList: [],
- specValue: null,
- // 表单校验
- rules: {
- name:[{required: true, message: "商品名称不能为空", trigger: "blur"},],
- description: [{required: true, message: "描述不能为空", trigger: "blur"},],
- categoryIds: [{required: true, message: "分类id不能为空", trigger: "blur"},],
- status: [{required: true, message: "商品状态不能为空", trigger: "blur"}],
- picUrls: [{required: true, message: "商品轮播图地址不能为空", trigger: "blur"}],
- virtualSalesCount: [{required: true, message: "虚拟销量不能为空", trigger: "blur"}],
- },
- };
- },
- created() {
- this.getListCategory();
- this.getPropertyPageList();
- },
- methods: {
- removeSpec(index){
- this.dynamicSpec.splice(index, 1);
- this.changeRadio()
- },
- async confirmLeave(active, old){
- await this.$refs[old].validate((valid) => {
- console.log(valid)
- if (!valid) {
- return reject();
- }
- });
- },
- // 必选标识
- addRedStar(h, { column }) {
- return [
- h('span', { style: 'color: #F56C6C' }, '*'),
- h('span', ' ' + column.label)
- ];
- },
- changeRadio() {
- this.$refs.ratesTable.doLayout();
- if (this.ratesForm.spec == 1) {
- this.ratesForm.rates = [{}]
- } else {
- this.ratesForm.rates = []
- if (this.dynamicSpec.length > 0) {
- console.log( this.dynamicSpec)
- this.buildRatesFormRates()
- }
- }
- },
- // 构建规格明细笛卡尔积
- buildRatesFormRates() {
- let rates = [];
- this.dynamicSpec.map(v => v.specValue.map(m => m.name))
- .reduce((last, current) => {
- const array = [];
- last.forEach(par1 => {
- current.forEach(par2 => {
- let v
- if (par1 instanceof Array) {
- v = par1.concat(par2)
- } else {
- v = [par1, par2];
- }
- array.push(v)
- });
- });
- return array;
- })
- .forEach(v => {
- rates.push({spec: v, status: 0, name: Array.of(v).join()})
- });
- this.ratesForm.rates = rates
- },
- /** 查询分类 */
- getListCategory() {
- // 执行查询
- getProductCategoryList().then((response) => {
- this.categoryList = this.handleTree(response.data, "id", "parentId");
- });
- },
- cancel() {
- this.$emit("closeDialog");
- },
- submit() {
- this.$refs[this.activeName].validate((valid) => {
- if (!valid) {
- return;
- }
- let rates = this.ratesForm.rates;
- // 动态规格调整字段
- if (this.ratesForm.spec == 2) {
- rates.forEach(r => {
- let properties = []
- Array.of(r.spec).forEach(s => {
- Array.of(s).forEach((v, i) => {
- console.log(this.dynamicSpec, r, s, v, i)
- let specValue = this.dynamicSpec[i].specValue.find(o => o.name == v);
- console.log(specValue)
- let propertie = {};
- propertie.propertyId = this.dynamicSpec[i].specId;
- propertie.valueId = specValue.id;
- properties.push(propertie);
- })
- })
- r.properties = properties;
- })
- }else{
- rates[0].name = this.baseForm.name;
- rates[0].status = this.baseForm.status;
- }
- console.log(rates)
- let form = this.baseForm
- if(form.picUrls instanceof Array){
- form.picUrls = form.picUrls.flatMap(m=>m.split(','))
- }else if(form.picUrls.split(',') instanceof Array){
- form.picUrls = form.picUrls.split(',').flatMap(m=>m.split(','))
- }else{
- form.picUrls = Array.of(form.picUrls)
- }
- form.skus = rates;
- form.specType = this.ratesForm.spec;
- form.categoryId = form.categoryIds[this.baseForm.categoryIds.length - 1];
- createSpu(form).then((response) => {
- console.log(response)
- this.$modal.msgSuccess("新增成功");
- this.$emit("closeDialog");
- }).catch((err) => {
- console.log(this.baseForm.picUrls)
- });
- });
- },
- /** 查询规格 */
- getPropertyPageList() {
- // 执行查询
- getPropertyPage().then((response) => {
- this.propertyPageList = response.data.list;
- });
- },
- changeSpec(val) {
- let obj = this.propertyPageList.find(o => o.id == val);
- let dynamicSpec = this.dynamicSpec;
- let spec = dynamicSpec.find(o => o.specId == val)
- spec.specId = obj.id;
- spec.specName = obj.name;
- spec.specValue = obj.propertyValueList;
- this.dynamicSpec = dynamicSpec;
- this.buildRatesFormRates();
- }
- },
- };
- </script>
- <style lang="scss">
- .spec-dialog {
- width: 400px;
- height: 300px;
- }
- .dynamic-spec {
- background-color: #f2f2f2;
- width: 85%;
- margin: auto;
- margin-bottom: 10px;
- .spec-header {
- padding: 30px;
- padding-bottom: 20px;
- .spec-name {
- display: inline;
- input {
- width: 30%;
- }
- }
- }
- .spec-values {
- width: 84%;
- padding: 25px;
- margin: auto;
- padding-top: 5px;
- .spec-value {
- display: inline-block;
- margin-right: 10px;
- margin-bottom: 10px;
- width: 13%;
- }
- }
- .spec-delete {
- float: right;
- margin-top: 10px;
- margin-right: 10px;
- }
- }
- .tabs {
- height: 500px;
- border-bottom: 2px solid #f2f2f2;
- .el-tab-pane {
- height: 445px;
- overflow-y: auto;
- }
- }
- // 库存价格图片样式修改
- .rates {
- .component-upload-image {
- margin: auto;
- }
- .el-upload--picture-card {
- width: 100px;
- height: 50px;
- line-height: 60px;
- margin: auto;
- }
- .el-upload-list__item {
- width: 100px !important;
- height: 50px !important;
- }
- }
- .buttons {
- margin-top: 20px;
- height: 36px;
- button {
- float: right;
- margin-left: 15px;
- }
- }
- </style>
|