|
|
|
|
@ -1,20 +1,15 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
|
<!-- TODO @Luowenfeng:参考界面;https://v5.niuteam.cn/shop/goods/lists.html
|
|
|
|
|
商品名称、商品编码、商品分类、商品品牌
|
|
|
|
|
商品销量、商品价格
|
|
|
|
|
-->
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form-item label="商品名称" prop="name">
|
|
|
|
|
<el-input v-model="queryParams.name" placeholder="请输入商品名称" clearable @keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="商品编码" prop="code">
|
|
|
|
|
<el-input v-model="queryParams.code" placeholder="请输入商品名称" clearable @keyup.enter.native="handleQuery"/>
|
|
|
|
|
<el-input v-model="queryParams.code" placeholder="请输入商品编码" clearable @keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="商品分类" prop="categoryId">
|
|
|
|
|
<el-form-item label="商品分类" prop="categoryIds">
|
|
|
|
|
<el-cascader v-model="queryParams.categoryIds" placeholder="请输入商品分类"
|
|
|
|
|
:options="categoryList" :props="propName" clearable ref="category"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
@ -25,6 +20,58 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="商品销量">
|
|
|
|
|
<el-col
|
|
|
|
|
:span="6"
|
|
|
|
|
style="padding-left:0"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item prop="salesCountMin">
|
|
|
|
|
<el-input v-model="queryParams.salesCountMin" placeholder="最小值" clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col
|
|
|
|
|
:span="1"
|
|
|
|
|
>
|
|
|
|
|
-
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col
|
|
|
|
|
:span="6"
|
|
|
|
|
style="padding-left:0"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item prop="salesCountMax">
|
|
|
|
|
<el-input v-model="queryParams.salesCountMax" placeholder="最大值" clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="商品价格" prop="code">
|
|
|
|
|
<el-col
|
|
|
|
|
:span="6"
|
|
|
|
|
style="padding-left:0"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item prop="marketPriceMin">
|
|
|
|
|
<el-input v-model="queryParams.marketPriceMin" placeholder="最小值" clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col
|
|
|
|
|
:span="1"
|
|
|
|
|
>
|
|
|
|
|
-
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col
|
|
|
|
|
:span="6"
|
|
|
|
|
style="padding-left:0"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item prop="marketPriceMax">
|
|
|
|
|
<el-input v-model="queryParams.marketPriceMax" placeholder="最大值" clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
|
|
@ -35,21 +82,63 @@
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
|
|
v-hasPermi="['product:spu:create']">新增</el-button>
|
|
|
|
|
v-hasPermi="['product:spu:create']">新增
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"/>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-tabs v-model="activeTabs" type="card" @tab-click="handleClick">
|
|
|
|
|
<!-- 全部 -->
|
|
|
|
|
<el-tab-pane label="全部" name="all">
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
|
<!--
|
|
|
|
|
TODO @Luowenfeng:参考界面;
|
|
|
|
|
https://v5.niuteam.cn/shop/goods/lists.html
|
|
|
|
|
1. 字段:商品信息、价格、库存、销量、排序、创建时间、状态、操作;
|
|
|
|
|
2. tab 分成全部、销售中、仓库中、预警中
|
|
|
|
|
-->
|
|
|
|
|
<el-table-column label="商品信息" align="center" width="260">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div class="product-info">
|
|
|
|
|
<img
|
|
|
|
|
v-if="scope.row.picUrls"
|
|
|
|
|
:src="scope.row.picUrls[0]"
|
|
|
|
|
alt="分类图片"
|
|
|
|
|
class="img-height"
|
|
|
|
|
/>
|
|
|
|
|
<div class="message">{{ scope.row.name }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/>
|
|
|
|
|
<el-table-column label="库存" align="center" prop="totalStock"/>
|
|
|
|
|
<el-table-column label="销量" align="center" prop="salesCount"/>
|
|
|
|
|
<el-table-column label="排序" align="center" prop="sort"/>
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:update']">修改
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:delete']">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
|
<!-- 销售中 -->
|
|
|
|
|
<el-tab-pane label="销售中" name="on">
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
|
<el-table-column label="商品信息" align="center" width="260">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div class="product-info">
|
|
|
|
|
<img
|
|
|
|
|
@ -80,27 +169,119 @@
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:update']">修改</el-button>
|
|
|
|
|
v-hasPermi="['product:spu:update']">修改
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:delete']">删除</el-button>
|
|
|
|
|
v-hasPermi="['product:spu:delete']">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
|
<!-- 仓库中 -->
|
|
|
|
|
<el-tab-pane label="仓库中" name="off">
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
|
<el-table-column label="商品信息" align="center" width="260">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div class="product-info">
|
|
|
|
|
<img
|
|
|
|
|
v-if="scope.row.picUrls"
|
|
|
|
|
:src="scope.row.picUrls[0]"
|
|
|
|
|
alt="分类图片"
|
|
|
|
|
class="img-height"
|
|
|
|
|
/>
|
|
|
|
|
<div class="message">{{ scope.row.name }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/>
|
|
|
|
|
<el-table-column label="库存" align="center" prop="totalStock"/>
|
|
|
|
|
<el-table-column label="销量" align="center" prop="salesCount"/>
|
|
|
|
|
<el-table-column label="排序" align="center" prop="sort"/>
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:update']">修改
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:delete']">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
|
<!-- 预警中 -->
|
|
|
|
|
<el-tab-pane label="预警中" name="remind">
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
|
<el-table-column label="商品信息" align="center" width="260">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div class="product-info">
|
|
|
|
|
<img
|
|
|
|
|
v-if="scope.row.picUrls"
|
|
|
|
|
:src="scope.row.picUrls[0]"
|
|
|
|
|
alt="分类图片"
|
|
|
|
|
class="img-height"
|
|
|
|
|
/>
|
|
|
|
|
<div class="message">{{ scope.row.name }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="价格" align="center" prop="marketPrice" :formatter="unitConversion"/>
|
|
|
|
|
<el-table-column label="库存" align="center" prop="totalStock"/>
|
|
|
|
|
<el-table-column label="销量" align="center" prop="salesCount"/>
|
|
|
|
|
<el-table-column label="排序" align="center" prop="sort"/>
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:update']">修改
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['product:spu:delete']">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
<!-- 分页组件 -->
|
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"/>
|
|
|
|
|
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="900px" append-to-body destroy-on-close :close-on-click-modal="false" >
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="900px" append-to-body destroy-on-close
|
|
|
|
|
:close-on-click-modal="false">
|
|
|
|
|
<save @closeDialog="closeDialog" :obj="dialogObj" v-if="open"/>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
deleteSpu,
|
|
|
|
|
getSpuPage,
|
|
|
|
|
} from "@/api/mall/product/spu";
|
|
|
|
|
import {deleteSpu, getSpuPage,} from "@/api/mall/product/spu";
|
|
|
|
|
import {getProductCategoryList} from "@/api/mall/product/category";
|
|
|
|
|
import {getBrandList} from "@/api/mall/product/brand";
|
|
|
|
|
import Editor from "@/components/Editor";
|
|
|
|
|
@ -119,6 +300,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
activeTabs: "all",
|
|
|
|
|
propName: {
|
|
|
|
|
checkStrictly: true,
|
|
|
|
|
label: "name",
|
|
|
|
|
@ -153,6 +335,11 @@ export default {
|
|
|
|
|
categoryId: null,
|
|
|
|
|
brandId: null,
|
|
|
|
|
status: null,
|
|
|
|
|
salesCountMin: null,
|
|
|
|
|
salesCountMax: null,
|
|
|
|
|
marketPriceMin: null,
|
|
|
|
|
marketPriceMax: null,
|
|
|
|
|
tabStatus: null,
|
|
|
|
|
},
|
|
|
|
|
tagIndex: 0,
|
|
|
|
|
};
|
|
|
|
|
@ -182,6 +369,8 @@ export default {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
// 处理查询参数
|
|
|
|
|
let params = {...this.queryParams};
|
|
|
|
|
params.marketPriceMin = this.queryParams.marketPriceMin === null ? null : params.marketPriceMin * 100;
|
|
|
|
|
params.marketPriceMax = this.queryParams.marketPriceMax === null ? null : params.marketPriceMax * 100;
|
|
|
|
|
params.categoryId = this.queryParams.categoryIds[this.queryParams.categoryIds.length - 1];
|
|
|
|
|
this.addBeginAndEndTime(params, this.dateRangeCreateTime, "createTime");
|
|
|
|
|
// 执行查询
|
|
|
|
|
@ -209,9 +398,8 @@ export default {
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.dateRangeCreateTime = [];
|
|
|
|
|
this.$refs.category.$refs.panel.checkedValue = [];//也可以是指定的值,默认返回值是数组,也可以返回单个值
|
|
|
|
|
this.$refs.category.$refs.panel.activePath = [];
|
|
|
|
|
this.$refs.category.$refs.panel.syncActivePath();
|
|
|
|
|
this.queryParams.categoryIds = [];
|
|
|
|
|
this.$refs.category.$refs.panel.activePath = [];
|
|
|
|
|
this.$refs.category.$refs.panel.syncActivePath();
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
@ -244,10 +432,26 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
unitConversion(row, column, cellValue) {
|
|
|
|
|
return this.divide(cellValue, 100);
|
|
|
|
|
},
|
|
|
|
|
// 选中tab
|
|
|
|
|
handleClick(val) {
|
|
|
|
|
if (val.name === "all") {
|
|
|
|
|
this.queryParams.tabStatus = null;
|
|
|
|
|
} else if (val.name === "on") {
|
|
|
|
|
this.queryParams.tabStatus = 0;
|
|
|
|
|
} else if (val.name === "off") {
|
|
|
|
|
this.queryParams.tabStatus = 1;
|
|
|
|
|
} else if (val.name === "remind") {
|
|
|
|
|
this.queryParams.tabStatus = 2;
|
|
|
|
|
} else {
|
|
|
|
|
this.queryParams.tabStatus = null;
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
@ -274,10 +478,12 @@ export default {
|
|
|
|
|
|
|
|
|
|
.product-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.img-height {
|
|
|
|
|
height: 50px;
|
|
|
|
|
width: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|