439 lines
10 KiB
Vue
439 lines
10 KiB
Vue
<template>
|
|
<div class="page">
|
|
<div class="ele-body">
|
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
|
<ele-pro-table
|
|
ref="tableRef"
|
|
row-key="goodsId"
|
|
:columns="columns"
|
|
:datasource="datasource"
|
|
:customRow="customRow"
|
|
v-model:selection="selection"
|
|
:scroll="{ x: 1200 }"
|
|
tool-class="ele-toolbar-form"
|
|
class="sys-org-table"
|
|
>
|
|
<template #toolbar>
|
|
<search
|
|
@search="reload"
|
|
:selection="selection"
|
|
@add="openEdit"
|
|
@remove="removeBatch"
|
|
@batchMove="openMove"
|
|
/>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'goodsName'">
|
|
<a @click="openSpmUrl(`/item`, record, record.goodsId)">{{
|
|
record.goodsName
|
|
}}</a>
|
|
</template>
|
|
<template v-if="column.key === 'type'">
|
|
<a-tag v-if="record.type === 0">虚拟商品</a-tag>
|
|
<a-tag v-if="record.type === 1">实物商品</a-tag>
|
|
</template>
|
|
<template v-if="column.key === 'image'">
|
|
<a-image :src="record.image" :width="80" v-if="!record.image.includes('.mp4')"/>
|
|
<div v-else class="flex justify-center items-center">
|
|
<div @click="open(record.image)" class="relative cursor-pointer w-[80px] h-80px">
|
|
<img
|
|
:src="record.image + '?x-oss-process=video/snapshot,t_2000,f_jpg,w_200,h_200'"
|
|
style="width: 80px; height: 80px"
|
|
/>
|
|
<div class="absolute" style="left: 30px; top: 30px">
|
|
<play-circle-outlined style="font-size: 20px; color:white"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template v-if="column.key === 'salePrice'">
|
|
¥{{ formatNumber(record.salePrice) }}
|
|
</template>
|
|
<template v-if="column.key === 'isShow'">
|
|
<a-tag
|
|
v-if="record.isShow === 1"
|
|
color="green"
|
|
class="cursor-pointer"
|
|
@click="onUpdate(record)"
|
|
>出售中
|
|
</a-tag
|
|
>
|
|
<a-tag
|
|
v-if="record.isShow === 0"
|
|
color="red"
|
|
class="cursor-pointer"
|
|
@click="onUpdate(record)"
|
|
>已下架
|
|
</a-tag
|
|
>
|
|
</template>
|
|
<template v-if="column.key === 'status'">
|
|
<a-tag v-if="record.status === 0" color="green">显示</a-tag>
|
|
<a-tag v-if="record.status === 1" color="red">隐藏</a-tag>
|
|
</template>
|
|
<template v-if="column.key === 'isNew'">
|
|
<a-tag v-if="record.isNew === 1" color="green">新品</a-tag>
|
|
<a-tag v-else color="red">非新品</a-tag>
|
|
</template>
|
|
<template v-if="column.key === 'action'">
|
|
<a-space>
|
|
<a @click="openEdit(record)">修改</a>
|
|
<a-divider type="vertical"/>
|
|
<a-popconfirm
|
|
title="确定要删除此记录吗?"
|
|
@confirm="remove(record)"
|
|
>
|
|
<a class="ele-text-danger">删除</a>
|
|
</a-popconfirm>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</ele-pro-table>
|
|
</a-card>
|
|
|
|
<!-- 编辑弹窗 -->
|
|
<GoodsEdit v-model:visible="showEdit" :data="current" @done="reload"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {createVNode, ref, watch} from 'vue';
|
|
import {message, Modal} from 'ant-design-vue';
|
|
import {ExclamationCircleOutlined, PlayCircleOutlined} from '@ant-design/icons-vue';
|
|
import type {EleProTable} from 'ele-admin-pro';
|
|
import type {
|
|
DatasourceFunction,
|
|
ColumnItem
|
|
} from 'ele-admin-pro/es/ele-pro-table/types';
|
|
import Search from './components/search.vue';
|
|
import GoodsEdit from './components/goodsEdit.vue';
|
|
import {
|
|
pageGoods,
|
|
removeGoods,
|
|
removeBatchGoods,
|
|
updateGoods
|
|
} from '@/api/shop/goods';
|
|
import type {Goods, GoodsParam} from '@/api/shop/goods/model';
|
|
import {formatNumber} from 'ele-admin-pro/es';
|
|
import router from '@/router';
|
|
import {openSpmUrl} from '@/utils/common';
|
|
import {getMerchantId} from '@/utils/merchant';
|
|
|
|
// 表格实例
|
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
|
|
|
// 表格选中数据
|
|
const selection = ref<Goods[]>([]);
|
|
// 当前编辑数据
|
|
const current = ref<Goods | null>(null);
|
|
// 是否显示编辑弹窗
|
|
const showEdit = ref(false);
|
|
// 是否显示批量移动弹窗
|
|
const showMove = ref(false);
|
|
|
|
// 表格数据源
|
|
const datasource: DatasourceFunction = ({
|
|
page,
|
|
limit,
|
|
where,
|
|
orders,
|
|
filters
|
|
}) => {
|
|
if (filters) {
|
|
where.status = filters.status;
|
|
}
|
|
where.merchantId = getMerchantId();
|
|
return pageGoods({
|
|
...where,
|
|
...orders,
|
|
page,
|
|
limit
|
|
});
|
|
};
|
|
|
|
// 表格列配置
|
|
const columns = ref<ColumnItem[]>([
|
|
{
|
|
title: '商品ID',
|
|
dataIndex: 'goodsId',
|
|
key: 'goodsId',
|
|
align: 'center',
|
|
width: 90
|
|
},
|
|
{
|
|
title: '商品名称',
|
|
dataIndex: 'goodsName',
|
|
key: 'goodsName',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '商品图片',
|
|
dataIndex: 'image',
|
|
key: 'image',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '所属门店',
|
|
dataIndex: 'merchantName',
|
|
key: 'merchantName',
|
|
ellipsis: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '供应商',
|
|
dataIndex: 'supplierName',
|
|
ellipsis: true,
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '商品编码',
|
|
dataIndex: 'code',
|
|
key: 'code',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '类型',
|
|
dataIndex: 'type',
|
|
key: 'type',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '分类ID',
|
|
dataIndex: 'categoryId',
|
|
key: 'categoryId',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '一级分类',
|
|
dataIndex: 'categoryParent',
|
|
key: 'categoryParent',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '二级分类',
|
|
dataIndex: 'categoryChildren',
|
|
key: 'categoryChildren',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '多规格',
|
|
dataIndex: 'specs',
|
|
key: 'specs',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '货架',
|
|
dataIndex: 'position',
|
|
key: 'position',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '商品价格',
|
|
dataIndex: 'salePrice',
|
|
key: 'salePrice',
|
|
sorter: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '进货价格',
|
|
dataIndex: 'price',
|
|
key: 'price',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '库存计算方式',
|
|
dataIndex: 'deductStockType',
|
|
key: 'deductStockType',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '销量',
|
|
dataIndex: 'sales',
|
|
key: 'sales',
|
|
sorter: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '库存',
|
|
dataIndex: 'stock',
|
|
key: 'stock',
|
|
sorter: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '商品重量',
|
|
dataIndex: 'goodsWeight',
|
|
key: 'goodsWeight',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '推荐',
|
|
dataIndex: 'recommend',
|
|
key: 'recommend',
|
|
sorter: true,
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '商户ID',
|
|
dataIndex: 'merchantId',
|
|
key: 'merchantId',
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '状态',
|
|
dataIndex: 'isShow',
|
|
key: 'isShow',
|
|
sorter: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '是否新品',
|
|
dataIndex: 'isNew',
|
|
key: 'isNew',
|
|
align: 'center'
|
|
},
|
|
{
|
|
title: '排序号',
|
|
dataIndex: 'sortNumber',
|
|
key: 'sortNumber',
|
|
sorter: true,
|
|
align: 'center',
|
|
hideInTable: true
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
dataIndex: 'createTime',
|
|
key: 'createTime',
|
|
align: 'center',
|
|
width: 120,
|
|
sorter: true
|
|
},
|
|
{
|
|
title: '操作',
|
|
key: 'action',
|
|
width: 180,
|
|
fixed: 'right',
|
|
align: 'center',
|
|
hideInSetting: true
|
|
}
|
|
]);
|
|
|
|
/* 搜索 */
|
|
const reload = (where?: GoodsParam) => {
|
|
selection.value = [];
|
|
tableRef?.value?.reload({where: where});
|
|
};
|
|
|
|
/* 打开编辑弹窗 */
|
|
const openEdit = (row?: Goods) => {
|
|
current.value = row ?? null;
|
|
showEdit.value = true;
|
|
};
|
|
|
|
/* 打开批量移动弹窗 */
|
|
const openMove = () => {
|
|
showMove.value = true;
|
|
};
|
|
|
|
const open = (url?: string) => {
|
|
window.open(url);
|
|
};
|
|
|
|
const onUpdate = (row?: Goods) => {
|
|
const isShow = row?.isShow == 0 ? 1 : 0;
|
|
updateGoods({...row, isShow}).then((msg) => {
|
|
message.success(msg);
|
|
reload();
|
|
});
|
|
};
|
|
|
|
/* 删除单个 */
|
|
const remove = (row: Goods) => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeGoods(row.goodsId)
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
};
|
|
|
|
/* 批量删除 */
|
|
const removeBatch = () => {
|
|
if (!selection.value.length) {
|
|
message.error('请至少选择一条数据');
|
|
return;
|
|
}
|
|
Modal.confirm({
|
|
title: '提示',
|
|
content: '确定要删除选中的记录吗?',
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
maskClosable: true,
|
|
onOk: () => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeBatchGoods(selection.value.map((d) => d.goodsId))
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
/* 自定义行属性 */
|
|
const customRow = (record: Goods) => {
|
|
return {
|
|
// 行点击事件
|
|
onClick: () => {
|
|
// console.log(record);
|
|
},
|
|
// 行双击事件
|
|
onDblclick: () => {
|
|
openEdit(record);
|
|
}
|
|
};
|
|
};
|
|
|
|
watch(
|
|
() => router.currentRoute.value.params.id,
|
|
(id) => {
|
|
if (id && Number(id) > 0) {
|
|
localStorage.setItem('MerchantId', `${id}`);
|
|
}
|
|
reload();
|
|
},
|
|
{immediate: true}
|
|
);
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'Goods'
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|