<!-- 产品列表:用于【商机】【合同】详情中,展示它们关联的产品列表 -->
|
<script lang="ts" setup>
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
import type { CrmProductApi } from '#/api/crm/product';
|
|
import { ref } from 'vue';
|
|
import { erpPriceInputFormatter } from '@vben/utils';
|
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { getBusiness } from '#/api/crm/business';
|
import { getContract } from '#/api/crm/contract';
|
import { BizTypeEnum } from '#/api/crm/permission';
|
|
import { useDetailListColumns } from './data';
|
|
/** 组件入参 */
|
const props = defineProps<{
|
bizId: number;
|
bizType: BizTypeEnum;
|
}>();
|
|
/** 整单折扣 */
|
const discountPercent = ref(0);
|
/** 产品总金额 */
|
const totalProductPrice = ref(0);
|
|
/** 构建产品列表表格 */
|
const [Grid] = useVbenVxeGrid({
|
gridOptions: {
|
columns: useDetailListColumns(props.bizType === BizTypeEnum.CRM_BUSINESS),
|
height: 600,
|
pagerConfig: {
|
enabled: false,
|
},
|
proxyConfig: {
|
ajax: {
|
query: async (_params) => {
|
const data =
|
props.bizType === BizTypeEnum.CRM_BUSINESS
|
? await getBusiness(props.bizId)
|
: await getContract(props.bizId);
|
discountPercent.value = data.discountPercent;
|
totalProductPrice.value = data.totalProductPrice;
|
return data.products;
|
},
|
},
|
},
|
toolbarConfig: {
|
refresh: true,
|
search: true,
|
},
|
keepSource: true,
|
rowConfig: {
|
keyField: 'id',
|
isHover: true,
|
},
|
} as VxeTableGridOptions<CrmProductApi.Product>,
|
});
|
</script>
|
|
<template>
|
<div>
|
<Grid />
|
<div class="flex flex-col items-end justify-end">
|
<span class="ml-4 font-bold text-red-500">
|
{{ `产品总金额:${erpPriceInputFormatter(totalProductPrice)}元` }}
|
</span>
|
<span class="font-bold text-red-500">
|
{{ `整单折扣:${erpPriceInputFormatter(discountPercent)}%` }}
|
</span>
|
<span class="font-bold text-red-500">
|
{{
|
`实际金额:${erpPriceInputFormatter(totalProductPrice * (1 - discountPercent / 100))}元`
|
}}
|
</span>
|
</div>
|
</div>
|
</template>
|