123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 |
- <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-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'
- }"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" plain @click="search">查询</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" 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 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>
- </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"
- :before-upload="beforeUploadFile" :on-change="fileChange" :on-remove="batchRemove" :on-exceed="exceedFile"
- :on-success="handleSuccess" :on-error="handleError" :file-list="batchFileList"
- >
- <i class="el-icon-upload" />
- <div class="el-upload__text">
- <em>点击上传</em>
- </div>
- <div slot="tip" class="el-upload__tip">只能上传xlsx文件,且不超过10M</div>
- <div slot="tip" class="el-upload__tip">
- 上传前不知道excel模板的,请点击
- <span class="clickMe" @click="poDownload">点我下载模板</span> 去下载
- </div>
- </el-upload>
- <br>
- <el-button size="small" type="primary" @click="uploadFile">立即上传</el-button>
- </div>
- </el-dialog>
- <!-- 设置会员价弹窗 -->
- <el-dialog title="设置会员价" :visible.sync="vipPriceVisible" width="50%" class="vipDialog">
- <el-form ref="form" label-width="80px">
- <el-form-item label="优惠方式">
- <el-radio-group v-model="mode" @change="modeChange">
- <el-radio :label="1">折扣</el-radio>
- <el-radio :label="2">指定价格</el-radio>
- </el-radio-group>
- </el-form-item>
- <div class="priceTable">
- <table>
- <tr>
- <th>规格</th>
- <th>售价</th>
- <th v-for="(item, index) in gradeList" :key="index">
- {{ item }}
- </th>
- </tr>
- <tr v-for="(item, index) in productData" :key="index">
- <td>
- {{ item.value }}
- </td>
- <td>
- {{ item.price }}
- </td>
- <td v-for="(itemJ, indexJ) in item.memberPrices" :key="indexJ" class="td-input">
- <el-input v-model="itemJ.price" maxlength="9" oninput="value=value.replace(/([^\d|\.])/g, '')" /> {{
- mode == 1 ? '折' : '元' }}
- </td>
- </tr>
- </table>
- </div>
- <el-button type="success" class="clearBtn" @click="clearProductMember">清除所有旧会员价</el-button>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="vipPriceVisible = false">取 消</el-button>
- <el-button type="primary" @click="vipPriceSubmit">确 定</el-button>
- </span>
- </el-dialog>
- <!-- 新增/修改商品弹窗 -->
- <el-dialog
- :title="!commId ? '新增商品' : '编辑商品'" :visible.sync="commidyVisible" width="74%" center
- top="10vh"
- :close-on-click-modal="false" @before-close="closeModal" @close="closeModal"
- >
- <CommAdd ref="child" :voucherList="voucherList" :show-tinymce="showTinymce" :product-id="commId" @cancel="cancelForm" />
- </el-dialog>
- </div>
- </template>
- <script>
- import CommAdd from './addCommodity.vue'
- import { getBtnList, getToken } from '@/utils/auth'
- import { uploadUrl } from '@/utils/request'
- import {
- getClassifyGetAll,
- getClassifyDelete,
- getClassifyStart,
- // downloadTemplate, // 导入商品模板表下载
- // importProduct, // 上传商品模板
- getClassify,
- // getProductMembers, // 商品会员价格数据查询
- // setProductMember, // 商品设置会员价
- // clearProductMember, // 清除商品会员价
- // productExport, // 导出商品信息
- getBrandList,
- getVoucher
- } from '@/api/platformProduct'
- export default {
- components: {
- CommAdd
- },
- data() {
- // 这里存放数据
- return {
- showTinymce: false,
- btnList: '',
- activeName: 'first',
- formInline: {
- search: '', // 搜索字段
- shelveState: '', // 上架状态 1-上架 0-不上架 null-全部
- stock: '', // 库存状态 1-有库存 0-无库存 null-全部
- classifyId: '', // 最下级分类id
- page: 1, // 当前页
- pageSize: 10
- },
- batchAdd: false,
- batchFileList: [],
- total: 1,
- tableData: [],
- categoryList: [],
- UploadUrl: uploadUrl,
- headers: {
- 'Authorization-business': getToken()
- },
- vipPriceVisible: false,
- productId: 0,
- mode: 1,
- productData: [],
- gradeList: [],
- commidyVisible: false,
- commId: 0,
- brandList: [],
- voucherList: []
- }
- },
- computed: {
- getBrandName() {
- return (row) => {
- const find = this.brandList.find((item) => item.id === row.brandId)
- if (find) return find.brandName
- return '-'
- }
- }
- },
- created () {
- getVoucher({
- page: 1,
- pageSize: 100,
- voucherId: '',
- voucherName: ''
- }).then(res => { // 获取可选的代金卷,用于创建和修改商品时定义代金卷的使用规则
- this.voucherList = res.data.list
- this.voucherList.push({
- voucherName: '不使用代金卷',
- updateTime: '123123123123',
- ratio: 'xxx',
- enabled: '666',
- id: '0',
- desc: '不支持代金卷'
- })
- })
- },
- mounted() {
- this.getBrandList()
- this.getAll(this.formInline)
- this.queryAllCategory()
- this.btnList = getBtnList()
- },
- // 方法集合
- methods: {
- async getBrandList() {
- const { data } = await getBrandList()
- this.brandList = data
- },
- cancelForm() {
- this.commidyVisible = false
- this.formInline = {
- search: '',
- shelveState: '',
- stock: '',
- classifyId: '',
- page: 1,
- pageSize: 10
- }
- this.getAll(this.formInline)
- this.closeModal()
- },
- closeModal() {
- this.showTinymce = false
- 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)
- },
- // 查询
- search() {
- 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
- }
- this.search()
- },
- // 新增商品
- add() {
- 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() {
- this.$message({
- message: '数据导出中,请勿重复操作!',
- type: 'success'
- })
- const res = await productExport(this.formInline)
- if (!res) { return }
- const blob = new Blob([ res ], { type: 'application/vnd.ms-excel' })
- const fileName = '商品数据明细表.xls'
- if ('download' in document.createElement('a')) {
- // 非IE下载
- const elink = document.createElement('a')
- elink.download = fileName
- elink.href = URL.createObjectURL(blob)
- elink.style.display = 'none'
- document.body.appendChild(elink)
- elink.click()
- URL.revokeObjectURL(elink.href) // 释放URL 对象
- document.body.removeChild(elink)
- } else {
- // IE10+下载
- navigator.msSaveBlob(blob, fileName)
- }
- },
- // 批量导入
- sends() {
- this.batchAdd = true
- this.batchFileList = []
- },
- // 编辑商品
- async edit(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) {
- var _ = this
- this.productId = row.productId
- getProductMembers({ productId: row.productId }).then((res) => {
- if (res.code === '') {
- _.productData = res.data
- if (_.productData && _.productData.length > 0) {
- _.gradeList = []
- const _memberPrices = _.productData[0].memberPrices
- _memberPrices.forEach(function (item, i) {
- _.gradeList.push(item.memberLevelName)
- })
- _.mode = _.productData[0].mode ? _.productData[0].mode : 1
- _.vipPriceVisible = true
- }
- }
- })
- },
- // 设置会员价提交
- vipPriceSubmit() {
- for (let i = 0; i < this.productData.length; i++) {
- this.productData[i].mode = this.mode
- for (let j = 0; j < this.productData[i].memberPrices.length; j++) {
- this.productData[i].memberPrices[j].mode = this.mode
- var _price = this.productData[i].memberPrices[j].price
- if (!_price) {
- this.$message({
- type: 'warning',
- message: '会员价格不能为空!'
- })
- return false
- } else if (this.productData[i].mode === 1) {
- if (_price <= 0 || _price >= 10) {
- this.$message({
- type: 'warning',
- message: '会员折数必须大于0小于10!'
- })
- return false
- }
- } else if (this.productData[i].mode === 2) {
- if (_price > this.productData[i].price) {
- this.$message({
- type: 'warning',
- message: '会员价格不能大于原价!'
- })
- return false
- }
- }
- }
- }
- setProductMember({ productId: this.productId, members: this.productData }).then((res) => {
- if (res.code === '') {
- this.$message({
- type: 'success',
- message: '设置成功!'
- })
- this.getAll(this.formInline)
- 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) => {
- console.log(res, 1111)
- // const content = res
- const blob = new Blob([ res ])
- const fileName = '批量导入商品模板.xlsx'
- if ('download' in document.createElement('a')) {
- // 非IE下载
- const elink = document.createElement('a')
- elink.download = fileName
- elink.style.display = 'none'
- elink.href = URL.createObjectURL(blob)
- document.body.appendChild(elink)
- elink.click()
- URL.revokeObjectURL(elink.href) // 释放URL 对象
- document.body.removeChild(elink)
- } else {
- // IE10+下载
- navigator.msSaveBlob(blob, fileName)
- }
- })
- },
- // 导入
- uploadFile() {
- if (this.batchFileList.length === 0) {
- this.$message.warning('请上传文件')
- } else {
- const formDate = new FormData()
- formDate.append('file', this.batchFileList[0])
- console.log(formDate.get('file'))
- importProduct(formDate).then((res) => {
- console.log(res)
- if (res.code === '') {
- this.$message.success('导入成功')
- this.batchAdd = false
- this.batchFileList = []
- this.getAll(this.formInline)
- }
- })
- }
- },
- // 上传文件之前的钩子, 参数为上传的文件,若返回 false 或者返回 Promise 且被 reject,则停止上传
- beforeUploadFile(file) {
- console.log('before upload')
- console.log(file)
- const extension = file.name.substring(file.name.lastIndexOf('.') + 1)
- const size = file.size / 1024 / 1024
- if (extension !== 'xlsx') {
- this.$message.warning('只能上传后缀是.xlsx的文件')
- }
- if (size > 10) {
- this.$message.warning('文件大小不得超过10M')
- }
- },
- // 文件状态改变时的钩子
- fileChange(file, batchFileList) {
- console.log(file.raw)
- this.batchFileList.push(file.raw)
- console.log(this.batchFileList)
- },
- batchRemove(file, batchFileList) {
- this.batchFileList = []
- },
- // 文件超出个数限制时的钩子
- exceedFile(files, batchFileList) {
- this.$message.warning(`只能选择1个文件`)
- },
- // 文件上传成功时的钩子
- handleSuccess(res, file, batchFileList) {
- this.$message.success('文件上传成功')
- },
- // 文件上传失败时的钩子
- handleError() {
- this.$message.error('文件上传失败')
- },
- // 切换优惠方式清除内容
- modeChange() {
- this.productData.forEach((item) => {
- item.memberPrices.forEach((itemJ) => {
- itemJ.price = ''
- })
- })
- }
- }
- }
- </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;
- tr {
- border-top: 1px solid #EBEEF5;
- 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;
- }
- .el-input {
- width: 100px;
- margin-right: 10px;
- }
- }
- }
- }
- }
- .clearBtn {
- margin-top: 20px;
- }
- }
- </style>
|