更新自定义页面积分页面 #37
@ -4,12 +4,13 @@ NODE_ENV=development
|
|||||||
VITE_DEV=true
|
VITE_DEV=true
|
||||||
|
|
||||||
# 请求路径
|
# 请求路径
|
||||||
VITE_BASE_URL='http://localhost:6127'
|
#VITE_BASE_URL='https://zysc.fjptzykj.com'
|
||||||
|
VITE_BASE_URL='http://192.168.1.12:6127'
|
||||||
|
|
||||||
# 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务
|
# 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务
|
||||||
VITE_UPLOAD_TYPE=server
|
VITE_UPLOAD_TYPE=server
|
||||||
# 上传路径
|
# 上传路径
|
||||||
VITE_UPLOAD_URL='http://localhost:6127/admin-api/infra/file/upload'
|
VITE_UPLOAD_URL='https://zysc.fjptzykj.com/admin-api/infra/file/upload'
|
||||||
|
|
||||||
# 接口地址
|
# 接口地址
|
||||||
VITE_API_URL=/admin-api
|
VITE_API_URL=/admin-api
|
||||||
|
91
yudao-admin-vue3/src/api/mall/promotion/point/index.ts
Normal file
91
yudao-admin-vue3/src/api/mall/promotion/point/index.ts
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
import request from '@/config/axios'
|
||||||
|
import { Sku, Spu } from '@/api/mall/product/spu' // 积分商城活动 VO
|
||||||
|
|
||||||
|
// 积分商城活动 VO
|
||||||
|
export interface PointActivityVO {
|
||||||
|
id: number // 积分商城活动编号
|
||||||
|
spuId: number // 积分商城活动商品
|
||||||
|
status: number // 活动状态
|
||||||
|
stock: number // 积分商城活动库存
|
||||||
|
totalStock: number // 积分商城活动总库存
|
||||||
|
remark?: string // 备注
|
||||||
|
sort: number // 排序
|
||||||
|
createTime: string // 创建时间
|
||||||
|
products: PointProductVO[] // 积分商城商品
|
||||||
|
|
||||||
|
// ========== 商品字段 ==========
|
||||||
|
spuName: string // 商品名称
|
||||||
|
picUrl: string // 商品主图
|
||||||
|
marketPrice: number // 商品市场价,单位:分
|
||||||
|
|
||||||
|
//======================= 显示所需兑换积分最少的 sku 信息 =======================
|
||||||
|
point: number // 兑换积分
|
||||||
|
price: number // 兑换金额,单位:分
|
||||||
|
}
|
||||||
|
|
||||||
|
// 秒杀活动所需属性
|
||||||
|
export interface PointProductVO {
|
||||||
|
id?: number // 积分商城商品编号
|
||||||
|
activityId?: number // 积分商城活动 id
|
||||||
|
spuId?: number // 商品 SPU 编号
|
||||||
|
skuId: number // 商品 SKU 编号
|
||||||
|
count: number // 可兑换数量
|
||||||
|
point: number // 兑换积分
|
||||||
|
price: number // 兑换金额,单位:分
|
||||||
|
stock: number // 积分商城商品库存
|
||||||
|
activityStatus?: number // 积分商城商品状态
|
||||||
|
}
|
||||||
|
|
||||||
|
// 扩展 Sku 配置
|
||||||
|
export type SkuExtension = Sku & {
|
||||||
|
productConfig: PointProductVO
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SpuExtension extends Spu {
|
||||||
|
skus: SkuExtension[] // 重写类型
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SpuExtension0 extends Spu {
|
||||||
|
pointStock: number // 积分商城活动库存
|
||||||
|
pointTotalStock: number // 积分商城活动总库存
|
||||||
|
point: number // 兑换积分
|
||||||
|
pointPrice: number // 兑换金额,单位:分
|
||||||
|
}
|
||||||
|
|
||||||
|
// 积分商城活动 API
|
||||||
|
export const PointActivityApi = {
|
||||||
|
// 查询积分商城活动分页
|
||||||
|
getPointActivityPage: async (params: any) => {
|
||||||
|
return await request.get({ url: `/promotion/point-activity/page`, params })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 查询积分商城活动详情
|
||||||
|
getPointActivity: async (id: number) => {
|
||||||
|
return await request.get({ url: `/promotion/point-activity/get?id=` + id })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 查询积分商城活动列表,基于活动编号数组
|
||||||
|
getPointActivityListByIds: async (ids: number[]) => {
|
||||||
|
return request.get({ url: `/promotion/point-activity/list-by-ids?ids=${ids}` })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增积分商城活动
|
||||||
|
createPointActivity: async (data: PointActivityVO) => {
|
||||||
|
return await request.post({ url: `/promotion/point-activity/create`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 修改积分商城活动
|
||||||
|
updatePointActivity: async (data: PointActivityVO) => {
|
||||||
|
return await request.put({ url: `/promotion/point-activity/update`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除积分商城活动
|
||||||
|
deletePointActivity: async (id: number) => {
|
||||||
|
return await request.delete({ url: `/promotion/point-activity/delete?id=` + id })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 关闭秒杀活动
|
||||||
|
closePointActivity: async (id: number) => {
|
||||||
|
return await request.put({ url: '/promotion/point-activity/close?id=' + id })
|
||||||
|
}
|
||||||
|
}
|
@ -121,3 +121,10 @@ export const getMemberRegisterCountList = (
|
|||||||
params: { times: [formatDate(beginTime), formatDate(endTime)] }
|
params: { times: [formatDate(beginTime), formatDate(endTime)] }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取自定义页面数据
|
||||||
|
export const getDiyPage = () => {
|
||||||
|
return request.get({
|
||||||
|
url: '/promotion/diy-page/getDiyPage'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -1,210 +1,215 @@
|
|||||||
<template>
|
<template>
|
||||||
<Dialog v-model="dialogVisible" title="选择链接" width="65%">
|
<Dialog v-model="dialogVisible" title="选择链接" width="65%">
|
||||||
<div class="h-500px flex gap-8px">
|
<div class="h-500px flex gap-8px">
|
||||||
<!-- 左侧分组列表 -->
|
<!-- 左侧分组列表 -->
|
||||||
<el-scrollbar wrap-class="h-full" ref="groupScrollbar" view-class="flex flex-col">
|
<el-scrollbar wrap-class="h-full" ref="groupScrollbar" view-class="flex flex-col">
|
||||||
<el-button
|
<template v-for="(group, groupIndex) in APP_LINK_GROUP_LIST">
|
||||||
v-for="(group, groupIndex) in APP_LINK_GROUP_LIST"
|
<el-button v-if="groupIndex<7" :key="groupIndex" :class="[
|
||||||
:key="groupIndex"
|
|
||||||
:class="[
|
|
||||||
'm-r-16px m-l-0px! justify-start! w-90px',
|
'm-r-16px m-l-0px! justify-start! w-90px',
|
||||||
{ active: activeGroup === group.name }
|
{ active: activeGroup === group.name }
|
||||||
]"
|
]" ref="groupBtnRefs" :text="activeGroup !== group.name"
|
||||||
ref="groupBtnRefs"
|
:type="activeGroup === group.name ? 'primary' : 'default'" @click="handleGroupSelected(group.name)">
|
||||||
:text="activeGroup !== group.name"
|
{{ group.name }}
|
||||||
:type="activeGroup === group.name ? 'primary' : 'default'"
|
</el-button>
|
||||||
@click="handleGroupSelected(group.name)"
|
</template>
|
||||||
>
|
</el-scrollbar>
|
||||||
{{ group.name }}
|
<!-- 右侧链接列表 -->
|
||||||
</el-button>
|
<el-scrollbar class="h-full flex-1" @scroll="handleScroll" ref="linkScrollbar">
|
||||||
</el-scrollbar>
|
<div v-for="(group, groupIndex) in APP_LINK_GROUP_LIST" :key="groupIndex">
|
||||||
<!-- 右侧链接列表 -->
|
<template v-if="activeGroup == group.name && groupIndex<7">
|
||||||
<el-scrollbar class="h-full flex-1" @scroll="handleScroll" ref="linkScrollbar">
|
<!-- 分组标题 -->
|
||||||
<div v-for="(group, groupIndex) in APP_LINK_GROUP_LIST" :key="groupIndex">
|
<div class="font-bold" ref="groupTitleRefs">{{ group.name }}</div>
|
||||||
<template v-if="activeGroup == group.name">
|
<!-- 链接列表 -->
|
||||||
<!-- 分组标题 -->
|
<el-tooltip v-for="(appLink, appLinkIndex) in group.links" :key="appLinkIndex"
|
||||||
<div class="font-bold" ref="groupTitleRefs">{{ group.name }}</div>
|
:content="appLink.path" placement="bottom" :show-after="300">
|
||||||
<!-- 链接列表 -->
|
|
||||||
<el-tooltip
|
|
||||||
v-for="(appLink, appLinkIndex) in group.links"
|
|
||||||
:key="appLinkIndex"
|
|
||||||
:content="appLink.path"
|
|
||||||
placement="bottom"
|
|
||||||
:show-after="300"
|
|
||||||
>
|
|
||||||
<el-button
|
|
||||||
class="m-b-8px m-r-8px m-l-0px!"
|
|
||||||
:type="isSameLink(appLink.path, activeAppLink.path) ? 'primary' : 'default'"
|
|
||||||
@click="handleAppLinkSelected(appLink)"
|
|
||||||
>
|
|
||||||
{{ appLink.name }}
|
|
||||||
</el-button>
|
|
||||||
</el-tooltip>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
</div>
|
<el-button class="m-b-8px m-r-8px m-l-0px!"
|
||||||
</el-scrollbar>
|
:type="isSameLink(appLink.path, activeAppLink.path) ? 'primary' : 'default'"
|
||||||
</div>
|
@click="handleAppLinkSelected(appLink)">
|
||||||
<!-- 底部对话框操作按钮 -->
|
{{ appLink.name }}
|
||||||
<template #footer>
|
</el-button>
|
||||||
<el-button type="primary" @click="handleSubmit">确 定</el-button>
|
</el-tooltip>
|
||||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
</template>
|
||||||
</template>
|
|
||||||
</Dialog>
|
</div>
|
||||||
<Dialog v-model="detailSelectDialog.visible" title="" width="50%">
|
</el-scrollbar>
|
||||||
<el-form class="min-h-200px">
|
</div>
|
||||||
<el-form-item
|
<!-- 底部对话框操作按钮 -->
|
||||||
label="选择分类"
|
<template #footer>
|
||||||
v-if="detailSelectDialog.type === APP_LINK_TYPE_ENUM.PRODUCT_CATEGORY_LIST"
|
<el-button type="primary" @click="handleSubmit">确 定</el-button>
|
||||||
>
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
<ProductCategorySelect
|
</template>
|
||||||
v-model="detailSelectDialog.id"
|
</Dialog>
|
||||||
:parent-id="0"
|
<Dialog v-model="detailSelectDialog.visible" title="" width="50%">
|
||||||
@update:model-value="handleProductCategorySelected"
|
<el-form class="min-h-200px">
|
||||||
/>
|
<el-form-item label="选择分类" v-if="detailSelectDialog.type === APP_LINK_TYPE_ENUM.PRODUCT_CATEGORY_LIST">
|
||||||
</el-form-item>
|
<ProductCategorySelect v-model="detailSelectDialog.id" :parent-id="0"
|
||||||
</el-form>
|
@update:model-value="handleProductCategorySelected" />
|
||||||
</Dialog>
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</Dialog>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { APP_LINK_GROUP_LIST, APP_LINK_TYPE_ENUM, AppLink } from './data'
|
import { APP_LINK_GROUP_LIST, APP_LINK_TYPE_ENUM, AppLink } from './data'
|
||||||
import { ButtonInstance, ScrollbarInstance } from 'element-plus'
|
import * as MemberStatisticsApi from '@/api/mall/statistics/member'
|
||||||
import { split } from 'lodash-es'
|
import { ButtonInstance, ScrollbarInstance } from 'element-plus'
|
||||||
import ProductCategorySelect from '@/views/mall/product/category/components/ProductCategorySelect.vue'
|
import { split } from 'lodash-es'
|
||||||
import { getUrlNumberValue } from '@/utils'
|
import ProductCategorySelect from '@/views/mall/product/category/components/ProductCategorySelect.vue'
|
||||||
|
import { getUrlNumberValue } from '@/utils'
|
||||||
|
// 假设你要追加的数据是一个新的对象
|
||||||
|
const userComparison = ref([])
|
||||||
|
/** 查询会员用户数量对照卡片数据 */
|
||||||
|
const GetDiyPage = async () => {
|
||||||
|
userComparison.value = await MemberStatisticsApi.getDiyPage()
|
||||||
|
const arry = userComparison.value.map(link => {
|
||||||
|
return {
|
||||||
|
name: link.name,
|
||||||
|
path: `/pages/index/page?id=${link.id}`
|
||||||
|
};
|
||||||
|
});
|
||||||
|
userComparison.value = {
|
||||||
|
name: '自定义页面',
|
||||||
|
links:arry
|
||||||
|
}
|
||||||
|
APP_LINK_GROUP_LIST.push(userComparison.value);
|
||||||
|
// userComparison.value = APP_LINK_GROUP_LIST
|
||||||
|
// userComparison.value = APP_LINK_GROUP_LIST.push({qq:1})
|
||||||
|
console.log(APP_LINK_GROUP_LIST, 'userComparison.value')
|
||||||
|
}
|
||||||
|
GetDiyPage()
|
||||||
|
// APP 链接选择弹框
|
||||||
|
defineOptions({ name: 'AppLinkSelectDialog' })
|
||||||
|
// 选中的分组,默认选中第一个
|
||||||
|
const activeGroup = ref(APP_LINK_GROUP_LIST[0].name)
|
||||||
|
// 选中的 APP 链接
|
||||||
|
const activeAppLink = ref({} as AppLink)
|
||||||
|
|
||||||
// APP 链接选择弹框
|
/** 打开弹窗 */
|
||||||
defineOptions({ name: 'AppLinkSelectDialog' })
|
const dialogVisible = ref(false)
|
||||||
// 选中的分组,默认选中第一个
|
const open = (link : string) => {
|
||||||
const activeGroup = ref(APP_LINK_GROUP_LIST[0].name)
|
activeAppLink.value.path = link
|
||||||
// 选中的 APP 链接
|
dialogVisible.value = true
|
||||||
const activeAppLink = ref({} as AppLink)
|
|
||||||
|
|
||||||
/** 打开弹窗 */
|
// 滚动到当前的链接
|
||||||
const dialogVisible = ref(false)
|
const group = APP_LINK_GROUP_LIST.find((group) =>
|
||||||
const open = (link: string) => {
|
group.links.some((linkItem) => {
|
||||||
activeAppLink.value.path = link
|
const sameLink = isSameLink(linkItem.path, link)
|
||||||
dialogVisible.value = true
|
if (sameLink) {
|
||||||
|
activeAppLink.value = { ...linkItem, path: link }
|
||||||
|
}
|
||||||
|
return sameLink
|
||||||
|
})
|
||||||
|
)
|
||||||
|
if (group) {
|
||||||
|
// 使用 nextTick 的原因:可能 Dom 还没生成,导致滚动失败
|
||||||
|
nextTick(() => handleGroupSelected(group.name))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ open })
|
||||||
|
|
||||||
// 滚动到当前的链接
|
// 处理 APP 链接选中
|
||||||
const group = APP_LINK_GROUP_LIST.find((group) =>
|
const handleAppLinkSelected = (appLink : AppLink) => {
|
||||||
group.links.some((linkItem) => {
|
if (!isSameLink(appLink.path, activeAppLink.value.path)) {
|
||||||
const sameLink = isSameLink(linkItem.path, link)
|
activeAppLink.value = appLink
|
||||||
if (sameLink) {
|
console.log(activeAppLink.value,activeAppLink.value.path,"activeAppLink.value")
|
||||||
activeAppLink.value = { ...linkItem, path: link }
|
}
|
||||||
}
|
switch (appLink.type) {
|
||||||
return sameLink
|
case APP_LINK_TYPE_ENUM.PRODUCT_CATEGORY_LIST:
|
||||||
})
|
detailSelectDialog.value.visible = true
|
||||||
)
|
detailSelectDialog.value.type = appLink.type
|
||||||
if (group) {
|
// 返显
|
||||||
// 使用 nextTick 的原因:可能 Dom 还没生成,导致滚动失败
|
detailSelectDialog.value.id =
|
||||||
nextTick(() => handleGroupSelected(group.name))
|
getUrlNumberValue('id', 'http://127.0.0.1' + activeAppLink.value.path) || undefined
|
||||||
}
|
break
|
||||||
}
|
default:
|
||||||
defineExpose({ open })
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 处理 APP 链接选中
|
// 处理绑定值更新
|
||||||
const handleAppLinkSelected = (appLink: AppLink) => {
|
const emit = defineEmits<{
|
||||||
if (!isSameLink(appLink.path, activeAppLink.value.path)) {
|
change : [link: string]
|
||||||
activeAppLink.value = appLink
|
appLinkChange : [appLink: AppLink]
|
||||||
}
|
}>()
|
||||||
switch (appLink.type) {
|
const handleSubmit = () => {
|
||||||
case APP_LINK_TYPE_ENUM.PRODUCT_CATEGORY_LIST:
|
dialogVisible.value = false
|
||||||
detailSelectDialog.value.visible = true
|
emit('change', activeAppLink.value.path)
|
||||||
detailSelectDialog.value.type = appLink.type
|
emit('appLinkChange', activeAppLink.value)
|
||||||
// 返显
|
}
|
||||||
detailSelectDialog.value.id =
|
|
||||||
getUrlNumberValue('id', 'http://127.0.0.1' + activeAppLink.value.path) || undefined
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 处理绑定值更新
|
// 分组标题引用列表
|
||||||
const emit = defineEmits<{
|
const groupTitleRefs = ref<HTMLInputElement[]>([])
|
||||||
change: [link: string]
|
/**
|
||||||
appLinkChange: [appLink: AppLink]
|
* 处理右侧链接列表滚动
|
||||||
}>()
|
* @param scrollTop 滚动条的位置
|
||||||
const handleSubmit = () => {
|
*/
|
||||||
dialogVisible.value = false
|
const handleScroll = ({ scrollTop } : { scrollTop : number }) => {
|
||||||
emit('change', activeAppLink.value.path)
|
const titleEl = groupTitleRefs.value.find((titleEl : HTMLInputElement) => {
|
||||||
emit('appLinkChange', activeAppLink.value)
|
// 获取标题的位置信息
|
||||||
}
|
const { offsetHeight, offsetTop } = titleEl
|
||||||
|
// 判断标题是否在可视范围内
|
||||||
|
return scrollTop >= offsetTop && scrollTop < offsetTop + offsetHeight
|
||||||
|
})
|
||||||
|
// 只需处理一次
|
||||||
|
if (titleEl && activeGroup.value !== titleEl.textContent) {
|
||||||
|
activeGroup.value = titleEl.textContent || ''
|
||||||
|
// 同步左侧的滚动条位置
|
||||||
|
scrollToGroupBtn(activeGroup.value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 分组标题引用列表
|
// 右侧滚动条
|
||||||
const groupTitleRefs = ref<HTMLInputElement[]>([])
|
const linkScrollbar = ref<ScrollbarInstance>()
|
||||||
/**
|
// 处理分组选中
|
||||||
* 处理右侧链接列表滚动
|
const handleGroupSelected = (group : string) => {
|
||||||
* @param scrollTop 滚动条的位置
|
activeGroup.value = group
|
||||||
*/
|
// const titleRef = groupTitleRefs.value.find((item: HTMLInputElement) => item.textContent === group)
|
||||||
const handleScroll = ({ scrollTop }: { scrollTop: number }) => {
|
// if (titleRef) {
|
||||||
const titleEl = groupTitleRefs.value.find((titleEl: HTMLInputElement) => {
|
// // 滚动分组标题
|
||||||
// 获取标题的位置信息
|
// linkScrollbar.value?.setScrollTop(titleRef.offsetTop)
|
||||||
const { offsetHeight, offsetTop } = titleEl
|
// }
|
||||||
// 判断标题是否在可视范围内
|
}
|
||||||
return scrollTop >= offsetTop && scrollTop < offsetTop + offsetHeight
|
|
||||||
})
|
|
||||||
// 只需处理一次
|
|
||||||
if (titleEl && activeGroup.value !== titleEl.textContent) {
|
|
||||||
activeGroup.value = titleEl.textContent || ''
|
|
||||||
// 同步左侧的滚动条位置
|
|
||||||
scrollToGroupBtn(activeGroup.value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 右侧滚动条
|
// 分组滚动条
|
||||||
const linkScrollbar = ref<ScrollbarInstance>()
|
const groupScrollbar = ref<ScrollbarInstance>()
|
||||||
// 处理分组选中
|
// 分组引用列表
|
||||||
const handleGroupSelected = (group: string) => {
|
const groupBtnRefs = ref<ButtonInstance[]>([])
|
||||||
activeGroup.value = group
|
// 自动滚动分组按钮,确保分组按钮保持在可视区域内
|
||||||
// const titleRef = groupTitleRefs.value.find((item: HTMLInputElement) => item.textContent === group)
|
const scrollToGroupBtn = (group : string) => {
|
||||||
// if (titleRef) {
|
const groupBtn = groupBtnRefs.value
|
||||||
// // 滚动分组标题
|
.map((btn : ButtonInstance) => btn['ref'])
|
||||||
// linkScrollbar.value?.setScrollTop(titleRef.offsetTop)
|
.find((ref : Node) => ref.textContent === group)
|
||||||
// }
|
if (groupBtn) {
|
||||||
}
|
groupScrollbar.value?.setScrollTop(groupBtn.offsetTop)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 分组滚动条
|
// 是否为相同的链接(不比较参数,只比较链接)
|
||||||
const groupScrollbar = ref<ScrollbarInstance>()
|
const isSameLink = (link1 : string, link2 : string) => {
|
||||||
// 分组引用列表
|
return split(link1, '?', 1)[0] === split(link2, '?', 1)[0]
|
||||||
const groupBtnRefs = ref<ButtonInstance[]>([])
|
}
|
||||||
// 自动滚动分组按钮,确保分组按钮保持在可视区域内
|
|
||||||
const scrollToGroupBtn = (group: string) => {
|
|
||||||
const groupBtn = groupBtnRefs.value
|
|
||||||
.map((btn: ButtonInstance) => btn['ref'])
|
|
||||||
.find((ref: Node) => ref.textContent === group)
|
|
||||||
if (groupBtn) {
|
|
||||||
groupScrollbar.value?.setScrollTop(groupBtn.offsetTop)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 是否为相同的链接(不比较参数,只比较链接)
|
// 详情选择对话框
|
||||||
const isSameLink = (link1: string, link2: string) => {
|
const detailSelectDialog = ref<{
|
||||||
return split(link1, '?', 1)[0] === split(link2, '?', 1)[0]
|
visible : boolean
|
||||||
}
|
id ?: number
|
||||||
|
type ?: APP_LINK_TYPE_ENUM
|
||||||
// 详情选择对话框
|
}>({
|
||||||
const detailSelectDialog = ref<{
|
visible: false,
|
||||||
visible: boolean
|
id: undefined,
|
||||||
id?: number
|
type: undefined
|
||||||
type?: APP_LINK_TYPE_ENUM
|
})
|
||||||
}>({
|
// 处理详情选择
|
||||||
visible: false,
|
const handleProductCategorySelected = (id : number) => {
|
||||||
id: undefined,
|
const url = new URL(activeAppLink.value.path, 'http://127.0.0.1')
|
||||||
type: undefined
|
// 修改 id 参数
|
||||||
})
|
url.searchParams.set('id', `${id}`)
|
||||||
// 处理详情选择
|
// 排除域名
|
||||||
const handleProductCategorySelected = (id: number) => {
|
activeAppLink.value.path = `${url.pathname}${url.search}`
|
||||||
const url = new URL(activeAppLink.value.path, 'http://127.0.0.1')
|
// 关闭对话框
|
||||||
// 修改 id 参数
|
detailSelectDialog.value.visible = false
|
||||||
url.searchParams.set('id', `${id}`)
|
// 重置 id
|
||||||
// 排除域名
|
detailSelectDialog.value.id = undefined
|
||||||
activeAppLink.value.path = `${url.pathname}${url.search}`
|
}
|
||||||
// 关闭对话框
|
|
||||||
detailSelectDialog.value.visible = false
|
|
||||||
// 重置 id
|
|
||||||
detailSelectDialog.value.id = undefined
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped></style>
|
@ -250,30 +250,31 @@ export const APP_LINK_GROUP_LIST = [
|
|||||||
path: '/pages/user/user_vip/index'
|
path: '/pages/user/user_vip/index'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '自定义页面',
|
|
||||||
links: [
|
|
||||||
{
|
|
||||||
name: '促销页面',
|
|
||||||
path: 'ss'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '关于我们',
|
|
||||||
path: '/pages/pay/recharge-lo'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '产品与服务',
|
|
||||||
path: '/pages/pay/recharge-l'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '自定义页面',
|
|
||||||
path: '/pages/pay/recharge-'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '个人中心',
|
|
||||||
path: '/pages/pay/recharge'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
// ,
|
||||||
|
// {
|
||||||
|
// name: '自定义页面',
|
||||||
|
// links: [
|
||||||
|
// {
|
||||||
|
// name: '促销页面',
|
||||||
|
// path: 'ss'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: '关于我们',
|
||||||
|
// path: '/pages/pay/recharge-lo'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: '产品与服务',
|
||||||
|
// path: '/pages/pay/recharge-l'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: '自定义页面',
|
||||||
|
// path: '/pages/pay/recharge-'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: '个人中心',
|
||||||
|
// path: '/pages/pay/recharge'
|
||||||
|
// }
|
||||||
|
// ]
|
||||||
|
// }
|
||||||
] as AppLinkGroup[]
|
] as AppLinkGroup[]
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-card>
|
</el-card>
|
||||||
<el-card header="优惠券样式" class="property-group" shadow="never">
|
<el-card header="优惠券样式" class="property-group" shadow="never">
|
||||||
<el-form-item label="列数" prop="type">
|
<!-- <el-form-item label="列数" prop="type">
|
||||||
<el-radio-group v-model="formData.columns">
|
<el-radio-group v-model="formData.columns">
|
||||||
<el-tooltip class="item" content="一列" placement="bottom">
|
<el-tooltip class="item" content="一列" placement="bottom">
|
||||||
<el-radio-button :label="1">
|
<el-radio-button :label="1">
|
||||||
@ -41,7 +41,7 @@
|
|||||||
</el-radio-button>
|
</el-radio-button>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
<el-form-item label="背景图片" prop="bgImg">
|
<el-form-item label="背景图片" prop="bgImg">
|
||||||
<UploadImg v-model="formData.bgImg" height="80px" width="100%" class="min-w-160px" />
|
<UploadImg v-model="formData.bgImg" height="80px" width="100%" class="min-w-160px" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -85,7 +85,7 @@ defineOptions({ name: 'CouponCardProperty' })
|
|||||||
const props = defineProps<{ modelValue: CouponCardProperty }>()
|
const props = defineProps<{ modelValue: CouponCardProperty }>()
|
||||||
const emit = defineEmits(['update:modelValue'])
|
const emit = defineEmits(['update:modelValue'])
|
||||||
const { formData } = usePropertyForm(props.modelValue, emit)
|
const { formData } = usePropertyForm(props.modelValue, emit)
|
||||||
|
formData.value.columns = '3';
|
||||||
// 优惠券列表
|
// 优惠券列表
|
||||||
const couponList = ref<CouponTemplateApi.CouponTemplateVO[]>([])
|
const couponList = ref<CouponTemplateApi.CouponTemplateVO[]>([])
|
||||||
const couponSelectDialog = ref()
|
const couponSelectDialog = ref()
|
||||||
|
@ -7,8 +7,9 @@
|
|||||||
<div class="item h-42px flex flex-row items-center justify-between gap-4px p-x-12px">
|
<div class="item h-42px flex flex-row items-center justify-between gap-4px p-x-12px">
|
||||||
<div class="flex flex-1 flex-row items-center gap-8px">
|
<div class="flex flex-1 flex-row items-center gap-8px">
|
||||||
<div class="wh">
|
<div class="wh">
|
||||||
<img
|
<img class="new-text1"
|
||||||
src="https://zysc.fjptzykj.com:3000/shangcheng/02d372da2be37f10ecb4b79509a68f4d1c3fe6429add76d4c80f3cb9ee401e33.png" />
|
src="https://zysc.fjptzykj.com:3000/shangcheng/2f2be070c60ceb9466af937ff9dd8917ad2ee02f774dbac48fbb9e73bfc688d0.png" />
|
||||||
|
<span class="new-text">拼团活动</span>
|
||||||
</div>
|
</div>
|
||||||
<span class="text-16px" style="color: rgb(187, 187, 187);">92人拼团成功</span>
|
<span class="text-16px" style="color: rgb(187, 187, 187);">92人拼团成功</span>
|
||||||
</div>
|
</div>
|
||||||
@ -158,6 +159,14 @@ onMounted(() => {
|
|||||||
.wh {
|
.wh {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
.new-text1{
|
||||||
|
width:30px;
|
||||||
|
}
|
||||||
|
.new-text{
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wh::after {
|
.wh::after {
|
||||||
|
@ -99,6 +99,7 @@ defineOptions({ name: 'PromotionCombinationProperty' })
|
|||||||
const props = defineProps<{ modelValue: PromotionCombinationProperty }>()
|
const props = defineProps<{ modelValue: PromotionCombinationProperty }>()
|
||||||
const emit = defineEmits(['update:modelValue'])
|
const emit = defineEmits(['update:modelValue'])
|
||||||
const { formData } = usePropertyForm(props.modelValue, emit)
|
const { formData } = usePropertyForm(props.modelValue, emit)
|
||||||
|
formData.value.layoutType = 'threeCol';
|
||||||
// 活动列表
|
// 活动列表
|
||||||
const activityList = ref<CombinationActivityApi.CombinationActivityVO>([])
|
const activityList = ref<CombinationActivityApi.CombinationActivityVO>([])
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
|
@ -0,0 +1,96 @@
|
|||||||
|
import {ComponentStyle, DiyComponent} from '@/components/DiyEditor/util'
|
||||||
|
|
||||||
|
/** 积分商城属性 */
|
||||||
|
export interface PromotionPointProperty {
|
||||||
|
// 布局类型:单列 | 三列
|
||||||
|
layoutType: 'oneColBigImg' | 'oneColSmallImg' | 'twoCol'
|
||||||
|
// 商品字段
|
||||||
|
fields: {
|
||||||
|
// 商品名称
|
||||||
|
name: PromotionPointFieldProperty
|
||||||
|
// 商品简介
|
||||||
|
introduction: PromotionPointFieldProperty
|
||||||
|
// 商品价格
|
||||||
|
price: PromotionPointFieldProperty
|
||||||
|
// 市场价
|
||||||
|
marketPrice: PromotionPointFieldProperty
|
||||||
|
// 商品销量
|
||||||
|
salesCount: PromotionPointFieldProperty
|
||||||
|
// 商品库存
|
||||||
|
stock: PromotionPointFieldProperty
|
||||||
|
}
|
||||||
|
// 角标
|
||||||
|
badge: {
|
||||||
|
// 是否显示
|
||||||
|
show: boolean
|
||||||
|
// 角标图片
|
||||||
|
imgUrl: string
|
||||||
|
}
|
||||||
|
// 按钮
|
||||||
|
btnBuy: {
|
||||||
|
// 类型:文字 | 图片
|
||||||
|
type: 'text' | 'img'
|
||||||
|
// 文字
|
||||||
|
text: string
|
||||||
|
// 文字按钮:背景渐变起始颜色
|
||||||
|
bgBeginColor: string
|
||||||
|
// 文字按钮:背景渐变结束颜色
|
||||||
|
bgEndColor: string
|
||||||
|
// 图片按钮:图片地址
|
||||||
|
imgUrl: string
|
||||||
|
}
|
||||||
|
// 上圆角
|
||||||
|
borderRadiusTop: number
|
||||||
|
// 下圆角
|
||||||
|
borderRadiusBottom: number
|
||||||
|
// 间距
|
||||||
|
space: number
|
||||||
|
// 秒杀活动编号
|
||||||
|
activityIds: number[]
|
||||||
|
// 组件样式
|
||||||
|
style: ComponentStyle
|
||||||
|
}
|
||||||
|
|
||||||
|
// 商品字段
|
||||||
|
export interface PromotionPointFieldProperty {
|
||||||
|
// 是否显示
|
||||||
|
show: boolean
|
||||||
|
// 颜色
|
||||||
|
color: string
|
||||||
|
}
|
||||||
|
|
||||||
|
// 定义组件
|
||||||
|
export const component = {
|
||||||
|
id: 'PromotionPoint',
|
||||||
|
name: '积分商城',
|
||||||
|
icon: 'ep:present',
|
||||||
|
property: {
|
||||||
|
layoutType: 'oneColBigImg',
|
||||||
|
fields: {
|
||||||
|
name: { show: true, color: '#000' },
|
||||||
|
introduction: { show: true, color: '#999' },
|
||||||
|
price: { show: true, color: '#ff3000' },
|
||||||
|
marketPrice: { show: true, color: '#c4c4c4' },
|
||||||
|
salesCount: { show: true, color: '#c4c4c4' },
|
||||||
|
stock: { show: false, color: '#c4c4c4' }
|
||||||
|
},
|
||||||
|
badge: { show: false, imgUrl: '' },
|
||||||
|
btnBuy: {
|
||||||
|
type: 'text',
|
||||||
|
text: '立即兑换',
|
||||||
|
bgBeginColor: '#FF6000',
|
||||||
|
bgEndColor: '#FE832A',
|
||||||
|
imgUrl: ''
|
||||||
|
},
|
||||||
|
borderRadiusTop: 8,
|
||||||
|
borderRadiusBottom: 8,
|
||||||
|
space: 8,
|
||||||
|
style: {
|
||||||
|
bgType: 'color',
|
||||||
|
bgColor: '',
|
||||||
|
marginLeft: 8,
|
||||||
|
marginRight: 8,
|
||||||
|
marginBottom: 8
|
||||||
|
} as ComponentStyle
|
||||||
|
}
|
||||||
|
} as DiyComponent<PromotionPointProperty>
|
@ -0,0 +1,202 @@
|
|||||||
|
<template>
|
||||||
|
<div ref="containerRef" :class="`box-content min-h-30px w-full flex flex-row flex-wrap`">
|
||||||
|
<div
|
||||||
|
v-for="(spu, index) in spuList"
|
||||||
|
:key="index"
|
||||||
|
:style="{
|
||||||
|
...calculateSpace(index),
|
||||||
|
...calculateWidth(),
|
||||||
|
borderTopLeftRadius: `${property.borderRadiusTop}px`,
|
||||||
|
borderTopRightRadius: `${property.borderRadiusTop}px`,
|
||||||
|
borderBottomLeftRadius: `${property.borderRadiusBottom}px`,
|
||||||
|
borderBottomRightRadius: `${property.borderRadiusBottom}px`
|
||||||
|
}"
|
||||||
|
class="relative box-content flex flex-row flex-wrap overflow-hidden bg-white"
|
||||||
|
>
|
||||||
|
<!-- 角标 -->
|
||||||
|
<div v-if="property.badge.show" class="absolute left-0 top-0 z-1 items-center justify-center">
|
||||||
|
<el-image :src="property.badge.imgUrl" class="h-26px w-38px" fit="cover" />
|
||||||
|
</div>
|
||||||
|
<!-- 商品封面图 -->
|
||||||
|
<div
|
||||||
|
:class="[
|
||||||
|
'h-140px',
|
||||||
|
{
|
||||||
|
'w-full': property.layoutType !== 'oneColSmallImg',
|
||||||
|
'w-140px': property.layoutType === 'oneColSmallImg'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
>
|
||||||
|
<el-image :src="spu.picUrl" class="h-full w-full" fit="cover" />
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
:class="[
|
||||||
|
' flex flex-col gap-8px p-8px box-border',
|
||||||
|
{
|
||||||
|
'w-full': property.layoutType !== 'oneColSmallImg',
|
||||||
|
'w-[calc(100%-140px-16px)]': property.layoutType === 'oneColSmallImg'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
>
|
||||||
|
<!-- 商品名称 -->
|
||||||
|
<div
|
||||||
|
v-if="property.fields.name.show"
|
||||||
|
:class="[
|
||||||
|
'text-14px ',
|
||||||
|
{
|
||||||
|
truncate: property.layoutType !== 'oneColSmallImg',
|
||||||
|
'overflow-ellipsis line-clamp-2': property.layoutType === 'oneColSmallImg'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:style="{ color: property.fields.name.color }"
|
||||||
|
>
|
||||||
|
{{ spu.name }}
|
||||||
|
</div>
|
||||||
|
<!-- 商品简介 -->
|
||||||
|
<div
|
||||||
|
v-if="property.fields.introduction.show"
|
||||||
|
:style="{ color: property.fields.introduction.color }"
|
||||||
|
class="truncate text-12px"
|
||||||
|
>
|
||||||
|
{{ spu.introduction }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<!-- 积分 -->
|
||||||
|
<span
|
||||||
|
v-if="property.fields.price.show"
|
||||||
|
:style="{ color: property.fields.price.color }"
|
||||||
|
class="text-16px"
|
||||||
|
>
|
||||||
|
{{ spu.point }}积分
|
||||||
|
{{ !spu.pointPrice || spu.pointPrice === 0 ? '' : `+${fenToYuan(spu.pointPrice)}元` }}
|
||||||
|
</span>
|
||||||
|
<!-- 市场价 -->
|
||||||
|
<span
|
||||||
|
v-if="property.fields.marketPrice.show && spu.marketPrice"
|
||||||
|
:style="{ color: property.fields.marketPrice.color }"
|
||||||
|
class="ml-4px text-10px line-through"
|
||||||
|
>
|
||||||
|
¥{{ fenToYuan(spu.marketPrice) }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="text-12px">
|
||||||
|
<!-- 销量 -->
|
||||||
|
<span
|
||||||
|
v-if="property.fields.salesCount.show"
|
||||||
|
:style="{ color: property.fields.salesCount.color }"
|
||||||
|
>
|
||||||
|
已兑{{ (spu.pointTotalStock || 0) - (spu.pointStock || 0) }}件
|
||||||
|
</span>
|
||||||
|
<!-- 库存 -->
|
||||||
|
<span v-if="property.fields.stock.show" :style="{ color: property.fields.stock.color }">
|
||||||
|
库存{{ spu.pointTotalStock || 0 }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 购买按钮 -->
|
||||||
|
<div class="absolute bottom-8px right-8px">
|
||||||
|
<!-- 文字按钮 -->
|
||||||
|
<span
|
||||||
|
v-if="property.btnBuy.type === 'text'"
|
||||||
|
:style="{
|
||||||
|
background: `linear-gradient(to right, ${property.btnBuy.bgBeginColor}, ${property.btnBuy.bgEndColor}`
|
||||||
|
}"
|
||||||
|
class="rounded-full p-x-12px p-y-4px text-12px text-white"
|
||||||
|
>
|
||||||
|
{{ property.btnBuy.text }}
|
||||||
|
</span>
|
||||||
|
<!-- 图片按钮 -->
|
||||||
|
<el-image
|
||||||
|
v-else
|
||||||
|
:src="property.btnBuy.imgUrl"
|
||||||
|
class="h-28px w-28px rounded-full"
|
||||||
|
fit="cover"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { PromotionPointProperty } from './config'
|
||||||
|
import * as ProductSpuApi from '@/api/mall/product/spu'
|
||||||
|
import { PointActivityApi, PointActivityVO, SpuExtension0 } from '@/api/mall/promotion/point'
|
||||||
|
import { fenToYuan } from '@/utils'
|
||||||
|
|
||||||
|
/** 积分商城卡片 */
|
||||||
|
defineOptions({ name: 'PromotionPoint' })
|
||||||
|
// 定义属性
|
||||||
|
const props = defineProps<{ property: PromotionPointProperty }>()
|
||||||
|
// 商品列表
|
||||||
|
const spuList = ref<SpuExtension0[]>([])
|
||||||
|
const spuIdList = ref<number[]>([])
|
||||||
|
const pointActivityList = ref<PointActivityVO[]>([])
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.property.activityIds,
|
||||||
|
async () => {
|
||||||
|
try {
|
||||||
|
// 新添加的积分商城组件,是没有活动ID的
|
||||||
|
const activityIds = props.property.activityIds
|
||||||
|
// 检查活动ID的有效性
|
||||||
|
if (Array.isArray(activityIds) && activityIds.length > 0) {
|
||||||
|
// 获取积分商城活动详情列表
|
||||||
|
pointActivityList.value = await PointActivityApi.getPointActivityListByIds(activityIds)
|
||||||
|
|
||||||
|
// 获取积分商城活动的 SPU 详情列表
|
||||||
|
spuList.value = []
|
||||||
|
spuIdList.value = pointActivityList.value.map((activity) => activity.spuId)
|
||||||
|
if (spuIdList.value.length > 0) {
|
||||||
|
spuList.value = await ProductSpuApi.getSpuDetailList(spuIdList.value)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新 SPU 的最低兑换积分和所需兑换金额
|
||||||
|
pointActivityList.value.forEach((activity) => {
|
||||||
|
// 匹配spuId
|
||||||
|
const spu = spuList.value.find((spu) => spu.id === activity.spuId)
|
||||||
|
if (spu) {
|
||||||
|
spu.pointStock = activity.stock
|
||||||
|
spu.pointTotalStock = activity.totalStock
|
||||||
|
spu.point = activity.point
|
||||||
|
spu.pointPrice = activity.price
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('获取积分商城活动细节或 SPU 细节时出错:', error)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计算商品的间距
|
||||||
|
* @param index 商品索引
|
||||||
|
*/
|
||||||
|
const calculateSpace = (index: number) => {
|
||||||
|
// 商品的列数
|
||||||
|
const columns = props.property.layoutType === 'twoCol' ? 2 : 1
|
||||||
|
// 第一列没有左边距
|
||||||
|
const marginLeft = index % columns === 0 ? '0' : props.property.space + 'px'
|
||||||
|
// 第一行没有上边距
|
||||||
|
const marginTop = index < columns ? '0' : props.property.space + 'px'
|
||||||
|
|
||||||
|
return { marginLeft, marginTop }
|
||||||
|
}
|
||||||
|
|
||||||
|
// 容器
|
||||||
|
const containerRef = ref()
|
||||||
|
// 计算商品的宽度
|
||||||
|
const calculateWidth = () => {
|
||||||
|
let width = '100%'
|
||||||
|
// 双列时每列的宽度为:(总宽度 - 间距)/ 2
|
||||||
|
if (props.property.layoutType === 'twoCol') {
|
||||||
|
width = `${(containerRef.value.offsetWidth - props.property.space) / 2}px`
|
||||||
|
}
|
||||||
|
return { width }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
@ -0,0 +1,154 @@
|
|||||||
|
<template>
|
||||||
|
<ComponentContainerProperty v-model="formData.style">
|
||||||
|
<el-form :model="formData" label-width="80px">
|
||||||
|
<el-card class="property-group" header="积分商城活动" shadow="never">
|
||||||
|
<PointShowcase v-model="formData.activityIds" />
|
||||||
|
</el-card>
|
||||||
|
<el-card class="property-group" header="商品样式" shadow="never">
|
||||||
|
<el-form-item label="布局" prop="type">
|
||||||
|
<el-radio-group v-model="formData.layoutType">
|
||||||
|
<el-tooltip class="item" content="单列大图" placement="bottom">
|
||||||
|
<el-radio-button value="oneColBigImg">
|
||||||
|
<Icon icon="fluent:text-column-one-24-filled" />
|
||||||
|
</el-radio-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip class="item" content="单列小图" placement="bottom">
|
||||||
|
<el-radio-button value="oneColSmallImg">
|
||||||
|
<Icon icon="fluent:text-column-two-left-24-filled" />
|
||||||
|
</el-radio-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip class="item" content="双列" placement="bottom">
|
||||||
|
<el-radio-button value="twoCol">
|
||||||
|
<Icon icon="fluent:text-column-two-24-filled" />
|
||||||
|
</el-radio-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!--<el-tooltip class="item" content="三列" placement="bottom">
|
||||||
|
<el-radio-button value="threeCol">
|
||||||
|
<Icon icon="fluent:text-column-three-24-filled" />
|
||||||
|
</el-radio-button>
|
||||||
|
</el-tooltip>-->
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="商品名称" prop="fields.name.show">
|
||||||
|
<div class="flex gap-8px">
|
||||||
|
<ColorInput v-model="formData.fields.name.color" />
|
||||||
|
<el-checkbox v-model="formData.fields.name.show" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="商品简介" prop="fields.introduction.show">
|
||||||
|
<div class="flex gap-8px">
|
||||||
|
<ColorInput v-model="formData.fields.introduction.color" />
|
||||||
|
<el-checkbox v-model="formData.fields.introduction.show" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="商品价格" prop="fields.price.show">
|
||||||
|
<div class="flex gap-8px">
|
||||||
|
<ColorInput v-model="formData.fields.price.color" />
|
||||||
|
<el-checkbox v-model="formData.fields.price.show" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="市场价" prop="fields.marketPrice.show">
|
||||||
|
<div class="flex gap-8px">
|
||||||
|
<ColorInput v-model="formData.fields.marketPrice.color" />
|
||||||
|
<el-checkbox v-model="formData.fields.marketPrice.show" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="商品销量" prop="fields.salesCount.show">
|
||||||
|
<div class="flex gap-8px">
|
||||||
|
<ColorInput v-model="formData.fields.salesCount.color" />
|
||||||
|
<el-checkbox v-model="formData.fields.salesCount.show" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="商品库存" prop="fields.stock.show">
|
||||||
|
<div class="flex gap-8px">
|
||||||
|
<ColorInput v-model="formData.fields.stock.color" />
|
||||||
|
<el-checkbox v-model="formData.fields.stock.show" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
</el-card>
|
||||||
|
<el-card class="property-group" header="角标" shadow="never">
|
||||||
|
<el-form-item label="角标" prop="badge.show">
|
||||||
|
<el-switch v-model="formData.badge.show" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="formData.badge.show" label="角标" prop="badge.imgUrl">
|
||||||
|
<UploadImg v-model="formData.badge.imgUrl" height="44px" width="72px">
|
||||||
|
<template #tip> 建议尺寸:36 * 22</template>
|
||||||
|
</UploadImg>
|
||||||
|
</el-form-item>
|
||||||
|
</el-card>
|
||||||
|
<el-card class="property-group" header="按钮" shadow="never">
|
||||||
|
<el-form-item label="按钮类型" prop="btnBuy.type">
|
||||||
|
<el-radio-group v-model="formData.btnBuy.type">
|
||||||
|
<el-radio-button value="text">文字</el-radio-button>
|
||||||
|
<el-radio-button value="img">图片</el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<template v-if="formData.btnBuy.type === 'text'">
|
||||||
|
<el-form-item label="按钮文字" prop="btnBuy.text">
|
||||||
|
<el-input v-model="formData.btnBuy.text" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="左侧背景" prop="btnBuy.bgBeginColor">
|
||||||
|
<ColorInput v-model="formData.btnBuy.bgBeginColor" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="右侧背景" prop="btnBuy.bgEndColor">
|
||||||
|
<ColorInput v-model="formData.btnBuy.bgEndColor" />
|
||||||
|
</el-form-item>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<el-form-item label="图片" prop="btnBuy.imgUrl">
|
||||||
|
<UploadImg v-model="formData.btnBuy.imgUrl" height="56px" width="56px">
|
||||||
|
<template #tip> 建议尺寸:56 * 56</template>
|
||||||
|
</UploadImg>
|
||||||
|
</el-form-item>
|
||||||
|
</template>
|
||||||
|
</el-card>
|
||||||
|
<el-card class="property-group" header="商品样式" shadow="never">
|
||||||
|
<el-form-item label="上圆角" prop="borderRadiusTop">
|
||||||
|
<el-slider
|
||||||
|
v-model="formData.borderRadiusTop"
|
||||||
|
:max="100"
|
||||||
|
:min="0"
|
||||||
|
:show-input-controls="false"
|
||||||
|
input-size="small"
|
||||||
|
show-input
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="下圆角" prop="borderRadiusBottom">
|
||||||
|
<el-slider
|
||||||
|
v-model="formData.borderRadiusBottom"
|
||||||
|
:max="100"
|
||||||
|
:min="0"
|
||||||
|
:show-input-controls="false"
|
||||||
|
input-size="small"
|
||||||
|
show-input
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="间隔" prop="space">
|
||||||
|
<el-slider
|
||||||
|
v-model="formData.space"
|
||||||
|
:max="100"
|
||||||
|
:min="0"
|
||||||
|
:show-input-controls="false"
|
||||||
|
input-size="small"
|
||||||
|
show-input
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-card>
|
||||||
|
</el-form>
|
||||||
|
</ComponentContainerProperty>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { PromotionPointProperty } from './config'
|
||||||
|
import { usePropertyForm } from '@/components/DiyEditor/util'
|
||||||
|
import PointShowcase from '@/views/mall/promotion/point/components/PointShowcase.vue'
|
||||||
|
|
||||||
|
// 秒杀属性面板
|
||||||
|
defineOptions({ name: 'PromotionPointProperty' })
|
||||||
|
|
||||||
|
const props = defineProps<{ modelValue: PromotionPointProperty }>()
|
||||||
|
const emit = defineEmits(['update:modelValue'])
|
||||||
|
const { formData } = usePropertyForm(props.modelValue, emit)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
@ -6,8 +6,9 @@
|
|||||||
<div class="item h-42px flex flex-row items-center justify-between gap-4px p-x-12px">
|
<div class="item h-42px flex flex-row items-center justify-between gap-4px p-x-12px">
|
||||||
<div class="flex flex-1 flex-row items-center gap-8px">
|
<div class="flex flex-1 flex-row items-center gap-8px">
|
||||||
<div class="wh">
|
<div class="wh">
|
||||||
<img
|
<img class="new-text1"
|
||||||
src="https://zysc.fjptzykj.com:3000/shangcheng/1bd7faadbb3c319c6ad303edc23ecbf12162b8ac22e2c8058b3914397d9dd226.png" />
|
src="https://zysc.fjptzykj.com:3000/shangcheng/cb995c399d784c08e27d8f56b0a63ace2d13af3a1ee6aba5a2da71868dc4cf00.png" />
|
||||||
|
<span class="new-text">限时秒杀</span>
|
||||||
</div>
|
</div>
|
||||||
<span class="text-16px" style="color: rgb(187, 187, 187);">已有99人购买</span>
|
<span class="text-16px" style="color: rgb(187, 187, 187);">已有99人购买</span>
|
||||||
</div>
|
</div>
|
||||||
@ -150,6 +151,14 @@
|
|||||||
.wh {
|
.wh {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
.new-text1{
|
||||||
|
width:30px;
|
||||||
|
}
|
||||||
|
.new-text{
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wh::after {
|
.wh::after {
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-card>
|
</el-card>
|
||||||
<el-card header="商品样式" class="property-group" shadow="never">
|
<el-card header="商品样式" class="property-group" shadow="never">
|
||||||
<el-form-item label="布局" prop="type">
|
<!-- <el-form-item label="布局" prop="type">
|
||||||
<el-radio-group v-model="formData.layoutType">
|
<el-radio-group v-model="formData.layoutType">
|
||||||
<el-tooltip class="item" content="单列" placement="bottom">
|
<el-tooltip class="item" content="单列" placement="bottom">
|
||||||
<el-radio-button label="oneCol">
|
<el-radio-button label="oneCol">
|
||||||
@ -27,7 +27,7 @@
|
|||||||
</el-radio-button>
|
</el-radio-button>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
<el-form-item label="商品名称" prop="fields.name.show">
|
<el-form-item label="商品名称" prop="fields.name.show">
|
||||||
<div class="flex gap-8px">
|
<div class="flex gap-8px">
|
||||||
<ColorInput v-model="formData.fields.name.color" />
|
<ColorInput v-model="formData.fields.name.color" />
|
||||||
@ -99,6 +99,7 @@ defineOptions({ name: 'PromotionSeckillProperty' })
|
|||||||
const props = defineProps<{ modelValue: PromotionSeckillProperty }>()
|
const props = defineProps<{ modelValue: PromotionSeckillProperty }>()
|
||||||
const emit = defineEmits(['update:modelValue'])
|
const emit = defineEmits(['update:modelValue'])
|
||||||
const { formData } = usePropertyForm(props.modelValue, emit)
|
const { formData } = usePropertyForm(props.modelValue, emit)
|
||||||
|
formData.value.layoutType = "threeCol"
|
||||||
// 活动列表
|
// 活动列表
|
||||||
const activityList = ref<SeckillActivityApi.SeckillActivityVO>([])
|
const activityList = ref<SeckillActivityApi.SeckillActivityVO>([])
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
|
@ -146,7 +146,7 @@ export const PAGE_LIBS = [
|
|||||||
components: [
|
components: [
|
||||||
'PromotionCombination',
|
'PromotionCombination',
|
||||||
'PromotionSeckill',
|
'PromotionSeckill',
|
||||||
// 'PromotionPoint',
|
'PromotionPoint',
|
||||||
'CouponCard',
|
'CouponCard',
|
||||||
'PromotionArticle'
|
'PromotionArticle'
|
||||||
]
|
]
|
||||||
|
@ -0,0 +1,227 @@
|
|||||||
|
<template>
|
||||||
|
<Dialog v-model="dialogVisible" :title="dialogTitle" width="65%">
|
||||||
|
<Form
|
||||||
|
ref="formRef"
|
||||||
|
v-loading="formLoading"
|
||||||
|
:isCol="true"
|
||||||
|
:rules="rules"
|
||||||
|
:schema="allSchemas.formSchema"
|
||||||
|
>
|
||||||
|
<!-- 先选择 -->
|
||||||
|
<template #spuId>
|
||||||
|
<el-button v-if="!isFormUpdate" @click="spuSelectRef.open()">选择商品</el-button>
|
||||||
|
<SpuAndSkuList
|
||||||
|
ref="spuAndSkuListRef"
|
||||||
|
:rule-config="ruleConfig"
|
||||||
|
:spu-list="spuList"
|
||||||
|
:spu-property-list-p="spuPropertyList"
|
||||||
|
>
|
||||||
|
<el-table-column align="center" label="可兑换库存" min-width="168">
|
||||||
|
<template #default="{ row: sku }">
|
||||||
|
<el-input-number
|
||||||
|
v-model="sku.productConfig.stock"
|
||||||
|
:max="sku.stock"
|
||||||
|
:min="0"
|
||||||
|
class="w-100%"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="可兑换次数" min-width="168">
|
||||||
|
<template #default="{ row: sku }">
|
||||||
|
<el-input-number v-model="sku.productConfig.count" :min="0" class="w-100%" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="所需积分" min-width="168">
|
||||||
|
<template #default="{ row: sku }">
|
||||||
|
<el-input-number v-model="sku.productConfig.point" :min="0" class="w-100%" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="所需金额(元)" min-width="168">
|
||||||
|
<template #default="{ row: sku }">
|
||||||
|
<el-input-number
|
||||||
|
v-model="sku.productConfig.price"
|
||||||
|
:min="0"
|
||||||
|
:precision="2"
|
||||||
|
:step="0.1"
|
||||||
|
class="w-100%"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</SpuAndSkuList>
|
||||||
|
</template>
|
||||||
|
</Form>
|
||||||
|
<template #footer>
|
||||||
|
<el-button :disabled="formLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
<SpuSelect ref="spuSelectRef" :isSelectSku="true" @confirm="selectSpu" />
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { SpuAndSkuList, SpuProperty, SpuSelect } from '../../components'
|
||||||
|
import { allSchemas, rules } from './pointActivity.data'
|
||||||
|
import { cloneDeep } from 'lodash-es'
|
||||||
|
import {
|
||||||
|
PointActivityApi,
|
||||||
|
PointActivityVO,
|
||||||
|
PointProductVO,
|
||||||
|
SkuExtension,
|
||||||
|
SpuExtension
|
||||||
|
} from '@/api/mall/promotion/point'
|
||||||
|
import * as ProductSpuApi from '@/api/mall/product/spu'
|
||||||
|
import { getPropertyList, RuleConfig } from '@/views/mall/product/spu/components'
|
||||||
|
import { convertToInteger, formatToFraction } from '@/utils'
|
||||||
|
|
||||||
|
defineOptions({ name: 'PromotionSeckillActivityForm' })
|
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
|
||||||
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||||
|
const dialogTitle = ref('') // 弹窗的标题
|
||||||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||||
|
const formRef = ref() // 表单 Ref
|
||||||
|
const isFormUpdate = ref(false) // 是否更新表单
|
||||||
|
|
||||||
|
// ================= 商品选择相关 =================
|
||||||
|
|
||||||
|
const spuSelectRef = ref() // 商品和属性选择 Ref
|
||||||
|
const spuAndSkuListRef = ref() // sku 积分商城商品配置组件Ref
|
||||||
|
const ruleConfig: RuleConfig[] = [
|
||||||
|
{
|
||||||
|
name: 'productConfig.stock',
|
||||||
|
rule: (arg) => arg >= 1,
|
||||||
|
message: '商品可兑换库存必须大于等于 1 !!!'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'productConfig.point',
|
||||||
|
rule: (arg) => arg >= 1,
|
||||||
|
message: '商品所需兑换积分必须大于等于 1 !!!'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'productConfig.count',
|
||||||
|
rule: (arg) => arg >= 1,
|
||||||
|
message: '商品可兑换次数必须大于等于 1 !!!'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
const spuList = ref<SpuExtension[]>([]) // 选择的 spu
|
||||||
|
const spuPropertyList = ref<SpuProperty<SpuExtension>[]>([])
|
||||||
|
const selectSpu = (spuId: number, skuIds: number[]) => {
|
||||||
|
formRef.value.setValues({ spuId })
|
||||||
|
getSpuDetails(spuId, skuIds)
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 获取 SPU 详情
|
||||||
|
*/
|
||||||
|
const getSpuDetails = async (
|
||||||
|
spuId: number,
|
||||||
|
skuIds: number[] | undefined,
|
||||||
|
products?: PointProductVO[]
|
||||||
|
) => {
|
||||||
|
const spuProperties: SpuProperty<SpuExtension>[] = []
|
||||||
|
const res = (await ProductSpuApi.getSpuDetailList([spuId])) as SpuExtension[]
|
||||||
|
if (res.length == 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
spuList.value = []
|
||||||
|
// 因为只能选择一个
|
||||||
|
const spu = res[0]
|
||||||
|
const selectSkus =
|
||||||
|
typeof skuIds === 'undefined' ? spu?.skus : spu?.skus?.filter((sku) => skuIds.includes(sku.id!))
|
||||||
|
selectSkus?.forEach((sku) => {
|
||||||
|
let config: PointProductVO = {
|
||||||
|
skuId: sku.id!,
|
||||||
|
stock: 0,
|
||||||
|
price: 0,
|
||||||
|
point: 0,
|
||||||
|
count: 0
|
||||||
|
}
|
||||||
|
if (typeof products !== 'undefined') {
|
||||||
|
const product = products.find((item) => item.skuId === sku.id)
|
||||||
|
if (product) {
|
||||||
|
product.price = formatToFraction(product.price) as any
|
||||||
|
}
|
||||||
|
config = product || config
|
||||||
|
}
|
||||||
|
sku.productConfig = config
|
||||||
|
})
|
||||||
|
spu.skus = selectSkus as SkuExtension[]
|
||||||
|
spuProperties.push({
|
||||||
|
spuId: spu.id!,
|
||||||
|
spuDetail: spu,
|
||||||
|
propertyList: getPropertyList(spu)
|
||||||
|
})
|
||||||
|
spuList.value.push(spu)
|
||||||
|
spuPropertyList.value = spuProperties
|
||||||
|
}
|
||||||
|
|
||||||
|
// ================= end =================
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const open = async (type: string, id?: number) => {
|
||||||
|
dialogVisible.value = true
|
||||||
|
dialogTitle.value = t('action.' + type)
|
||||||
|
formType.value = type
|
||||||
|
await resetForm()
|
||||||
|
// 修改时,设置数据
|
||||||
|
if (id) {
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
const data = (await PointActivityApi.getPointActivity(id)) as PointActivityVO
|
||||||
|
isFormUpdate.value = true
|
||||||
|
await getSpuDetails(
|
||||||
|
data.spuId!,
|
||||||
|
data.products?.map((sku) => sku.skuId),
|
||||||
|
data.products
|
||||||
|
)
|
||||||
|
formRef.value.setValues(data)
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||||
|
|
||||||
|
/** 提交表单 */
|
||||||
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||||
|
const submitForm = async () => {
|
||||||
|
// 校验表单
|
||||||
|
if (!formRef) return
|
||||||
|
const valid = await formRef.value.getElFormRef().validate()
|
||||||
|
if (!valid) return
|
||||||
|
// 提交请求
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
// 获取秒杀商品配置
|
||||||
|
const products = cloneDeep(spuAndSkuListRef.value.getSkuConfigs('productConfig'))
|
||||||
|
products.forEach((item: PointProductVO) => {
|
||||||
|
item.price = convertToInteger(item.price)
|
||||||
|
})
|
||||||
|
const data = formRef.value.formModel as PointActivityVO
|
||||||
|
data.products = products
|
||||||
|
// 真正提交
|
||||||
|
if (formType.value === 'create') {
|
||||||
|
await PointActivityApi.createPointActivity(data)
|
||||||
|
message.success(t('common.createSuccess'))
|
||||||
|
} else {
|
||||||
|
await PointActivityApi.updatePointActivity(data)
|
||||||
|
message.success(t('common.updateSuccess'))
|
||||||
|
}
|
||||||
|
dialogVisible.value = false
|
||||||
|
// 发送操作成功的事件
|
||||||
|
emit('success')
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置表单 */
|
||||||
|
const resetForm = async () => {
|
||||||
|
spuList.value = []
|
||||||
|
spuPropertyList.value = []
|
||||||
|
isFormUpdate.value = false
|
||||||
|
await nextTick()
|
||||||
|
formRef.value.getElFormRef().resetFields()
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,219 @@
|
|||||||
|
<template>
|
||||||
|
<doc-alert title="【营销】积分商城活动" url="https://doc.iocoder.cn/mall/promotion-point/" />
|
||||||
|
|
||||||
|
<ContentWrap>
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<el-form
|
||||||
|
ref="queryFormRef"
|
||||||
|
:inline="true"
|
||||||
|
:model="queryParams"
|
||||||
|
class="-mb-15px"
|
||||||
|
label-width="68px"
|
||||||
|
>
|
||||||
|
<el-form-item label="活动状态" prop="status">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.status"
|
||||||
|
class="!w-240px"
|
||||||
|
clearable
|
||||||
|
placeholder="请选择活动状态"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||||||
|
:key="dict.value"
|
||||||
|
: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-button
|
||||||
|
v-hasPermi="['promotion:point-activity:create']"
|
||||||
|
plain
|
||||||
|
type="primary"
|
||||||
|
@click="openForm('create')"
|
||||||
|
>
|
||||||
|
<Icon class="mr-5px" icon="ep:plus" />
|
||||||
|
新增
|
||||||
|
</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</ContentWrap>
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<ContentWrap>
|
||||||
|
<el-table v-loading="loading" :data="list" :show-overflow-tooltip="true" :stripe="true">
|
||||||
|
<el-table-column label="活动编号" min-width="80" prop="id" />
|
||||||
|
<el-table-column label="商品图片" min-width="80" prop="spuName">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-image
|
||||||
|
:preview-src-list="[scope.row.picUrl]"
|
||||||
|
:src="scope.row.picUrl"
|
||||||
|
class="h-40px w-40px"
|
||||||
|
preview-teleported
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="商品标题" min-width="300" prop="spuName" />
|
||||||
|
<el-table-column
|
||||||
|
:formatter="fenToYuanFormat"
|
||||||
|
label="原价"
|
||||||
|
min-width="100"
|
||||||
|
prop="marketPrice"
|
||||||
|
/>
|
||||||
|
<el-table-column label="原价" min-width="100" prop="marketPrice" />
|
||||||
|
<el-table-column align="center" label="活动状态" min-width="100" 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="库存" min-width="80" prop="stock" />
|
||||||
|
<el-table-column align="center" label="总库存" min-width="80" prop="totalStock" />
|
||||||
|
<el-table-column align="center" label="已兑换数量" min-width="100" prop="redeemedQuantity">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ getRedeemedQuantity(row) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
align="center"
|
||||||
|
label="创建时间"
|
||||||
|
prop="createTime"
|
||||||
|
width="180px"
|
||||||
|
/>
|
||||||
|
<el-table-column align="center" fixed="right" label="操作" width="150px">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
v-hasPermi="['promotion:point-activity:update']"
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
@click="openForm('update', scope.row.id)"
|
||||||
|
>
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="scope.row.status === 0"
|
||||||
|
v-hasPermi="['promotion:point-activity:close']"
|
||||||
|
link
|
||||||
|
type="danger"
|
||||||
|
@click="handleClose(scope.row.id)"
|
||||||
|
>
|
||||||
|
关闭
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-else
|
||||||
|
v-hasPermi="['promotion:point-activity:delete']"
|
||||||
|
link
|
||||||
|
type="danger"
|
||||||
|
@click="handleDelete(scope.row.id)"
|
||||||
|
>
|
||||||
|
删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
:total="total"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</ContentWrap>
|
||||||
|
|
||||||
|
<!-- 表单弹窗:添加/修改 -->
|
||||||
|
<PointActivityForm ref="formRef" @success="getList" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
|
import PointActivityForm from './PointActivityForm.vue'
|
||||||
|
import { fenToYuanFormat } from '@/utils/formatter'
|
||||||
|
import { PointActivityApi } from '@/api/mall/promotion/point'
|
||||||
|
|
||||||
|
defineOptions({ name: 'PointActivity' })
|
||||||
|
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
|
||||||
|
const loading = ref(true) // 列表的加载中
|
||||||
|
const total = ref(0) // 列表的总页数
|
||||||
|
const list = ref([]) // 列表的数据
|
||||||
|
const queryParams = reactive({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: null,
|
||||||
|
status: null
|
||||||
|
})
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
const getRedeemedQuantity = computed(() => (row: any) => (row.totalStock || 0) - (row.stock || 0)) // 获得商品已兑换数量
|
||||||
|
|
||||||
|
/** 查询列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true
|
||||||
|
try {
|
||||||
|
const data = await PointActivityApi.getPointActivityPage(queryParams)
|
||||||
|
list.value = data.list
|
||||||
|
total.value = data.total
|
||||||
|
} finally {
|
||||||
|
loading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value.resetFields()
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 添加/修改操作 */
|
||||||
|
const formRef = ref()
|
||||||
|
const openForm = (type: string, id?: number) => {
|
||||||
|
formRef.value.open(type, id)
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 关闭按钮操作 */
|
||||||
|
const handleClose = async (id: number) => {
|
||||||
|
try {
|
||||||
|
// 关闭的二次确认
|
||||||
|
await message.confirm('确认关闭该积分商城活动吗?')
|
||||||
|
// 发起关闭
|
||||||
|
await PointActivityApi.closePointActivity(id)
|
||||||
|
message.success('关闭成功')
|
||||||
|
// 刷新列表
|
||||||
|
await getList()
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (id: number) => {
|
||||||
|
try {
|
||||||
|
// 删除的二次确认
|
||||||
|
await message.delConfirm()
|
||||||
|
// 发起删除
|
||||||
|
await PointActivityApi.deletePointActivity(id)
|
||||||
|
message.success(t('common.delSuccess'))
|
||||||
|
// 刷新列表
|
||||||
|
await getList()
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 初始化 **/
|
||||||
|
onMounted(async () => {
|
||||||
|
await getList()
|
||||||
|
})
|
||||||
|
</script>
|
@ -0,0 +1,55 @@
|
|||||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
||||||
|
|
||||||
|
// 表单校验
|
||||||
|
export const rules = reactive({
|
||||||
|
spuId: [required],
|
||||||
|
sort: [required]
|
||||||
|
})
|
||||||
|
|
||||||
|
// CrudSchema https://doc.iocoder.cn/vue3/crud-schema/
|
||||||
|
const crudSchemas = reactive<CrudSchema[]>([
|
||||||
|
{
|
||||||
|
label: '排序',
|
||||||
|
field: 'sort',
|
||||||
|
form: {
|
||||||
|
component: 'InputNumber',
|
||||||
|
value: 0
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
width: 80
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '积分商城活动商品',
|
||||||
|
field: 'spuId',
|
||||||
|
isTable: true,
|
||||||
|
isSearch: false,
|
||||||
|
form: {
|
||||||
|
colProps: {
|
||||||
|
span: 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
width: 300
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '备注',
|
||||||
|
field: 'remark',
|
||||||
|
isSearch: false,
|
||||||
|
form: {
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
type: 'textarea',
|
||||||
|
rows: 4
|
||||||
|
},
|
||||||
|
colProps: {
|
||||||
|
span: 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
width: 300
|
||||||
|
}
|
||||||
|
}
|
||||||
|
])
|
||||||
|
export const { allSchemas } = useCrudSchemas(crudSchemas)
|
@ -0,0 +1,154 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex flex-wrap items-center gap-8px">
|
||||||
|
<div
|
||||||
|
v-for="(pointActivity, index) in pointActivityList"
|
||||||
|
:key="pointActivity.id"
|
||||||
|
class="select-box spu-pic"
|
||||||
|
>
|
||||||
|
<el-tooltip :content="pointActivity.name">
|
||||||
|
<div class="relative h-full w-full">
|
||||||
|
<el-image :src="pointActivity.picUrl" class="h-full w-full" />
|
||||||
|
<Icon
|
||||||
|
v-show="!disabled"
|
||||||
|
class="del-icon"
|
||||||
|
icon="ep:circle-close-filled"
|
||||||
|
@click="handleRemoveActivity(index)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
<el-tooltip v-if="canAdd" content="选择活动">
|
||||||
|
<div class="select-box" @click="openSeckillActivityTableSelect">
|
||||||
|
<Icon icon="ep:plus" />
|
||||||
|
</div>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
<!-- 拼团活动选择对话框(表格形式) -->
|
||||||
|
<PointTableSelect
|
||||||
|
ref="pointActivityTableSelectRef"
|
||||||
|
:multiple="limit != 1"
|
||||||
|
@change="handleActivitySelected"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import PointTableSelect from './PointTableSelect.vue'
|
||||||
|
import { PointActivityApi, PointActivityVO } from '@/api/mall/promotion/point'
|
||||||
|
import { propTypes } from '@/utils/propTypes'
|
||||||
|
import { oneOfType } from 'vue-types'
|
||||||
|
import { isArray } from '@/utils/is'
|
||||||
|
|
||||||
|
// 活动橱窗,一般用于装修时使用
|
||||||
|
// 提供功能:展示活动列表、添加活动、删除活动
|
||||||
|
defineOptions({ name: 'PointShowcase' })
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
modelValue: oneOfType<number | Array<number>>([Number, Array]).isRequired,
|
||||||
|
// 限制数量:默认不限制
|
||||||
|
limit: propTypes.number.def(Number.MAX_VALUE),
|
||||||
|
disabled: propTypes.bool.def(false)
|
||||||
|
})
|
||||||
|
|
||||||
|
// 计算是否可以添加
|
||||||
|
const canAdd = computed(() => {
|
||||||
|
// 情况一:禁用时不可以添加
|
||||||
|
if (props.disabled) return false
|
||||||
|
// 情况二:未指定限制数量时,可以添加
|
||||||
|
if (!props.limit) return true
|
||||||
|
// 情况三:检查已添加数量是否小于限制数量
|
||||||
|
return pointActivityList.value.length < props.limit
|
||||||
|
})
|
||||||
|
|
||||||
|
// 拼团活动列表
|
||||||
|
const pointActivityList = ref<PointActivityVO[]>([])
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.modelValue,
|
||||||
|
async () => {
|
||||||
|
const ids = isArray(props.modelValue)
|
||||||
|
? // 情况一:多选
|
||||||
|
props.modelValue
|
||||||
|
: // 情况二:单选
|
||||||
|
props.modelValue
|
||||||
|
? [props.modelValue]
|
||||||
|
: []
|
||||||
|
// 不需要返显
|
||||||
|
if (ids.length === 0) {
|
||||||
|
pointActivityList.value = []
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 只有活动发生变化之后,才会查询活动
|
||||||
|
if (
|
||||||
|
pointActivityList.value.length === 0 ||
|
||||||
|
pointActivityList.value.some((pointActivity) => !ids.includes(pointActivity.id!))
|
||||||
|
) {
|
||||||
|
pointActivityList.value = await PointActivityApi.getPointActivityListByIds(ids)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ immediate: true }
|
||||||
|
)
|
||||||
|
|
||||||
|
/** 活动表格选择对话框 */
|
||||||
|
const pointActivityTableSelectRef = ref()
|
||||||
|
// 打开对话框
|
||||||
|
const openSeckillActivityTableSelect = () => {
|
||||||
|
pointActivityTableSelectRef.value.open(pointActivityList.value)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 选择活动后触发
|
||||||
|
* @param activityList 选中的活动列表
|
||||||
|
*/
|
||||||
|
const handleActivitySelected = (activityList: PointActivityVO | PointActivityVO[]) => {
|
||||||
|
pointActivityList.value = isArray(activityList) ? activityList : [activityList]
|
||||||
|
emitActivityChange()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除活动
|
||||||
|
* @param index 活动索引
|
||||||
|
*/
|
||||||
|
const handleRemoveActivity = (index: number) => {
|
||||||
|
pointActivityList.value.splice(index, 1)
|
||||||
|
emitActivityChange()
|
||||||
|
}
|
||||||
|
const emit = defineEmits(['update:modelValue', 'change'])
|
||||||
|
const emitActivityChange = () => {
|
||||||
|
if (props.limit === 1) {
|
||||||
|
const pointActivity = pointActivityList.value.length > 0 ? pointActivityList.value[0] : null
|
||||||
|
emit('update:modelValue', pointActivity?.id || 0)
|
||||||
|
emit('change', pointActivity)
|
||||||
|
} else {
|
||||||
|
emit(
|
||||||
|
'update:modelValue',
|
||||||
|
pointActivityList.value.map((pointActivity) => pointActivity.id)
|
||||||
|
)
|
||||||
|
emit('change', pointActivityList.value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.select-box {
|
||||||
|
display: flex;
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
border: 1px dashed var(--el-border-color-darker);
|
||||||
|
border-radius: 8px;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spu-pic {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.del-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: -10px;
|
||||||
|
right: -10px;
|
||||||
|
z-index: 1;
|
||||||
|
width: 20px !important;
|
||||||
|
height: 20px !important;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,300 @@
|
|||||||
|
<template>
|
||||||
|
<Dialog v-model="dialogVisible" :appendToBody="true" title="选择活动" width="70%">
|
||||||
|
<ContentWrap>
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<el-form
|
||||||
|
ref="queryFormRef"
|
||||||
|
:inline="true"
|
||||||
|
:model="queryParams"
|
||||||
|
class="-mb-15px"
|
||||||
|
label-width="68px"
|
||||||
|
>
|
||||||
|
<el-form-item label="活动状态" prop="status">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.status"
|
||||||
|
class="!w-240px"
|
||||||
|
clearable
|
||||||
|
placeholder="请选择活动状态"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||||||
|
:key="dict.value"
|
||||||
|
: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>
|
||||||
|
<el-table v-loading="loading" :data="list" show-overflow-tooltip>
|
||||||
|
<!-- 1. 多选模式(不能使用type="selection",Element会忽略Header插槽) -->
|
||||||
|
<el-table-column v-if="multiple" width="55">
|
||||||
|
<template #header>
|
||||||
|
<el-checkbox
|
||||||
|
v-model="isCheckAll"
|
||||||
|
:indeterminate="isIndeterminate"
|
||||||
|
@change="handleCheckAll"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-checkbox
|
||||||
|
v-model="checkedStatus[row.id]"
|
||||||
|
@change="(checked: boolean) => handleCheckOne(checked, row, true)"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<!-- 2. 单选模式 -->
|
||||||
|
<el-table-column v-else label="#" width="55">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-radio
|
||||||
|
v-model="selectedActivityId"
|
||||||
|
:value="row.id"
|
||||||
|
@change="handleSingleSelected(row)"
|
||||||
|
>
|
||||||
|
<!-- 空格不能省略,是为了让单选框不显示label,如果不指定label不会有选中的效果 -->
|
||||||
|
|
||||||
|
</el-radio>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="活动编号" min-width="80" prop="id" />
|
||||||
|
<el-table-column label="商品图片" min-width="80" prop="spuName">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-image
|
||||||
|
:preview-src-list="[scope.row.picUrl]"
|
||||||
|
:src="scope.row.picUrl"
|
||||||
|
class="h-40px w-40px"
|
||||||
|
preview-teleported
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="商品标题" min-width="300" prop="spuName" />
|
||||||
|
<el-table-column
|
||||||
|
:formatter="fenToYuanFormat"
|
||||||
|
label="原价"
|
||||||
|
min-width="100"
|
||||||
|
prop="marketPrice"
|
||||||
|
/>
|
||||||
|
<el-table-column label="原价" min-width="100" prop="marketPrice" />
|
||||||
|
<el-table-column align="center" label="活动状态" min-width="100" 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="库存" min-width="80" prop="stock" />
|
||||||
|
<el-table-column align="center" label="总库存" min-width="80" prop="totalStock" />
|
||||||
|
<el-table-column align="center" label="已兑换数量" min-width="100" prop="redeemedQuantity">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ getRedeemedQuantity(row) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
align="center"
|
||||||
|
label="创建时间"
|
||||||
|
prop="createTime"
|
||||||
|
width="180px"
|
||||||
|
/>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
:total="total"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</ContentWrap>
|
||||||
|
<template v-if="multiple" #footer>
|
||||||
|
<el-button type="primary" @click="handleEmitChange">确 定</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { propTypes } from '@/utils/propTypes'
|
||||||
|
import { CHANGE_EVENT } from 'element-plus'
|
||||||
|
import { PointActivityApi, PointActivityVO } from '@/api/mall/promotion/point'
|
||||||
|
import { fenToYuanFormat } from '@/utils/formatter'
|
||||||
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 活动表格选择对话框
|
||||||
|
* 1. 单选模式:
|
||||||
|
* 1.1 点击表格左侧的单选框时,结束选择,并关闭对话框
|
||||||
|
* 1.2 再次打开时,保持选中状态
|
||||||
|
* 2. 多选模式:
|
||||||
|
* 2.1 点击表格左侧的多选框时,记录选中的活动
|
||||||
|
* 2.2 切换分页时,保持活动的选中状态
|
||||||
|
* 2.3 点击右下角的确定按钮时,结束选择,关闭对话框
|
||||||
|
* 2.4 再次打开时,保持选中状态
|
||||||
|
*/
|
||||||
|
defineOptions({ name: 'PointTableSelect' })
|
||||||
|
|
||||||
|
defineProps({
|
||||||
|
// 多选模式
|
||||||
|
multiple: propTypes.bool.def(false)
|
||||||
|
})
|
||||||
|
|
||||||
|
// 列表的总页数
|
||||||
|
const total = ref(0)
|
||||||
|
// 列表的数据
|
||||||
|
const list = ref<PointActivityVO[]>([])
|
||||||
|
// 列表的加载中
|
||||||
|
const loading = ref(false)
|
||||||
|
// 弹窗的是否展示
|
||||||
|
const dialogVisible = ref(false)
|
||||||
|
// 查询参数
|
||||||
|
const queryParams = ref({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: null,
|
||||||
|
status: undefined
|
||||||
|
})
|
||||||
|
const getRedeemedQuantity = computed(() => (row: any) => (row.totalStock || 0) - (row.stock || 0)) // 获得商品已兑换数量
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const open = (pointList?: PointActivityVO[]) => {
|
||||||
|
// 重置
|
||||||
|
checkedActivities.value = []
|
||||||
|
checkedStatus.value = {}
|
||||||
|
isCheckAll.value = false
|
||||||
|
isIndeterminate.value = false
|
||||||
|
|
||||||
|
// 处理已选中
|
||||||
|
if (pointList && pointList.length > 0) {
|
||||||
|
checkedActivities.value = [...pointList]
|
||||||
|
checkedStatus.value = Object.fromEntries(pointList.map((activityVO) => [activityVO.id, true]))
|
||||||
|
}
|
||||||
|
|
||||||
|
dialogVisible.value = true
|
||||||
|
resetQuery()
|
||||||
|
}
|
||||||
|
// 提供 open 方法,用于打开弹窗
|
||||||
|
defineExpose({ open })
|
||||||
|
|
||||||
|
/** 查询列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true
|
||||||
|
try {
|
||||||
|
const data = await PointActivityApi.getPointActivityPage(queryParams.value)
|
||||||
|
list.value = data.list
|
||||||
|
total.value = data.total
|
||||||
|
// checkbox绑定undefined会有问题,需要给一个bool值
|
||||||
|
list.value.forEach(
|
||||||
|
(activityVO) =>
|
||||||
|
(checkedStatus.value[activityVO.id] = checkedStatus.value[activityVO.id] || false)
|
||||||
|
)
|
||||||
|
// 计算全选框状态
|
||||||
|
calculateIsCheckAll()
|
||||||
|
} finally {
|
||||||
|
loading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryParams.value = {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: null,
|
||||||
|
status: undefined
|
||||||
|
}
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 是否全选
|
||||||
|
const isCheckAll = ref(false)
|
||||||
|
// 全选框是否处于中间状态:不是全部选中 && 任意一个选中
|
||||||
|
const isIndeterminate = ref(false)
|
||||||
|
// 选中的活动
|
||||||
|
const checkedActivities = ref<PointActivityVO[]>([])
|
||||||
|
// 选中状态:key为活动ID,value为是否选中
|
||||||
|
const checkedStatus = ref<Record<string, boolean>>({})
|
||||||
|
|
||||||
|
// 选中的活动 activityId
|
||||||
|
const selectedActivityId = ref()
|
||||||
|
/** 单选中时触发 */
|
||||||
|
const handleSingleSelected = (pointActivityVO: PointActivityVO) => {
|
||||||
|
emits(CHANGE_EVENT, pointActivityVO)
|
||||||
|
// 关闭弹窗
|
||||||
|
dialogVisible.value = false
|
||||||
|
// 记住上次选择的ID
|
||||||
|
selectedActivityId.value = pointActivityVO.id
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 多选完成 */
|
||||||
|
const handleEmitChange = () => {
|
||||||
|
// 关闭弹窗
|
||||||
|
dialogVisible.value = false
|
||||||
|
emits(CHANGE_EVENT, [...checkedActivities.value])
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 确认选择时的触发事件 */
|
||||||
|
const emits = defineEmits<{
|
||||||
|
(e: CHANGE_EVENT, v: PointActivityVO | PointActivityVO[] | any): void
|
||||||
|
}>()
|
||||||
|
|
||||||
|
/** 全选/全不选 */
|
||||||
|
const handleCheckAll = (checked: boolean) => {
|
||||||
|
isCheckAll.value = checked
|
||||||
|
isIndeterminate.value = false
|
||||||
|
|
||||||
|
list.value.forEach((pointActivity) => handleCheckOne(checked, pointActivity, false))
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 选中一行
|
||||||
|
* @param checked 是否选中
|
||||||
|
* @param pointActivity 活动
|
||||||
|
* @param isCalcCheckAll 是否计算全选
|
||||||
|
*/
|
||||||
|
const handleCheckOne = (
|
||||||
|
checked: boolean,
|
||||||
|
pointActivity: PointActivityVO,
|
||||||
|
isCalcCheckAll: boolean
|
||||||
|
) => {
|
||||||
|
if (checked) {
|
||||||
|
checkedActivities.value.push(pointActivity)
|
||||||
|
checkedStatus.value[pointActivity.id] = true
|
||||||
|
} else {
|
||||||
|
const index = findCheckedIndex(pointActivity)
|
||||||
|
if (index > -1) {
|
||||||
|
checkedActivities.value.splice(index, 1)
|
||||||
|
checkedStatus.value[pointActivity.id] = false
|
||||||
|
isCheckAll.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 计算全选框状态
|
||||||
|
if (isCalcCheckAll) {
|
||||||
|
calculateIsCheckAll()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查找活动在已选中活动列表中的索引
|
||||||
|
const findCheckedIndex = (activityVO: PointActivityVO) =>
|
||||||
|
checkedActivities.value.findIndex((item) => item.id === activityVO.id)
|
||||||
|
|
||||||
|
// 计算全选框状态
|
||||||
|
const calculateIsCheckAll = () => {
|
||||||
|
isCheckAll.value = list.value.every((activityVO) => checkedStatus.value[activityVO.id])
|
||||||
|
// 计算中间状态:不是全部选中 && 任意一个选中
|
||||||
|
isIndeterminate.value =
|
||||||
|
!isCheckAll.value && list.value.some((activityVO) => checkedStatus.value[activityVO.id])
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user