|
@@ -0,0 +1,216 @@
|
|
|
+<template>
|
|
|
+ <el-dialog :visible.sync="visible" v-bind="modalOptions">
|
|
|
+ <div>
|
|
|
+ <!-- 查询和其他操作 -->
|
|
|
+ <div class="filter-container">
|
|
|
+ <el-input
|
|
|
+ v-model="listQuery.search" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;"
|
|
|
+ placeholder="请输入商品名称"
|
|
|
+ />
|
|
|
+ <el-select
|
|
|
+ v-model="listQuery.stock" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;margin-left: 10px;" placeholder="请选择库存状态"
|
|
|
+ >
|
|
|
+ <el-option label="全部" :value="null" />
|
|
|
+ <el-option label="有库存" :value="1" />
|
|
|
+ <el-option label="无库存" :value="0" />
|
|
|
+ </el-select>
|
|
|
+ <el-cascader
|
|
|
+ v-model="listQuery.groupId" placeholder="请选择分组类型" :options="groupList"
|
|
|
+ :props="{ checkStrictly: true, expandTrigger: 'hover', label: 'groupName', value: 'shopGroupId', children: 'childs' }"
|
|
|
+ clearable size="mini" class="filter-item" 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>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 查询结果 -->
|
|
|
+ <div>
|
|
|
+ <el-table
|
|
|
+ v-loading="listLoading" height="60vh" element-loading-text="正在查询中。。。" :data="list"
|
|
|
+ v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
|
|
|
+ >
|
|
|
+ <el-table-column align="center" prop="productId" label="商品id" show-overflow-tooltip />
|
|
|
+ <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) ]"
|
|
|
+ />
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" width="100" label="公司图片" prop="productImage">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <div v-if="row.goodsRotationChart && row.goodsRotationChart.split(',').length">
|
|
|
+ <el-image
|
|
|
+ :src="row.goodsRotationChart.split(',')[0]" style="width:40px; height:40px" fit="cover"
|
|
|
+ :preview-src-list="row.goodsRotationChart.split(',')"
|
|
|
+ />
|
|
|
+ <span v-if="row.goodsRotationChart.split(',').length > 1" style="margin-left:8px;">
|
|
|
+ +{{
|
|
|
+ row.goodsRotationChart.split(',').length }}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="productName" label="商品名称" width="220" />
|
|
|
+ <el-table-column align="center" prop="section" label="售价区间" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="100" prop="memberSection" label="会员价" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="100" 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 align="center" width="100" prop="stockNumber" label="库存" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="100" prop="volume" label="销量" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="100" 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 align="center" width="200" prop="reject" label="驳回原因" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" width="100" prop="brandName" label="品牌" show-overflow-tooltip />
|
|
|
+ <el-table-column align="center" min-width="150" prop="createTime" label="创建时间" width="180" />
|
|
|
+ <el-table-column align="center" label="操作" width="120" fixed="right" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-button size="mini" @click="handleDetail(row)">
|
|
|
+ 查看
|
|
|
+ </el-button>
|
|
|
+ <el-button :disabled="row.ifSelection" type="success" size="mini" @click="handleSelectPlatformSelection(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="10"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="total"
|
|
|
+ @size-change="(val) => ((listQuery.pageSize = val) && getList())"
|
|
|
+ @current-change="(val) => ((listQuery.page = val) && getList())"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 查看详情 -->
|
|
|
+ <DetailModal ref="DetailModal" @success="getList" />
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import DetailModal from './DetailModal'
|
|
|
+import { shopSelectionGetPlatformLibrary, shopSelectionSelectShopLibrary } from '@/api/selectionCenter/selectionCenter'
|
|
|
+import { getBrandList, commodityListGetAll } from '@/api/commodity'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'PlatformSelection',
|
|
|
+ components: {
|
|
|
+ DetailModal
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ modalOptions: {
|
|
|
+ closeOnClickModal: false,
|
|
|
+ width: '1120px',
|
|
|
+ title: '平台选品库'
|
|
|
+ },
|
|
|
+ visible: false,
|
|
|
+ list: [],
|
|
|
+ total: 0,
|
|
|
+ listLoading: true,
|
|
|
+ listQuery: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 20,
|
|
|
+ search: '',
|
|
|
+ groupId: '',
|
|
|
+ stock: ''
|
|
|
+ },
|
|
|
+ groupList: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList()
|
|
|
+ this.getGroupDataList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ handleClose() {
|
|
|
+ this.visible = false
|
|
|
+ },
|
|
|
+ async getList() {
|
|
|
+ this.listLoading = true
|
|
|
+ try {
|
|
|
+ const res = await shopSelectionGetPlatformLibrary(this.listQuery)
|
|
|
+ const { data: brandList } = await getBrandList()
|
|
|
+ this.list = res.data.list.map((item) => {
|
|
|
+ item.brandName = (brandList.find((section) => section.id === item.brandId) || { brandName: '' }).brandName
|
|
|
+ return item
|
|
|
+ })
|
|
|
+ this.total = res.data.total
|
|
|
+ } finally {
|
|
|
+ this.listLoading = false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleSearch() {
|
|
|
+ this.listQuery.page = 1
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ handleDetail(row) {
|
|
|
+ this.$refs.DetailModal && this.$refs.DetailModal.handleOpen(row)
|
|
|
+ },
|
|
|
+ async getGroupDataList() {
|
|
|
+ const result = await commodityListGetAll({ search: '', page: 1, pageSize: 9999 })
|
|
|
+ this.groupList = result.data.list
|
|
|
+ },
|
|
|
+ handleOpen(params = {}) {
|
|
|
+ this.visible = true
|
|
|
+ },
|
|
|
+ handleSelectPlatformSelection(row) {
|
|
|
+ this.$confirm('确定选择此项?')
|
|
|
+ .then(async () => {
|
|
|
+ await shopSelectionSelectShopLibrary({ productId: row.productId })
|
|
|
+ this.$message({ message: '加入成功!', type: 'success' })
|
|
|
+ this.handleSearch()
|
|
|
+ })
|
|
|
+ .catch(() => {})
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.filter-container {
|
|
|
+ .filter-item {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.small-padding {
|
|
|
+ .cell {
|
|
|
+ padding-left: 5px;
|
|
|
+ padding-right: 5px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.fixed-width {
|
|
|
+ .el-button--mini {
|
|
|
+ padding: 7px 10px;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|