123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <doc-alert title="【营销】拼团活动" url="https://doc.iocoder.cn/mall/promotion-combination/" />
- <!-- 统计信息展示 -->
- <el-row :gutter="12">
- <el-col :span="6">
- <ContentWrap class="h-[110px] pb-0!">
- <div class="flex items-center">
- <div
- class="h-[50px] w-[50px] flex items-center justify-center"
- style="color: rgb(24 144 255); background-color: rgb(24 144 255 / 10%)"
- >
- <Icon :size="23" icon="fa:user-times" />
- </div>
- <div class="ml-[20px]">
- <div class="mb-8px text-14px text-gray-400">参与人数(个)</div>
- <CountTo
- :duration="2600"
- :end-val="recordSummary.userCount"
- :start-val="0"
- class="text-20px"
- />
- </div>
- </div>
- </ContentWrap>
- </el-col>
- <el-col :span="6">
- <ContentWrap class="h-[110px]">
- <div class="flex items-center">
- <div
- class="h-[50px] w-[50px] flex items-center justify-center"
- style="color: rgb(162 119 255); background-color: rgb(162 119 255 / 10%)"
- >
- <Icon :size="23" icon="fa:user-plus" />
- </div>
- <div class="ml-[20px]">
- <div class="mb-8px text-14px text-gray-400">成团数量(个)</div>
- <CountTo
- :duration="2600"
- :end-val="recordSummary.successCount"
- :start-val="0"
- class="text-20px"
- />
- </div>
- </div>
- </ContentWrap>
- </el-col>
- <el-col :span="6">
- <ContentWrap class="h-[110px]">
- <div class="flex items-center">
- <div
- class="h-[50px] w-[50px] flex items-center justify-center"
- style="color: rgb(162 119 255); background-color: rgb(162 119 255 / 10%)"
- >
- <Icon :size="23" icon="fa:user-plus" />
- </div>
- <div class="ml-[20px]">
- <div class="mb-8px text-14px text-gray-400">虚拟成团(个)</div>
- <CountTo
- :duration="2600"
- :end-val="recordSummary.virtualGroupCount"
- :start-val="0"
- class="text-20px"
- />
- </div>
- </div>
- </ContentWrap>
- </el-col>
- </el-row>
- <!-- 搜索工作栏 -->
- <ContentWrap>
- <el-form
- ref="queryFormRef"
- :inline="true"
- :model="queryParams"
- class="-mb-15px"
- label-width="68px"
- >
- <el-form-item label="创建时间" prop="createTime">
- <el-date-picker
- v-model="queryParams.createTime"
- :shortcuts="defaultShortcuts"
- class="!w-240px"
- end-placeholder="结束日期"
- start-placeholder="开始日期"
- type="daterange"
- value-format="YYYY-MM-DD HH:mm:ss"
- />
- </el-form-item>
- <el-form-item label="拼团状态" prop="status">
- <el-select v-model="queryParams.status" class="!w-240px" clearable placeholder="全部">
- <el-option
- v-for="(dict, index) in getIntDictOptions(
- DICT_TYPE.PROMOTION_COMBINATION_RECORD_STATUS
- )"
- :key="index"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button @click="handleQuery">
- <Icon class="mr-5px" icon="ep:search" />
- 搜索
- </el-button>
- <el-button @click="resetQuery">
- <Icon class="mr-5px" icon="ep:refresh" />
- 重置
- </el-button>
- </el-form-item>
- </el-form>
- </ContentWrap>
- <!-- 分页列表数据展示 -->
- <ContentWrap>
- <el-table v-loading="loading" :data="pageList">
- <el-table-column align="center" label="编号" min-width="50" prop="id" />
- <el-table-column align="center" label="头像" min-width="80" prop="avatar">
- <template #default="scope">
- <el-avatar :src="scope.row.avatar" />
- </template>
- </el-table-column>
- <el-table-column align="center" label="昵称" min-width="100" prop="nickname" />
- <el-table-column align="center" label="开团团长" min-width="100" prop="headId">
- <template #default="{ row }: { row: CombinationRecordApi.CombinationRecordVO }">
- {{
- row.headId ? pageList.find((item) => item.id === row.headId)?.nickname : row.nickname
- }}
- </template>
- </el-table-column>
- <el-table-column
- :formatter="dateFormatter"
- align="center"
- label="开团时间"
- prop="startTime"
- width="180"
- />
- <el-table-column
- align="center"
- label="拼团产品"
- min-width="300"
- prop="type"
- show-overflow-tooltip
- >
- <template #defaul="{ row }">
- <el-image
- :src="row.picUrl"
- class="mr-5px h-30px w-30px align-middle"
- @click="imagePreview(row.picUrl)"
- />
- <span class="align-middle">{{ row.spuName }}</span>
- </template>
- </el-table-column>
- <el-table-column align="center" label="几人团" min-width="100" prop="userSize" />
- <el-table-column align="center" label="参与人数" min-width="100" prop="userCount" />
- <el-table-column
- :formatter="dateFormatter"
- align="center"
- label="参团时间"
- prop="createTime"
- width="180"
- />
- <el-table-column
- :formatter="dateFormatter"
- align="center"
- label="结束时间"
- prop="endTime"
- width="180"
- />
- <el-table-column align="center" label="拼团状态" min-width="150" prop="status">
- <template #default="scope">
- <dict-tag
- :type="DICT_TYPE.PROMOTION_COMBINATION_RECORD_STATUS"
- :value="scope.row.status"
- />
- </template>
- </el-table-column>
- <el-table-column align="center" fixed="right" label="操作">
- <template #default="scope">
- <el-button
- v-hasPermi="['promotion:combination-record:query']"
- link
- type="primary"
- @click="openRecordListDialog(scope.row)"
- >
- 查看拼团
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <Pagination
- v-model:limit="queryParams.pageSize"
- v-model:page="queryParams.pageNo"
- :total="total"
- @pagination="getList"
- />
- </ContentWrap>
- <!-- 表单弹窗 -->
- <CombinationRecordListDialog ref="combinationRecordListRef" />
- </template>
- <script lang="ts" setup>
- import CombinationRecordListDialog from './CombinationRecordListDialog.vue'
- import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
- import { dateFormatter, defaultShortcuts } from '@/utils/formatTime'
- import { createImageViewer } from '@/components/ImageViewer'
- import * as CombinationRecordApi from '@/api/mall/promotion/combination/combinationRecord'
- defineOptions({ name: 'PromotionCombinationRecord' })
- const queryParams = ref({
- status: undefined, // 拼团状态
- createTime: undefined, // 创建时间
- pageSize: 10,
- pageNo: 1
- })
- const queryFormRef = ref() // 搜索的表单
- const combinationRecordListRef = ref() // 查询表单 Ref
- const loading = ref(true) // 列表的加载中
- const total = ref(0) // 总记录数
- const pageList = ref<CombinationRecordApi.CombinationRecordVO[]>([]) // 分页数据
- /** 查询列表 */
- const getList = async () => {
- loading.value = true
- try {
- const data = await CombinationRecordApi.getCombinationRecordPage(queryParams.value)
- pageList.value = data.list as CombinationRecordApi.CombinationRecordVO[]
- total.value = data.total
- } finally {
- loading.value = false
- }
- }
- // 拼团统计数据
- const recordSummary = ref({
- successCount: 0,
- userCount: 0,
- virtualGroupCount: 0
- })
- /** 获得拼团记录统计信息 */
- const getSummary = async () => {
- recordSummary.value = await CombinationRecordApi.getCombinationRecordSummary()
- }
- /** 查看拼团详情 */
- const openRecordListDialog = (row: CombinationRecordApi.CombinationRecordVO) => {
- combinationRecordListRef.value?.open(row.headId || row.id) // 多表达式的原因,团长的 headId 为空,就是自身的情况
- }
- /** 搜索按钮操作 */
- const handleQuery = () => {
- queryParams.value.pageNo = 1
- getList()
- }
- /** 重置按钮操作 */
- const resetQuery = () => {
- queryFormRef.value.resetFields()
- handleQuery()
- }
- /** 产品图预览 */
- const imagePreview = (imgUrl: string) => {
- createImageViewer({
- urlList: [imgUrl]
- })
- }
- /** 初始化 **/
- onMounted(async () => {
- await getSummary()
- await getList()
- })
- </script>
|