464 lines
15 KiB
Vue
464 lines
15 KiB
Vue
<template>
|
||
<div class="divBox relative">
|
||
<el-card class="box-card">
|
||
<div slot="header" class="clearfix">
|
||
<el-tabs v-model="tableFrom.type" @tab-click="seachList" v-if="checkPermi(['admin:product:tabs:headers'])">
|
||
<el-tab-pane :label="item.name +'('+item.count +')' " :name="item.type.toString()" v-for="(item,index) in headeNum" :key="index"/>
|
||
</el-tabs>
|
||
<div class="container mt-1">
|
||
<el-form inline size="small">
|
||
<el-form-item label="商品分类:">
|
||
<el-cascader v-model="tableFrom.cateId" :options="merCateList" :props="props" clearable class="selWidth mr20" @change="seachList" size="small"/>
|
||
</el-form-item>
|
||
<el-form-item label="商品搜索:">
|
||
<el-input v-model="tableFrom.keywords" placeholder="请输入商品名称,关键字,商品ID" class="selWidth" size="small" clearable>
|
||
<el-button slot="append" icon="el-icon-search" @click="seachList" size="small" v-hasPermi="['admin:product:list']" />
|
||
</el-input>
|
||
</el-form-item>
|
||
</el-form>
|
||
</div>
|
||
<router-link :to=" { path:'/store/list/creatProduct' } ">
|
||
<el-button size="small" type="primary" class="mr10" v-hasPermi="['admin:product:save']">添加商品</el-button>
|
||
</router-link>
|
||
<!-- <el-button size="small" type="success" class="mr10" @click="onCopy" v-hasPermi="['admin:product:save']">商品采集</el-button>-->
|
||
<el-button size="small" type="success" class="mr10" @click="importExcel">商品导入</el-button>
|
||
<el-button size="small" icon="el-icon-upload2" @click="exports" v-hasPermi="['admin:export:excel:product']">导出</el-button>
|
||
</div>
|
||
<el-table
|
||
v-loading="listLoading"
|
||
:data="tableData.data"
|
||
style="width: 100%"
|
||
size="mini"
|
||
:highlight-current-row="true"
|
||
:header-cell-style=" {fontWeight:'bold'}"
|
||
>
|
||
<el-table-column type="expand">
|
||
<template slot-scope="props">
|
||
<el-form label-position="left" inline class="demo-table-expand">
|
||
<el-form-item label="商品分类:">
|
||
<span v-for="(item, index) in props.row.cateValues.split(',')" :key="index" class="mr10">{{ item }}</span>
|
||
</el-form-item>
|
||
<el-form-item label="市场价:">
|
||
<span>{{ props.row.otPrice }}</span>
|
||
</el-form-item>
|
||
<el-form-item label="成本价:">
|
||
<span>{{ props.row.cost }}</span>
|
||
</el-form-item>
|
||
<el-form-item label="收藏:">
|
||
<span>{{ props.row.collectCount }}</span>
|
||
</el-form-item>
|
||
<el-form-item label="虚拟销量:">
|
||
<span>{{ props.row.ficti }}</span>
|
||
</el-form-item>
|
||
</el-form>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
prop="id"
|
||
label="ID"
|
||
min-width="50"
|
||
/>
|
||
<el-table-column label="商品图" min-width="80">
|
||
<template slot-scope="scope">
|
||
<div class="demo-image__preview">
|
||
<el-image
|
||
style="width: 36px; height: 36px"
|
||
:src="scope.row.image"
|
||
:preview-src-list="[scope.row.image]"
|
||
/>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="商品名称"
|
||
prop="storeName"
|
||
min-width="300"
|
||
:show-overflow-tooltip="true">
|
||
</el-table-column>
|
||
<el-table-column
|
||
prop="price"
|
||
label="商品售价"
|
||
min-width="90"
|
||
align="center"
|
||
/>
|
||
<el-table-column
|
||
prop="sales"
|
||
label="销量"
|
||
min-width="90"
|
||
align="center"
|
||
/>
|
||
<el-table-column
|
||
prop="stock"
|
||
label="库存"
|
||
min-width="90"
|
||
align="center"
|
||
/>
|
||
<el-table-column
|
||
prop="sort"
|
||
label="排序"
|
||
min-width="70"
|
||
align="center"
|
||
/>
|
||
|
||
<el-table-column
|
||
label="添加时间"
|
||
min-width="120"
|
||
align="center"
|
||
>
|
||
<template slot-scope="scope">
|
||
<span>{{scope.row.addTime | formatDate}}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
label="状态"
|
||
min-width="80"
|
||
fixed="right"
|
||
>
|
||
<template slot-scope="scope"
|
||
v-if="checkPermi(['admin:product:up','admin:product:down'])">
|
||
<el-switch
|
||
:disabled="Number(tableFrom.type) > 2"
|
||
v-model="scope.row.isShow"
|
||
:active-value="true"
|
||
:inactive-value="false"
|
||
active-text="上架"
|
||
inactive-text="下架"
|
||
@change="onchangeIsShow(scope.row)"
|
||
/>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="操作" min-width="150" fixed="right" align="center">
|
||
<template slot-scope="scope">
|
||
<router-link :to="{path: '/store/list/creatProduct/' + scope.row.id + '/1'}">
|
||
<el-button type="text" size="small" class="mr10" v-hasPermi="['admin:product:info']">详情</el-button>
|
||
</router-link>
|
||
<router-link :to="{path: '/store/list/creatProduct/' + scope.row.id}">
|
||
<el-button type="text" size="small" class="mr10" v-if="tableFrom.type !== '5' && tableFrom.type !== '1'" v-hasPermi="['admin:product:update']">编辑</el-button>
|
||
</router-link>
|
||
<el-button v-if="tableFrom.type === '5'" type="text" size="small" @click="handleRestore(scope.row.id, scope.$index)" v-hasPermi="['admin:product:restore']">恢复商品</el-button>
|
||
<el-button type="text" size="small" @click="handleDelete(scope.row.id, tableFrom.type)" v-hasPermi="['admin:product:delete']">{{ tableFrom.type === '5' ? '删除' : '加入回收站' }}</el-button>
|
||
<router-link :to="{path: '/store/problem/' + scope.row.id + ''}">
|
||
<el-button type="text" size="small" class="mr10" v-hasPermi="['admin:problem:info']">常见问题</el-button>
|
||
</router-link>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
<div class="block">
|
||
<el-pagination
|
||
:page-sizes="[10, 20, 40, 60]"
|
||
:page-size="tableFrom.limit"
|
||
:current-page="tableFrom.page"
|
||
layout="total, sizes, prev, pager, next, jumper"
|
||
:total="tableData.total"
|
||
@size-change="handleSizeChange"
|
||
@current-change="pageChange"
|
||
/>
|
||
</div>
|
||
</el-card>
|
||
|
||
<el-dialog
|
||
title="复制淘宝、天猫、京东、苏宁"
|
||
:visible.sync="dialogVisible"
|
||
:close-on-click-modal="false"
|
||
width="1200px"
|
||
class="taoBaoModal"
|
||
:before-close="handleClose">
|
||
<tao-bao v-if="dialogVisible" @handleCloseMod="handleCloseMod"></tao-bao>
|
||
</el-dialog>
|
||
|
||
<el-dialog
|
||
:visible.sync="importVisible"
|
||
title="导入文件"
|
||
:close-on-click-modal="false"
|
||
width="1200px"
|
||
@close="uploadExcelClose">
|
||
<el-row type="flex" justify="center" align="centre">
|
||
<el-col :span="18">
|
||
<upload-excel-component :on-success="handleSuccess" :before-upload="beforeUpload" ref="excel-upload-input"/>
|
||
</el-col>
|
||
<el-col :span="2" style="line-height: 160px">
|
||
<el-button plain type="primary" @click="excelUpload" :disabled="excelUploadState">上传到服务器</el-button>
|
||
</el-col>
|
||
</el-row>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import {
|
||
productLstApi,
|
||
productDeleteApi,
|
||
categoryApi,
|
||
putOnShellApi,
|
||
offShellApi,
|
||
productHeadersApi,
|
||
productExportApi,
|
||
restoreApi,
|
||
productExcelApi,
|
||
importExcelApi,
|
||
replyListApi, productDetailApi
|
||
} from '@/api/store'
|
||
import { getToken } from '@/utils/auth'
|
||
import taoBao from './taoBao'
|
||
import UploadExcelComponent from '@/components/UploadExcel/index.vue'
|
||
import { checkPermi } from "@/utils/permission";
|
||
import CreatTemplates from "@/views/systemSetting/logistics/shippingTemplates/creatTemplates.vue";
|
||
import edit from "@/components/Category/edit.vue";
|
||
import tableHeader from "element-ui/packages/table/src/table-header";
|
||
import {fileImageApi} from "@/api/systemSetting";
|
||
import AddOrUpdate from "@/views/home/add-and-update.vue"; // 权限判断函数
|
||
export default {
|
||
name: 'ProductList',
|
||
computed: {
|
||
tableHeader() {
|
||
return tableHeader
|
||
}
|
||
},
|
||
components: {AddOrUpdate, edit, CreatTemplates, taoBao, UploadExcelComponent },
|
||
data() {
|
||
return {
|
||
props: {
|
||
children: 'child',
|
||
label: 'name',
|
||
value: 'id',
|
||
emitPath: false
|
||
},
|
||
// roterPre: roterPre,
|
||
headeNum: [],
|
||
listLoading: true,
|
||
tableData: {
|
||
data: [],
|
||
total: 0
|
||
},
|
||
tableFrom: {
|
||
page: 1,
|
||
limit: 10,
|
||
cateId: '',
|
||
keywords: '',
|
||
type: '1'
|
||
},
|
||
excelTableData: [],
|
||
excelTableHeader: [],
|
||
excelUploadState: true,
|
||
excelUploadFile: '',
|
||
categoryList: [],
|
||
merCateList: [],
|
||
objectUrl: process.env.VUE_APP_BASE_API,
|
||
dialogVisible: false,
|
||
importVisible: false,
|
||
problemVisible: false,
|
||
}
|
||
},
|
||
mounted() {
|
||
this.goodHeade()
|
||
this.getList()
|
||
this.getCategorySelect()
|
||
this.checkedCities = this.$cache.local.has('goods_stroge') ? this.$cache.local.getJSON('goods_stroge') : this.checkedCities;
|
||
},
|
||
methods: {
|
||
checkPermi,
|
||
handleRestore(id) {
|
||
this.$modalSure("恢复商品").then(() => {
|
||
restoreApi(id)
|
||
.then((res) => {
|
||
this.$message.success('操作成功');
|
||
this.goodHeade();
|
||
this.getList();
|
||
})
|
||
});
|
||
},
|
||
beforeUpload(file) {
|
||
this.excelUploadState = false;
|
||
this.excelUploadFile = file;
|
||
const isLt1M = file.size / 1024 / 1024 < 1;
|
||
if (isLt1M) { return true; }
|
||
this.$message.warning("上传文件不能大于1M");
|
||
this.excelUploadState = true;
|
||
return false;
|
||
},
|
||
handleSuccess({ results, header }) {
|
||
this.excelTableData = results;
|
||
this.excelTableHeader = header;
|
||
},
|
||
async excelUpload() {
|
||
if (this.excelTableData.length === 0 || this.excelTableHeader.length === 0) {
|
||
this.$message.error("数据为空,不能上传");
|
||
}
|
||
let loading = this.$loading({
|
||
lock: true,
|
||
text: "上传中,请稍候...",
|
||
spinner: "el-icon-loading",
|
||
background: "rgba(0, 0, 0, 0.7)",
|
||
});
|
||
const formData = new FormData();
|
||
formData.append("multipart", this.excelUploadFile);
|
||
importExcelApi(formData).then(res => {
|
||
loading.close();
|
||
this.$message.success("上传成功");
|
||
this.tableData.page = 1;
|
||
this.goodHeade()
|
||
this.getList()
|
||
this.importVisible = false;
|
||
}).catch(() => {
|
||
loading.close();
|
||
})
|
||
},
|
||
seachList() {
|
||
this.tableFrom.page = 1
|
||
this.getList()
|
||
},
|
||
handleClose() {
|
||
this.dialogVisible = false
|
||
},
|
||
uploadExcelClose() {
|
||
this.importVisible = false
|
||
this.excelUploadState = true;
|
||
this.$refs['excel-upload-input'].resetData();
|
||
},
|
||
handleCloseMod(item){
|
||
this.dialogVisible = item
|
||
this.goodHeade();
|
||
this.getList();
|
||
},
|
||
// 复制
|
||
onCopy(){
|
||
this.dialogVisible = true
|
||
},
|
||
// 点击商品图
|
||
modalPicTap (tit, num, i,status) {
|
||
const _this = this;
|
||
if(_this.isDisabled) return;
|
||
this.$modalUpload(function(img) {
|
||
if(tit==='1'&& !num){
|
||
_this.formValidate.image = img[0].sattDir
|
||
_this.OneattrValue[0].image = img[0].sattDir
|
||
}
|
||
if(tit==='2'&& !num){
|
||
if(img.length>10) return this.$message.warning("最多选择10张图片!");
|
||
if(img.length + _this.formValidate.sliderImages.length > 10) return this.$message.warning("最多选择10张图片!");
|
||
img.map((item) => {
|
||
_this.formValidate.sliderImages.push(item.sattDir)
|
||
});
|
||
}
|
||
if(tit==='1'&& num === 'dan' ){
|
||
_this.OneattrValue[0].image = img[0].sattDir
|
||
}
|
||
if(tit==='1'&& num === 'duo' ){
|
||
_this.ManyAttrValue[i].image = img[0].sattDir
|
||
}
|
||
if(tit==='1'&& num === 'pi' ){
|
||
_this.oneFormBatch[0].image = img[0].sattDir
|
||
}
|
||
},tit, 'content')
|
||
},
|
||
// 导出
|
||
exports () {
|
||
productExcelApi({cateId:this.tableFrom.cateId,keywords: this.tableFrom.keywords, type:this.tableFrom.type}).then((res) => {
|
||
window.location.href = res.fileName;
|
||
})
|
||
},
|
||
importExcel() {
|
||
this.importVisible = true
|
||
},
|
||
// 获取商品表单头数量
|
||
goodHeade () {
|
||
productHeadersApi().then(res => {
|
||
this.headeNum = res
|
||
}).catch(res => {
|
||
this.$message.error(res.message);
|
||
})
|
||
},
|
||
// 商户分类;
|
||
getCategorySelect() {
|
||
categoryApi({ status: -1, type: 1 }).then(res => {
|
||
this.merCateList = res
|
||
}).catch(res => {
|
||
this.$message.error(res.message)
|
||
})
|
||
},
|
||
// 列表
|
||
getList() {
|
||
this.listLoading = true
|
||
productLstApi(this.tableFrom).then(res => {
|
||
this.tableData.data = res.list
|
||
this.tableData.total = res.total
|
||
this.listLoading = false
|
||
}).catch(res => {
|
||
this.listLoading = false
|
||
this.$message.error(res.message)
|
||
})
|
||
},
|
||
pageChange(page) {
|
||
this.tableFrom.page = page
|
||
this.getList()
|
||
},
|
||
handleSizeChange(val) {
|
||
this.tableFrom.limit = val
|
||
this.getList()
|
||
},
|
||
// 删除
|
||
handleDelete(id, type) {
|
||
this.$modalSure(`删除 id 为 ${id} 的商品`).then(() => {
|
||
const deleteFlag = type == 5 ? 'delete':'recycle';
|
||
productDeleteApi(id,deleteFlag).then(() => {
|
||
this.$message.success('删除成功')
|
||
this.getList()
|
||
this.goodHeade();
|
||
})
|
||
})
|
||
},
|
||
productProblem(id) {
|
||
this.problemVisible = true
|
||
this.$nextTick(() => {
|
||
this.$refs.problemList.init(id)
|
||
})
|
||
},
|
||
onchangeIsShow(row) {
|
||
row.isShow
|
||
? putOnShellApi( row.id ).then(() => {
|
||
this.$message.success('上架成功')
|
||
this.getList()
|
||
this.goodHeade();
|
||
}).catch(()=>{
|
||
row.isShow = !row.isShow
|
||
}) : offShellApi(row.id).then(() => {
|
||
this.$message.success('下架成功')
|
||
this.getList()
|
||
this.goodHeade();
|
||
}).catch(()=>{
|
||
row.isShow = !row.isShow
|
||
})
|
||
},
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.el-table__body {
|
||
width: 100%;
|
||
table-layout: fixed !important;
|
||
}
|
||
.taoBaoModal{
|
||
// z-index: 3333 !important;
|
||
}
|
||
.demo-table-expand{
|
||
::v-deep label{
|
||
width: 82px;
|
||
}
|
||
}
|
||
.demo-table-expand{
|
||
::v-deep .el-form-item__content{
|
||
width: 77%;
|
||
}
|
||
}
|
||
.selWidth{
|
||
width: 350px !important;
|
||
}
|
||
.seachTiele{
|
||
line-height: 30px;
|
||
}
|
||
.relative{
|
||
position: relative;
|
||
}
|
||
</style>
|