|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<!--工具栏-->
|
|
|
|
<div class="head-container">
|
|
|
|
<!-- 搜索 -->
|
|
|
|
<el-input v-model="query.value" clearable placeholder="输入搜索内容" style="width: 200px;" class="filter-item" @keyup.enter.native="toQuery" />
|
|
|
|
<el-select v-model="query.type" clearable placeholder="类型" class="filter-item" style="width: 130px">
|
|
|
|
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key" />
|
|
|
|
</el-select>
|
|
|
|
<el-button class="filter-item" size="mini" type="success" icon="el-icon-search" @click="toQuery">搜索</el-button>
|
|
|
|
<!-- 新增 -->
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
|
|
|
class="filter-item"
|
|
|
|
size="mini"
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
@click="toQuery"
|
|
|
|
>刷新</el-button>
|
|
|
|
</div>
|
|
|
|
<!--表单组件-->
|
|
|
|
<eForm ref="form" :is-add="isAdd" />
|
|
|
|
<!--表格渲染-->
|
|
|
|
<el-table v-loading="loading" :data="data" size="small" style="width: 100%;">
|
|
|
|
<el-table-column prop="id" label="商品id" />
|
|
|
|
<el-table-column ref="table" prop="image" label="商品图片">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<a :href="scope.row.image" style="color: #42b983" target="_blank"><img :src="scope.row.image" alt="点击打开" class="el-avatar"></a>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="storeName" label="商品名称" />
|
|
|
|
<el-table-column prop="storeCategory.cateName" label="分类名称" />
|
|
|
|
<el-table-column prop="price" label="商品价格" />
|
|
|
|
<el-table-column prop="sales" label="销量" />
|
|
|
|
<el-table-column prop="stock" label="库存" />
|
|
|
|
<el-table-column v-if="checkPermission(['admin','YXSTOREPRODUCT_ALL','YXSTOREPRODUCT_EDIT','YXSTOREPRODUCT_DELETE'])" label="操作" width="150px" align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button v-permission="['admin','YXSTOREPRODUCT_ALL','YXSTOREPRODUCT_EDIT']" size="mini" type="primary" icon="el-icon-edit" @click="edit(scope.row)" />
|
|
|
|
<el-popover
|
|
|
|
:ref="scope.row.id"
|
|
|
|
v-permission="['admin','YXSTOREPRODUCT_ALL','YXSTOREPRODUCT_DELETE']"
|
|
|
|
placement="top"
|
|
|
|
width="180"
|
|
|
|
>
|
|
|
|
<p>确定恢复本条数据吗?</p>
|
|
|
|
<div style="text-align: right; margin: 0">
|
|
|
|
<el-button size="mini" type="text" @click="$refs[scope.row.id].doClose()">取消</el-button>
|
|
|
|
<el-button :loading="delLoading" type="primary" size="mini" @click="subDelete(scope.row.id)">确定</el-button>
|
|
|
|
</div>
|
|
|
|
<el-button slot="reference" type="danger" icon="el-icon-delete" size="mini">恢复</el-button>
|
|
|
|
</el-popover>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<!--分页组件-->
|
|
|
|
<el-pagination
|
|
|
|
:total="total"
|
|
|
|
:current-page="page + 1"
|
|
|
|
style="margin-top: 8px;"
|
|
|
|
layout="total, prev, pager, next, sizes"
|
|
|
|
@size-change="sizeChange"
|
|
|
|
@current-change="pageChange"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import checkPermission from '@/utils/permission'
|
|
|
|
import initData from '@/mixins/crud'
|
|
|
|
import { recovery, onsale } from '@/api/yxStoreProduct'
|
|
|
|
import eForm from './form'
|
|
|
|
export default {
|
|
|
|
components: { eForm },
|
|
|
|
mixins: [initData],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
delLoading: false,
|
|
|
|
visible: false,
|
|
|
|
queryTypeOptions: [
|
|
|
|
{ key: 'storeName', display_name: '商品名称' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.init()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
checkPermission,
|
|
|
|
beforeInit() {
|
|
|
|
this.url = 'api/yxStoreProduct'
|
|
|
|
const sort = 'id,desc'
|
|
|
|
this.params = { page: this.page, size: this.size, sort: sort, isDel: 1 }
|
|
|
|
const query = this.query
|
|
|
|
const type = query.type
|
|
|
|
const value = query.value
|
|
|
|
if (type && value) { this.params[type] = value }
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
subDelete(id) {
|
|
|
|
this.delLoading = true
|
|
|
|
recovery(id).then(res => {
|
|
|
|
this.delLoading = false
|
|
|
|
this.$refs[id].doClose()
|
|
|
|
this.dleChangePage()
|
|
|
|
this.init()
|
|
|
|
this.$notify({
|
|
|
|
title: '恢复成功',
|
|
|
|
type: 'success',
|
|
|
|
duration: 2500
|
|
|
|
})
|
|
|
|
}).catch(err => {
|
|
|
|
this.delLoading = false
|
|
|
|
this.$refs[id].doClose()
|
|
|
|
console.log(err.response.data.message)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
onSale(id, status) {
|
|
|
|
this.$confirm(`确定进行[${status ? '下架' : '上架'}]操作?`, '提示', {
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
type: 'warning'
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
onsale(id, { status: status }).then(({ data }) => {
|
|
|
|
this.$message({
|
|
|
|
message: '操作成功',
|
|
|
|
type: 'success',
|
|
|
|
duration: 1000,
|
|
|
|
onClose: () => {
|
|
|
|
this.init()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => { })
|
|
|
|
},
|
|
|
|
add() {
|
|
|
|
this.isAdd = true
|
|
|
|
this.$refs.form.dialog = true
|
|
|
|
this.$refs.form.getCates()
|
|
|
|
},
|
|
|
|
edit(data) {
|
|
|
|
this.isAdd = false
|
|
|
|
const _this = this.$refs.form
|
|
|
|
_this.getCates()
|
|
|
|
_this.form = {
|
|
|
|
id: data.id,
|
|
|
|
merId: data.merId,
|
|
|
|
image: data.image,
|
|
|
|
sliderImage: data.sliderImage,
|
|
|
|
imageArr: data.image.split(','),
|
|
|
|
sliderImageArr: data.sliderImage.split(','),
|
|
|
|
storeName: data.storeName,
|
|
|
|
storeInfo: data.storeInfo,
|
|
|
|
keyword: data.keyword,
|
|
|
|
barCode: data.barCode,
|
|
|
|
cateId: data.cateId,
|
|
|
|
price: data.price,
|
|
|
|
vipPrice: data.vipPrice,
|
|
|
|
otPrice: data.otPrice,
|
|
|
|
postage: data.postage,
|
|
|
|
unitName: data.unitName,
|
|
|
|
sort: data.sort,
|
|
|
|
sales: data.sales,
|
|
|
|
stock: data.stock,
|
|
|
|
isShow: data.isShow,
|
|
|
|
isHot: data.isHot,
|
|
|
|
isBenefit: data.isBenefit,
|
|
|
|
isBest: data.isBest,
|
|
|
|
isNew: data.isNew,
|
|
|
|
description: data.description,
|
|
|
|
addTime: data.addTime,
|
|
|
|
isPostage: data.isPostage,
|
|
|
|
isDel: data.isDel,
|
|
|
|
merUse: data.merUse,
|
|
|
|
giveIntegral: data.giveIntegral,
|
|
|
|
cost: data.cost,
|
|
|
|
isSeckill: data.isSeckill,
|
|
|
|
isBargain: data.isBargain,
|
|
|
|
isGood: data.isGood,
|
|
|
|
ficti: data.ficti,
|
|
|
|
browse: data.browse,
|
|
|
|
codePath: data.codePath,
|
|
|
|
soureLink: data.soureLink
|
|
|
|
}
|
|
|
|
_this.dialog = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|