Files
ipms-sjy/yudao-ui-admin/src/views/mall/product/spu/index.vue

503 lines
18 KiB
Vue
Raw Normal View History

2022-05-18 17:12:03 +08:00
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
2022-05-18 17:12:03 +08:00
<el-form-item label="商品名称" prop="name">
<el-input v-model="queryParams.name" placeholder="请输入商品名称" clearable @keyup.enter.native="handleQuery"/>
2022-05-18 17:12:03 +08:00
</el-form-item>
<el-form-item label="商品编码" prop="code">
2022-09-21 15:57:32 +08:00
<el-input v-model="queryParams.code" placeholder="请输入商品编码" clearable @keyup.enter.native="handleQuery"/>
2022-05-18 17:12:03 +08:00
</el-form-item>
2022-09-21 15:57:32 +08:00
<el-form-item label="商品分类" prop="categoryIds">
<el-cascader v-model="queryParams.categoryIds" placeholder="请输入商品分类"
2022-09-21 15:57:32 +08:00
:options="categoryList" :props="propName" clearable ref="category"/>
2022-05-18 17:12:03 +08:00
</el-form-item>
<el-form-item label="商品品牌" prop="brandId">
<el-select v-model="queryParams.brandId" placeholder="请输入商品品牌" clearable @keyup.enter.native="handleQuery">
2022-09-21 15:57:32 +08:00
<el-option v-for="item in brandList" :key="item.id" :label="item.name" :value="item.id"/>
</el-select>
2022-05-18 17:12:03 +08:00
</el-form-item>
2022-09-21 15:57:32 +08:00
<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>
2022-05-18 17:12:03 +08:00
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
2022-05-18 17:12:03 +08:00
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<!-- 操作工具栏 -->
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
2022-09-21 15:57:32 +08:00
v-hasPermi="['product:spu:create']">新增
</el-button>
2022-05-18 17:12:03 +08:00
</el-col>
2022-09-21 15:57:32 +08:00
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"/>
2022-05-18 17:12:03 +08:00
</el-row>
2022-09-21 15:57:32 +08:00
<el-tabs v-model="activeTabs" type="card" @tab-click="handleClick">
<!-- 全部 -->
<el-tab-pane label="全部" name="all">
<!-- 列表 -->
<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="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
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>
2022-09-21 15:57:32 +08:00
<!-- 仓库中 -->
<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>
2022-09-21 15:57:32 +08:00
<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>
2022-05-18 17:12:03 +08:00
<!-- 分页组件 -->
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
@pagination="getList"/>
2022-05-18 17:12:03 +08:00
2022-09-21 15:57:32 +08:00
<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>
2022-05-18 17:12:03 +08:00
</div>
</template>
<script>
2022-09-21 15:57:32 +08:00
import {deleteSpu, getSpuPage,} from "@/api/mall/product/spu";
import {getProductCategoryList} from "@/api/mall/product/category";
import {getBrandList} from "@/api/mall/product/brand";
2022-08-18 22:38:51 +08:00
import Editor from "@/components/Editor";
import ImageUpload from "@/components/ImageUpload";
2022-09-21 15:57:32 +08:00
import save from "./save";
2022-06-10 17:23:35 +08:00
// 1. TODO @Luowenfeng商品的添加、修改走一个单独的页面不走弹窗https://v5.niuteam.cn/shop/goods/addgoods.html
// 2. TODO
2022-07-06 17:06:19 +08:00
export default {
name: "Spu",
components: {
2022-08-18 22:38:51 +08:00
Editor,
ImageUpload,
save,
2022-07-06 17:06:19 +08:00
},
data() {
return {
2022-09-21 15:57:32 +08:00
activeTabs: "all",
propName: {
checkStrictly: true,
label: "name",
value: "id",
2022-07-06 17:06:19 +08:00
},
brandList: [],
2022-07-06 17:06:19 +08:00
categoryList: [],
// 遮罩层
loading: true,
// 导出遮罩层
exportLoading: false,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 商品spu列表
list: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
2022-08-31 18:52:26 +08:00
// 弹出层参数
2022-09-21 15:57:32 +08:00
dialogObj: {},
2022-07-06 17:06:19 +08:00
dateRangeCreateTime: [],
// 查询参数
queryParams: {
pageNo: 1,
pageSize: 10,
name: null,
code: null,
categoryIds: [],
2022-07-06 17:06:19 +08:00
categoryId: null,
brandId: null,
2022-07-06 17:06:19 +08:00
status: null,
2022-09-21 15:57:32 +08:00
salesCountMin: null,
salesCountMax: null,
marketPriceMin: null,
marketPriceMax: null,
tabStatus: null,
2022-07-06 17:06:19 +08:00
},
tagIndex: 0,
};
},
created() {
this.getList();
this.getListCategory()
this.getListBrand()
2022-07-06 17:06:19 +08:00
},
methods: {
/** 查询分类列表 */
getListCategory() {
// 执行查询
getProductCategoryList().then((response) => {
this.categoryList = this.handleTree(response.data, "id", "parentId");
});
},
/** 查询品牌列表 */
getListBrand() {
// 执行查询
getBrandList().then((response) => {
this.brandList = response.data;
});
},
2022-07-06 17:06:19 +08:00
/** 查询列表 */
getList() {
this.loading = true;
// 处理查询参数
2022-09-21 15:57:32 +08:00
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];
2022-08-18 22:38:51 +08:00
this.addBeginAndEndTime(params, this.dateRangeCreateTime, "createTime");
2022-07-06 17:06:19 +08:00
// 执行查询
2022-08-18 22:38:51 +08:00
getSpuPage(params).then((response) => {
response.data.list.forEach(element => {
2022-09-21 15:57:32 +08:00
element.price = this.divide(element.minPrice, 100) + "~" + this.divide(element.maxPrice, 100)
});
2022-07-06 17:06:19 +08:00
this.list = response.data.list;
this.total = response.data.total;
this.loading = false;
});
},
2022-07-06 17:06:19 +08:00
/** 取消按钮 */
cancel() {
this.open = false;
this.reset();
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRangeCreateTime = [];
this.$refs.category.$refs.panel.checkedValue = [];//也可以是指定的值,默认返回值是数组,也可以返回单个值
2022-09-21 15:57:32 +08:00
this.$refs.category.$refs.panel.activePath = [];
this.$refs.category.$refs.panel.syncActivePath();
2022-07-06 17:06:19 +08:00
this.resetForm("queryForm");
this.handleQuery();
},
/** 新增按钮操作 */
handleAdd() {
2022-09-21 15:57:32 +08:00
this.dialogObj = {};
2022-07-06 17:06:19 +08:00
this.open = true;
this.title = "添加商品spu";
},
/** 修改按钮操作 */
handleUpdate(row) {
2022-08-31 18:52:26 +08:00
this.dialogObj.id = row.id;
this.open = true;
this.title = "修改商品spu";
2022-07-06 17:06:19 +08:00
},
2022-09-21 15:57:32 +08:00
closeDialog() {
this.dialogObj = {};
2022-08-31 18:52:26 +08:00
this.open = false;
this.getList()
2022-07-06 17:06:19 +08:00
},
/** 删除按钮操作 */
handleDelete(row) {
const id = row.id;
2022-08-18 22:38:51 +08:00
this.$modal
.confirm('是否确认删除商品spu编号为"' + id + '"的数据项?')
.then(function () {
return deleteSpu(id);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
2022-09-21 15:57:32 +08:00
.catch(() => {
});
},
2022-09-21 15:57:32 +08:00
unitConversion(row, column, cellValue) {
return this.divide(cellValue, 100);
2022-09-21 15:57:32 +08:00
},
// 选中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();
}
2022-08-18 22:38:51 +08:00
},
2022-07-06 17:06:19 +08:00
};
2022-05-18 17:12:03 +08:00
</script>
2022-06-10 17:23:35 +08:00
<style lang="scss">
2022-07-06 17:06:19 +08:00
.app-container {
.el-tag + .el-tag {
margin-left: 10px;
}
2022-06-10 17:23:35 +08:00
2022-07-06 17:06:19 +08:00
.button-new-tag {
margin-left: 10px;
height: 32px;
line-height: 30px;
padding-top: 0;
padding-bottom: 0;
}
2022-06-10 17:23:35 +08:00
2022-07-06 17:06:19 +08:00
.input-new-tag {
width: 90px;
margin-left: 10px;
vertical-align: bottom;
}
2022-07-01 20:37:41 +08:00
2022-09-21 15:57:32 +08:00
.product-info {
display: flex;
2022-09-21 15:57:32 +08:00
.img-height {
height: 50px;
width: 50px;
}
2022-09-21 15:57:32 +08:00
.message {
margin-left: 10px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
word-break: break-all;
-webkit-box-orient: vertical;
white-space: normal;
overflow: hidden;
height: 50px;
line-height: 25px;
}
2022-06-10 17:23:35 +08:00
}
2022-07-06 17:06:19 +08:00
}
2022-06-10 17:23:35 +08:00
</style>