|
@@ -1,108 +1,150 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- <div class="pending">
|
|
|
- <!-- 搜索 -->
|
|
|
- <div class="formSearch">
|
|
|
- <el-form :inline="true" :model="formInline" class="demo-form-inline">
|
|
|
- <el-form-item label="商品名称">
|
|
|
- <el-input v-model="formInline.search" maxlength="20" placeholder="请输入商品名称" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="商品型号">
|
|
|
- <el-input v-model="formInline.productMarque" placeholder="请输入商品型号" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="上架状态">
|
|
|
- <el-select v-model="formInline.shelveState" placeholder="请选择上架状态">
|
|
|
- <el-option label="全部" :value="null" />
|
|
|
- <el-option label="上架" value="1" />
|
|
|
- <el-option label="下架" value="0" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="官方分类">
|
|
|
- <el-cascader
|
|
|
- v-model="formInline.classifyId" :options="categoryList" clearable :props="{
|
|
|
- checkStrictly: true,
|
|
|
- expandTrigger: 'hover',
|
|
|
- label: 'categoryName',
|
|
|
- value: 'id',
|
|
|
- children: 'childs'
|
|
|
- }"
|
|
|
+ <div class="app-container">
|
|
|
+ <!-- 查询和其他操作 -->
|
|
|
+ <div class="filter-container">
|
|
|
+ <el-select
|
|
|
+ v-model="listQuery.shelveState" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;"
|
|
|
+ placeholder="请选择上架状态"
|
|
|
+ >
|
|
|
+ <el-option label="全部" :value="null" />
|
|
|
+ <el-option label="上架" :value="1" />
|
|
|
+ <el-option label="下架" :value="0" />
|
|
|
+ </el-select>
|
|
|
+ <el-input
|
|
|
+ v-model="listQuery.search" clearable size="mini" class="filter-item"
|
|
|
+ maxlength="20" style="width: 200px;margin-left: 10px;" placeholder="请输入商品名称"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ v-model="listQuery.productMarque" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;margin-left: 10px;" placeholder="请输入商品型号"
|
|
|
+ />
|
|
|
+ <el-cascader
|
|
|
+ v-model="listQuery.classifyId" placeholder="请选择分类"
|
|
|
+ :options="categoryList" clearable size="mini" class="filter-item"
|
|
|
+ :props="{ checkStrictly: true, expandTrigger: 'hover', label: 'categoryName', value: 'id', children: 'childs' }"
|
|
|
+ style="width: 200px;margin-left: 10px;"
|
|
|
+ />
|
|
|
+ <el-button
|
|
|
+ size="mini" class="filter-item" type="primary" icon="el-icon-search"
|
|
|
+ style="margin-left:10px;"
|
|
|
+ @click="handleSearch"
|
|
|
+ >
|
|
|
+ 查找
|
|
|
+ </el-button>
|
|
|
+ <el-button size="mini" type="info" class="filter-item" @click="handleReset">
|
|
|
+ 重置
|
|
|
+ </el-button>
|
|
|
+ <br />
|
|
|
+ <el-button size="mini" type="primary" icon="el-icon-plus" @click="handleAdd">
|
|
|
+ 新增商品
|
|
|
+ </el-button>
|
|
|
+ <el-button size="mini" type="success" @click="handleSends">
|
|
|
+ 批量导入
|
|
|
+ </el-button>
|
|
|
+ <el-button size="mini" type="warning" @click="handleProductDataExport">
|
|
|
+ 导出商品
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 查询结果 -->
|
|
|
+ <div v-tableHeight>
|
|
|
+ <el-table
|
|
|
+ v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list"
|
|
|
+ v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
|
|
|
+ >
|
|
|
+ <el-table-column align="center" width="100" label="商品ID" prop="productId" fixed="left" />
|
|
|
+ <el-table-column align="center" width="100" label="商品主图" prop="productImage">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-image
|
|
|
+ v-if="row.productImage" lazy :src="common.seamingImgUrl(row.productImage)" style="width:40px;height:40px"
|
|
|
+ fit="cover" :preview-src-list="[ common.seamingImgUrl(row.productImage) ]"
|
|
|
/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" plain @click="handleSearch">查询</el-button>
|
|
|
- <el-button plain @click="clear">重置</el-button>
|
|
|
- <el-button type="success" plain @click="add">新增商品</el-button>
|
|
|
- <el-button type="success" plain @click="sends">批量导入</el-button>
|
|
|
- <el-button type="success" plain @click="productDataExport">导出商品</el-button>
|
|
|
- <!-- <span v-for="(item,index) in btnList" :key="index" class="promissStyle">
|
|
|
- <el-button type="success" plain @click="btnClick(item)">{{ item.permissionName }}</el-button>
|
|
|
- </span> -->
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <!-- 表格 -->
|
|
|
- <div class="tableBox">
|
|
|
- <el-table
|
|
|
- ref="multipleTable" :data="tableData" border
|
|
|
- :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" tooltip-effect="dark" style="width: 100%"
|
|
|
- >
|
|
|
- <el-table-column prop="productId" label="商品id" show-overflow-tooltip />
|
|
|
- <el-table-column label="商品主图" width="150" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- <!-- 修复图片不能正常显示的问题 -->
|
|
|
- <img height="80" width="80" :src="scope.row.productImage.replace(/http:\/\//, 'https://')" alt srcset>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="productName" label="商品名称" width="220" />
|
|
|
- <el-table-column prop="section" label="售价区间" show-overflow-tooltip />
|
|
|
- <el-table-column prop="memberSection" label="会员价" show-overflow-tooltip />
|
|
|
- <el-table-column prop="ifCredit" label="积分兑换" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.ifCredit == 1">允许</span>
|
|
|
- <span v-if="scope.row.ifCredit == 0">不允许</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="stockNumber" label="库存" show-overflow-tooltip />
|
|
|
- <el-table-column prop="volume" label="销量" show-overflow-tooltip />
|
|
|
- <el-table-column prop="volume" label="上架状态" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.shelveState == 0">未上架</span>
|
|
|
- <span v-if="scope.row.shelveState == 1">已上架</span>
|
|
|
- <span v-if="scope.row.shelveState == 2">待审核</span>
|
|
|
- <span v-if="scope.row.shelveState == 3">审核失败</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="reject" label="驳回原因" show-overflow-tooltip />
|
|
|
- <el-table-column :formatter="row => getBrandName(row)" label="品牌" show-overflow-tooltip />
|
|
|
- <el-table-column prop="createTime" label="创建时间" width="180" />
|
|
|
- <el-table-column label="操作" width="200">
|
|
|
- <template slot-scope="scope">
|
|
|
- <div class="btnList">
|
|
|
- <el-button v-if="!scope.row.ifSelection" type="text" @click="handleAddShopSelection(scope.row)">设为选品</el-button>
|
|
|
- <el-button type="text" @click="edit(scope.row)">编辑</el-button>
|
|
|
- <el-button v-if="scope.row.shelveState == 0" type="text" @click="down(scope.row)">上架</el-button>
|
|
|
- <el-button v-if="scope.row.shelveState == 1" type="text" @click="down(scope.row)">下架</el-button>
|
|
|
- <el-button v-if="scope.row.shelveState == 1" type="text" @click="setVipPrice(scope.row)">设置会员价</el-button>
|
|
|
- <el-button v-if="scope.row.shelveState != 1" type="text" @click="del(scope.row)">删除</el-button>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- <div class="fenye">
|
|
|
- <el-pagination
|
|
|
- :current-page="formInline.page" :page-sizes="[10, 20, 50, 100]" :page-size="10"
|
|
|
- layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handleSizeChange"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="section" label="售价区间" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="memberSection" label="会员价" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" label="积分兑换" prop="ifCredit">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag v-if="row.ifCredit === 0">不允许</el-tag>
|
|
|
+ <el-tag v-else-if="row.ifCredit === 1">允许</el-tag>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="stockNumber" label="库存" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="volume" label="销量" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" label="上架状态" prop="shelveState">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag v-if="row.shelveState === 0">未上架</el-tag>
|
|
|
+ <el-tag v-else-if="row.shelveState === 1">已上架</el-tag>
|
|
|
+ <el-tag v-else-if="row.shelveState === 2">待审核</el-tag>
|
|
|
+ <el-tag v-else-if="row.shelveState === 3">审核失败</el-tag>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="reject" label="驳回原因" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" label="品牌" prop="brandId">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag v-if="brandList.find((item) => item.id === row.brandId)">
|
|
|
+ {{ brandList.find((item) => item.id === row.brandId).brandName }}
|
|
|
+ </el-tag>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" width="150" label="创建时间" prop="createTime" />
|
|
|
+ <el-table-column align="center" label="操作" width="220" fixed="right" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-button type="warning" size="mini" @click="handleDetail(row)">
|
|
|
+ 详情
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="row.shelveState === 0" type="text" @click="handleDown(row)">
|
|
|
+ 上架
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="row.shelveState === 1" type="text" @click="handleDown(row)">
|
|
|
+ 下架
|
|
|
+ </el-button>
|
|
|
+ <el-button size="mini" @click="handleEdit(row)">
|
|
|
+ 编辑
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="!row.ifSelection" type="warning" size="mini"
|
|
|
+ @click="handleAddShopSelection(row)"
|
|
|
+ >
|
|
|
+ 设为选品
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="row.shelveState === 1" type="warning" size="mini"
|
|
|
+ @click="setVipPrice(row)"
|
|
|
+ >
|
|
|
+ 设置会员价
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="row.shelveState !== 1"
|
|
|
+ type="danger" size="mini" @click="handleDelete(row)"
|
|
|
+ >
|
|
|
+ 删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div>
|
|
|
+ <el-pagination
|
|
|
+ :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="listQuery.pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="total"
|
|
|
+ @size-change="(val) => ((listQuery.pageSize = val) && getList())"
|
|
|
+ @current-change="(val) => ((listQuery.page = val) && getList())"
|
|
|
+ />
|
|
|
</div>
|
|
|
+
|
|
|
<!-- 批量导入 -->
|
|
|
<el-dialog title="批量导入商品" :visible.sync="batchAdd" :close-on-click-modal="false" center width="400px">
|
|
|
<div class="uploadDialog">
|
|
|
<el-upload
|
|
|
drag :limit="1" :auto-upload="false" accept=".xlsx"
|
|
|
- :headers="headers" :action="UploadUrls"
|
|
|
+ :headers="headers" :action="() => ''"
|
|
|
:before-upload="beforeUploadFile" :on-change="fileChange" :on-remove="batchRemove" :on-exceed="exceedFile"
|
|
|
:on-success="handleSuccess" :on-error="handleError" :file-list="batchFileList"
|
|
|
>
|
|
@@ -170,12 +212,16 @@
|
|
|
@cancel="cancelForm"
|
|
|
/>
|
|
|
</el-dialog>
|
|
|
+
|
|
|
+ <!-- 查看详情 -->
|
|
|
+ <DetailModal ref="DetailModal" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import CommAdd from '@/views/commodity/commoditySystem/addCommodity.vue'
|
|
|
-import { getBtnList, getToken, getShopId } from '@/utils/auth'
|
|
|
+import CommAdd from './components/addCommodity.vue'
|
|
|
+import DetailModal from './components/DetailModal'
|
|
|
+import { getToken, getShopId } from '@/utils/auth'
|
|
|
import { uploadUrl } from '@/utils/request'
|
|
|
import { getAllPlatformVoucher } from '@/api/voucherManagement/voucherOperation'
|
|
|
import {
|
|
@@ -193,18 +239,21 @@ import {
|
|
|
getVoucher
|
|
|
} from '@/api/commodity'
|
|
|
import { shopSelectionAddShopLibrary } from '@/api/selectionCenter/selectionCenter'
|
|
|
+import XeUtils from 'xe-utils'
|
|
|
+
|
|
|
export default {
|
|
|
name: 'CommoditySystem',
|
|
|
components: {
|
|
|
- CommAdd
|
|
|
+ CommAdd,
|
|
|
+ DetailModal
|
|
|
},
|
|
|
data() {
|
|
|
// 这里存放数据
|
|
|
return {
|
|
|
- showTinymce: false,
|
|
|
- btnList: '',
|
|
|
- activeName: 'first',
|
|
|
- formInline: {
|
|
|
+ list: [],
|
|
|
+ total: 0,
|
|
|
+ listLoading: true,
|
|
|
+ listQuery: {
|
|
|
productMarque: '', // 商品型号
|
|
|
search: '', // 搜索字段
|
|
|
shelveState: '', // 上架状态 1-上架 0-不上架 null-全部
|
|
@@ -213,10 +262,11 @@ export default {
|
|
|
page: 1, // 当前页
|
|
|
pageSize: 10
|
|
|
},
|
|
|
+
|
|
|
+ showTinymce: false,
|
|
|
+ activeName: 'first',
|
|
|
batchAdd: false,
|
|
|
batchFileList: [],
|
|
|
- total: 1,
|
|
|
- tableData: [],
|
|
|
categoryList: [],
|
|
|
UploadUrl: uploadUrl,
|
|
|
headers: {
|
|
@@ -233,15 +283,6 @@ export default {
|
|
|
voucherList: []
|
|
|
}
|
|
|
},
|
|
|
- computed: {
|
|
|
- getBrandName() {
|
|
|
- return (row) => {
|
|
|
- const find = this.brandList.find((item) => item.id === row.brandId)
|
|
|
- if (find) return find.brandName
|
|
|
- return '-'
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
async created() {
|
|
|
// getVoucher().then((res) => { // 获取可选的代金券,用于创建和修改商品时定义代金券的使用规则
|
|
|
// this.voucherList = Array.isArray(res.data) ? res.data : typeof res.data === 'number' && res.data ? [ { id: res.data, voucherName: res.data } ] : []
|
|
@@ -265,22 +306,129 @@ export default {
|
|
|
id: 0,
|
|
|
desc: '不支持代金券'
|
|
|
})
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- this.getBrandList()
|
|
|
- this.getAll(this.formInline)
|
|
|
- this.queryAllCategory()
|
|
|
- this.btnList = getBtnList()
|
|
|
+ getBrandList({})
|
|
|
+ .then((res) => {
|
|
|
+ this.brandList = res.data || []
|
|
|
+ })
|
|
|
+ this.getCategoryTreeList()
|
|
|
+ this.getList()
|
|
|
},
|
|
|
// 方法集合
|
|
|
methods: {
|
|
|
- async getBrandList() {
|
|
|
- const { data } = await getBrandList()
|
|
|
- this.brandList = data
|
|
|
+ async getCategoryTreeList() {
|
|
|
+ const res = await getClassify()
|
|
|
+ XeUtils.eachTree(res.data, (item) => {
|
|
|
+ if (Array.isArray(item.childs) && item.childs.length === 0) {
|
|
|
+ item.childs = undefined
|
|
|
+ }
|
|
|
+ }, { children: 'childs' })
|
|
|
+ this.categoryList = res.data
|
|
|
+ },
|
|
|
+ async getList() {
|
|
|
+ this.listLoading = true
|
|
|
+ try {
|
|
|
+ const res = await getClassifyGetAll({
|
|
|
+ ...this.listQuery,
|
|
|
+ classifyId: Array.isArray(this.listQuery.classifyId) && this.listQuery.classifyId.length ? this.listQuery.classifyId[this.listQuery.classifyId.length - 1] : ''
|
|
|
+ })
|
|
|
+ this.list = res.data.list
|
|
|
+ this.total = res.data.total
|
|
|
+ } finally {
|
|
|
+ this.listLoading = false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleSearch() {
|
|
|
+ this.listQuery.page = 1
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ handleReset() {
|
|
|
+ this.listQuery = { productMarque: '', search: '', shelveState: '', stock: '', classifyId: '', page: 1, pageSize: 10 }
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ handleDetail(row) {
|
|
|
+ this.$refs.DetailModal && this.$refs.DetailModal.handleOpen(row)
|
|
|
+ },
|
|
|
+ handleAddShopSelection(row) {
|
|
|
+ this.$confirm('确定添加为选品?')
|
|
|
+ .then(async () => {
|
|
|
+ await shopSelectionAddShopLibrary({ shopId: getShopId(), productId: row.productId })
|
|
|
+ this.$message({ message: '添加成功!', type: 'success' })
|
|
|
+ this.handleSearch()
|
|
|
+ })
|
|
|
+ .catch(() => { })
|
|
|
+ },
|
|
|
+ // 删除商品
|
|
|
+ handleDelete(row) {
|
|
|
+ this.$confirm('选中数据将被永久删除, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ getClassifyDelete({ productId: row.productId }).then((res) => {
|
|
|
+ if (res.code === '') {
|
|
|
+ this.$message({ type: 'success', message: '删除成功!' })
|
|
|
+ this.handleSearch()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => { })
|
|
|
},
|
|
|
+ // 商品上下架
|
|
|
+ async handleDown(row) {
|
|
|
+ console.log(row.shelveState)
|
|
|
+ if (row.shelveState) {
|
|
|
+ console.log(111)
|
|
|
+ const res = await getClassifyStart({
|
|
|
+ productId: row.productId,
|
|
|
+ shelveState: 0
|
|
|
+ })
|
|
|
+ if (res.code === '') {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '下架成功!'
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ const res = await getClassifyStart({
|
|
|
+ productId: row.productId,
|
|
|
+ shelveState: 1
|
|
|
+ })
|
|
|
+ if (res.code === '') {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '上架成功!'
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 清空会员价
|
|
|
+ clearProductMember() {
|
|
|
+ console.log(this.productData, 'this.productData')
|
|
|
+ this.$confirm('该商品所有旧设置的会员价将被清除, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ clearProductMember({ productId: this.productId }).then((res) => {
|
|
|
+ if (res.code === '') {
|
|
|
+ this.productData.map((item) => {
|
|
|
+ item.memberPrices.map((itemChild) => {
|
|
|
+ itemChild.price = null
|
|
|
+ })
|
|
|
+ })
|
|
|
+ this.$message.success('清除成功')
|
|
|
+ // this.vipPriceVisible = false
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
cancelForm() {
|
|
|
this.commidyVisible = false
|
|
|
- this.getAll(this.formInline)
|
|
|
+ this.getList()
|
|
|
this.closeModal()
|
|
|
},
|
|
|
closeModal() {
|
|
@@ -288,55 +436,23 @@ export default {
|
|
|
this.$refs.child.last()
|
|
|
this.$refs.child.reset()
|
|
|
},
|
|
|
- btnClick(id) {
|
|
|
- if (id.permissionName === '批量导入') {
|
|
|
- this.sends()
|
|
|
- } else if (id.permissionName === '新增商品') {
|
|
|
- this.add()
|
|
|
- }
|
|
|
- },
|
|
|
- handleSizeChange(val) {
|
|
|
- this.formInline.pageSize = val
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- handleCurrentChange(val) {
|
|
|
- this.formInline.page = val
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- // 查询
|
|
|
- handleSearch() {
|
|
|
- this.total = 1
|
|
|
- this.formInline.page = 1
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- // 重置
|
|
|
- clear() {
|
|
|
- this.formInline = {
|
|
|
- search: '', // 搜索字段
|
|
|
- shelveState: '', // 上架状态 1-上架 0-不上架 null-全部
|
|
|
- stock: '', // 库存状态 1-有库存 0-无库存 null-全部
|
|
|
- classifyId: '', // 最下级分类id
|
|
|
- page: 1, // 当前页
|
|
|
- pageSize: 10
|
|
|
- }
|
|
|
- },
|
|
|
+
|
|
|
// 新增商品
|
|
|
- add() {
|
|
|
+ handleAdd() {
|
|
|
this.showTinymce = true
|
|
|
if (this.commId) {
|
|
|
this.$refs.child.reset()
|
|
|
}
|
|
|
this.commidyVisible = true
|
|
|
this.commId = 0
|
|
|
- // this.$router.push({ name: 'addCommodity', params: { id: '1' }})
|
|
|
},
|
|
|
// 导出商品
|
|
|
- async productDataExport() {
|
|
|
+ async handleProductDataExport() {
|
|
|
this.$message({
|
|
|
message: '数据导出中,请勿重复操作!',
|
|
|
type: 'success'
|
|
|
})
|
|
|
- const res = await productExport(this.formInline)
|
|
|
+ const res = await productExport(this.listQuery)
|
|
|
if (!res) { return }
|
|
|
const blob = new Blob([ res ], { type: 'application/vnd.ms-excel' })
|
|
|
const fileName = '商品数据明细表.xls'
|
|
@@ -356,34 +472,18 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
// 批量导入
|
|
|
- sends() {
|
|
|
+ handleSends() {
|
|
|
this.batchAdd = true
|
|
|
this.batchFileList = []
|
|
|
},
|
|
|
// 编辑商品
|
|
|
- handleAddShopSelection(row) {
|
|
|
- this.$confirm('确定添加为选品?')
|
|
|
- .then(async () => {
|
|
|
- await shopSelectionAddShopLibrary({ shopId: getShopId(), productId: row.productId })
|
|
|
- this.$message({ message: '添加成功!', type: 'success' })
|
|
|
- this.handleSearch()
|
|
|
- })
|
|
|
- .catch(() => {})
|
|
|
- },
|
|
|
- // 编辑商品
|
|
|
- edit(row) {
|
|
|
+ handleEdit(row) {
|
|
|
this.showTinymce = true
|
|
|
this.commidyVisible = true
|
|
|
this.commId = row.productId
|
|
|
this.$nextTick(() => {
|
|
|
this.$refs.child?.details()
|
|
|
})
|
|
|
- // this.$router.push({
|
|
|
- // name: 'addCommodity',
|
|
|
- // params: { productId: row.productId }
|
|
|
- // })
|
|
|
- // let res = await getClassifyGetById({ productId: row.productId });
|
|
|
- // console.log(res);
|
|
|
},
|
|
|
// 设置会员价
|
|
|
setVipPrice(row) {
|
|
@@ -442,114 +542,11 @@ export default {
|
|
|
type: 'success',
|
|
|
message: '设置成功!'
|
|
|
})
|
|
|
- this.getAll(this.formInline)
|
|
|
+ this.getList()
|
|
|
this.vipPriceVisible = false
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- // 清空会员价
|
|
|
- clearProductMember() {
|
|
|
- console.log(this.productData, 'this.productData')
|
|
|
- this.$confirm('该商品所有旧设置的会员价将被清除, 是否继续?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning'
|
|
|
- }).then(() => {
|
|
|
- clearProductMember({ productId: this.productId }).then((res) => {
|
|
|
- if (res.code === '') {
|
|
|
- this.productData.map((item) => {
|
|
|
- item.memberPrices.map((itemChild) => {
|
|
|
- itemChild.price = null
|
|
|
- })
|
|
|
- })
|
|
|
- this.$message.success('清除成功')
|
|
|
- // this.vipPriceVisible = false
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
- // 删除商品
|
|
|
- del(row) {
|
|
|
- this.$confirm('选中数据将被永久删除, 是否继续?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning'
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- getClassifyDelete({ productId: row.productId }).then((res) => {
|
|
|
- if (res.code === '') {
|
|
|
- this.$message({
|
|
|
- type: 'success',
|
|
|
- message: '删除成功!'
|
|
|
- })
|
|
|
- this.getAll(this.formInline)
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
- .catch(() => { })
|
|
|
- },
|
|
|
- // 商品上下架
|
|
|
- async down(row) {
|
|
|
- console.log(row.shelveState)
|
|
|
- if (row.shelveState) {
|
|
|
- console.log(111)
|
|
|
- const res = await getClassifyStart({
|
|
|
- productId: row.productId,
|
|
|
- shelveState: 0
|
|
|
- })
|
|
|
- if (res.code === '') {
|
|
|
- this.$message({
|
|
|
- type: 'success',
|
|
|
- message: '下架成功!'
|
|
|
- })
|
|
|
- this.getAll(this.formInline)
|
|
|
- }
|
|
|
- } else {
|
|
|
- const res = await getClassifyStart({
|
|
|
- productId: row.productId,
|
|
|
- shelveState: 1
|
|
|
- })
|
|
|
- if (res.code === '') {
|
|
|
- this.$message({
|
|
|
- type: 'success',
|
|
|
- message: '上架成功!'
|
|
|
- })
|
|
|
- this.getAll(this.formInline)
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- // 初始化查询所有数据
|
|
|
- async getAll(formInline) {
|
|
|
- this.formInline.classifyId =
|
|
|
- this.formInline.classifyId[2] ||
|
|
|
- this.formInline.classifyId[1] ||
|
|
|
- this.formInline.classifyId[0] ||
|
|
|
- this.formInline.classifyId
|
|
|
- const res = await getClassifyGetAll(formInline)
|
|
|
- this.total = res.data.total
|
|
|
- this.tableData = res.data.list
|
|
|
- },
|
|
|
- // 初始化查询所有分类
|
|
|
- async queryAllCategory() {
|
|
|
- const res = await getClassify()
|
|
|
- this.categoryList = res.data
|
|
|
- this.handleRemoveEmptyChild(this.categoryList)
|
|
|
- },
|
|
|
- handleRemoveEmptyChild(arr) {
|
|
|
- for (let i = 0; i < arr.length; i++) {
|
|
|
- if (arr[i].childs && Array.isArray(arr[i].childs)) {
|
|
|
- this.handleRemoveEmptyChild(arr[i].childs)
|
|
|
- }
|
|
|
- if (arr[i].childs && Array.isArray(arr[i].childs) && arr[i].childs.length === 0) {
|
|
|
- delete arr[i].childs
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- // *********************导入部分
|
|
|
- UploadUrls() {
|
|
|
- // 因为action参数是必填项,我们使用二次确认进行文件上传时,直接填上传文件的url会因为没有参数导致api报404,所以这里将action设置为一个返回为空的方法就行,避免抛错
|
|
|
- return ''
|
|
|
- },
|
|
|
// 下载模板
|
|
|
poDownload() {
|
|
|
downloadTemplate().then((res) => {
|
|
@@ -587,7 +584,7 @@ export default {
|
|
|
this.$message.success('导入成功')
|
|
|
this.batchAdd = false
|
|
|
this.batchFileList = []
|
|
|
- this.getAll(this.formInline)
|
|
|
+ this.getList()
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -638,83 +635,31 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang='scss' scoped>
|
|
|
-//@import url(); 引入公共css类
|
|
|
-@import url("../../../styles/elDialog.scss");
|
|
|
-
|
|
|
-.pending {
|
|
|
- padding: 30px;
|
|
|
-}
|
|
|
-
|
|
|
-.fenye {
|
|
|
- margin-top: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.clickMe {
|
|
|
- color: #3a68f2;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
-.uploadDialog {
|
|
|
-
|
|
|
- // display: flex;
|
|
|
- // flex-direction: column;
|
|
|
- // justify-content: center;
|
|
|
- >>>.el-upload__tip {
|
|
|
- display: inline-block;
|
|
|
- width: 360px;
|
|
|
- margin: auto;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.vipDialog {
|
|
|
- .priceTable {
|
|
|
- table {
|
|
|
- width: 100%;
|
|
|
- text-align: center;
|
|
|
- border-left: 1px solid #EBEEF5;
|
|
|
- border-bottom: 1px solid #EBEEF5;
|
|
|
- font-size: 14px;
|
|
|
- color: #606266;
|
|
|
- border-collapse: collapse;
|
|
|
+<style lang="scss" scoped>
|
|
|
+.app-container {
|
|
|
+ padding: 20px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
|
|
|
- tr {
|
|
|
- border-top: 1px solid #EBEEF5;
|
|
|
+ .filter-container {
|
|
|
+ .filter-item {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- th {
|
|
|
- padding: 12px 0;
|
|
|
- background: #EEF3FF;
|
|
|
- color: #333;
|
|
|
- border-right: 1px solid #EBEEF5;
|
|
|
- }
|
|
|
-
|
|
|
- td {
|
|
|
- padding: 12px 0;
|
|
|
- border-right: 1px solid #EBEEF5;
|
|
|
-
|
|
|
- &.td-input {
|
|
|
- .el-input {
|
|
|
- width: 80px;
|
|
|
- margin-right: 0;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- &:nth-child(1),
|
|
|
- &:nth-child(2) {
|
|
|
- width: 80px;
|
|
|
- }
|
|
|
+ .small-padding {
|
|
|
+ .cell {
|
|
|
+ padding-left: 5px;
|
|
|
+ padding-right: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- .el-input {
|
|
|
- width: 100px;
|
|
|
- margin-right: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .clearBtn {
|
|
|
- margin-top: 20px;
|
|
|
- }
|
|
|
+ .fixed-width {
|
|
|
+ .el-button--mini {
|
|
|
+ padding: 7px 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|