拼团记录: 完成 UI 部分

This commit is contained in:
puhui999 2023-10-06 18:40:21 +08:00
parent 869bac2501
commit eee3d0fef5
2 changed files with 155 additions and 3 deletions

View File

@ -24,7 +24,7 @@ export const getDictOptions = (dictType: string) => {
return dictStore.getDictByType(dictType) || []
}
export const getIntDictOptions = (dictType: string) => {
export const getIntDictOptions = (dictType: string): DictDataType[] => {
const dictOption: DictDataType[] = []
const dictOptions: DictDataType[] = getDictOptions(dictType)
dictOptions.forEach((dict: DictDataType) => {

View File

@ -1,5 +1,157 @@
<template>
<div></div>
<!-- 统计信息展示 -->
<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: rgba(24, 144, 255, 0.1)"
>
<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="2200" :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: rgba(162, 119, 255, 0.1)"
>
<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="2200" :start-val="0" class="text-20px" />
</div>
</div>
</ContentWrap>
</el-col>
</el-row>
<ContentWrap>
<!-- 检索条件 -->
<div class="mb-[10px]">
<span class="font-size-[14px]" style="font-weight: bold; color: #606266">时间选择</span>
<el-button-group class="ml-[10px]">
<el-button>全部</el-button>
<el-button>今天</el-button>
<el-button>昨天</el-button>
<el-button>最近七天</el-button>
<el-button>最近30天</el-button>
<el-button>本月</el-button>
<el-button>本年</el-button>
</el-button-group>
</div>
<div class="mb-[10px]">
<span class="font-size-[14px]" style="font-weight: bold; color: #606266">时间区间选择</span>
<el-date-picker
v-model="queryParams.createTime"
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
class="!w-240px"
end-placeholder="结束日期"
start-placeholder="开始日期"
type="daterange"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
<div class="mb-[10px]">
<span class="font-size-[14px]" style="font-weight: bold; color: #606266">拼团状态</span>
<el-select v-model="queryParams.status" class="!w-240px" clearable placeholder="全部">
<el-option
v-for="(dict, index) in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key="index"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</div>
<!-- 分页列表数据展示 -->
<el-table v-loading="loading" :data="pageList">
<el-table-column align="center" label="编号" prop="id" />
<!-- TODO 是否需要做一个点击用户头像跳转或查看用户信息的功能 -->
<el-table-column align="center" label="头像" prop="avatars" />
<el-table-column align="center" label="开团团长" prop="avatar" />
<el-table-column
:formatter="dateFormatter"
align="center"
label="开团时间"
prop="startTime"
width="180"
/>
<el-table-column
align="center"
label="拼团商品"
prop="type"
show-overflow-tooltip
width="300"
>
<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="几人团" prop="userSize" />
<el-table-column align="center" label="参与人数" prop="userCount" />
<el-table-column
:formatter="dateFormatter"
align="center"
label="结束时间"
prop="endTime"
width="180"
/>
<el-table-column align="center" label="拼团状态" prop="status">
<template #default="scope">
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
</template>
</el-table-column>
<el-table-column align="center" label="操作">
<template #default></template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
v-model:limit="queryParams.pageSize"
v-model:page="queryParams.pageNo"
:total="total"
@pagination="getList"
/>
</ContentWrap>
</template>
<script lang="ts" name="CombinationRecord" setup></script>
<script lang="ts" setup>
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import { createImageViewer } from '@/components/ImageViewer'
defineOptions({ name: 'CombinationRecord' })
const queryParams = ref({
status: undefined, //
createTime: undefined, //
pageSize: 10,
pageNo: 1
})
const loading = ref(false) //
const total = ref(0) //
const pageList = ref([]) //
/**
* 获取分页数据
*/
const getList = async () => {}
/** 商品图预览 */
const imagePreview = (imgUrl: string) => {
createImageViewer({
urlList: [imgUrl]
})
}
</script>