118 lines
3.7 KiB
Vue
118 lines
3.7 KiB
Vue
|
<template>
|
|||
|
<!-- 搜索工作栏 -->
|
|||
|
<ContentWrap>
|
|||
|
<Search :schema="allSchemas.searchSchema" @reset="setSearchParams" @search="setSearchParams">
|
|||
|
<!-- 新增等操作按钮 -->
|
|||
|
<template #actionMore>
|
|||
|
<el-button
|
|||
|
v-hasPermi="['promotion:bargain-activity:create']"
|
|||
|
plain
|
|||
|
type="primary"
|
|||
|
@click="openForm('create')"
|
|||
|
>
|
|||
|
<Icon class="mr-5px" icon="ep:plus" />
|
|||
|
新增
|
|||
|
</el-button>
|
|||
|
</template>
|
|||
|
</Search>
|
|||
|
</ContentWrap>
|
|||
|
|
|||
|
<!-- 列表 -->
|
|||
|
<ContentWrap>
|
|||
|
<Table
|
|||
|
v-model:currentPage="tableObject.currentPage"
|
|||
|
v-model:pageSize="tableObject.pageSize"
|
|||
|
:columns="allSchemas.tableColumns"
|
|||
|
:data="tableObject.tableList"
|
|||
|
:loading="tableObject.loading"
|
|||
|
:pagination="{
|
|||
|
total: tableObject.total
|
|||
|
}"
|
|||
|
>
|
|||
|
<template #spuId="{ row }">
|
|||
|
<el-image
|
|||
|
:src="row.picUrl"
|
|||
|
class="w-30px h-30px align-middle mr-5px"
|
|||
|
@click="imagePreview(row.picUrl)"
|
|||
|
/>
|
|||
|
<span class="align-middle">{{ row.spuName }}</span>
|
|||
|
</template>
|
|||
|
<template #action="{ row }">
|
|||
|
<el-button
|
|||
|
v-hasPermi="['promotion:bargain-activity:update']"
|
|||
|
link
|
|||
|
type="primary"
|
|||
|
@click="openForm('update', row.id)"
|
|||
|
>
|
|||
|
编辑
|
|||
|
</el-button>
|
|||
|
<el-button
|
|||
|
v-hasPermi="['promotion:bargain-activity:delete']"
|
|||
|
link
|
|||
|
type="danger"
|
|||
|
@click="handleDelete(row.id)"
|
|||
|
>
|
|||
|
删除
|
|||
|
</el-button>
|
|||
|
</template>
|
|||
|
</Table>
|
|||
|
</ContentWrap>
|
|||
|
|
|||
|
<!-- 表单弹窗:添加/修改 -->
|
|||
|
<BargainActivityForm ref="formRef" @success="getList" />
|
|||
|
</template>
|
|||
|
<script lang="ts" setup>
|
|||
|
import { allSchemas } from './bargainActivity.data'
|
|||
|
import * as BargainActivityApi from '@/api/mall/promotion/bargain/bargainActivity'
|
|||
|
import BargainActivityForm from './BargainActivityForm.vue'
|
|||
|
import { cloneDeep } from 'lodash-es'
|
|||
|
import { createImageViewer } from '@/components/ImageViewer'
|
|||
|
|
|||
|
defineOptions({ name: 'PromotionBargainActivity' })
|
|||
|
|
|||
|
// tableObject:表格的属性对象,可获得分页大小、条数等属性
|
|||
|
// tableMethods:表格的操作对象,可进行获得分页、删除记录等操作
|
|||
|
// 详细可见:https://doc.iocoder.cn/vue3/crud-schema/
|
|||
|
const { tableObject, tableMethods } = useTable({
|
|||
|
getListApi: BargainActivityApi.getBargainActivityPage, // 分页接口
|
|||
|
delListApi: BargainActivityApi.deleteBargainActivity // 删除接口
|
|||
|
})
|
|||
|
// 获得表格的各种操作
|
|||
|
const { getList, setSearchParams } = tableMethods
|
|||
|
|
|||
|
/** 商品图预览 */
|
|||
|
const imagePreview = (imgUrl: string) => {
|
|||
|
createImageViewer({
|
|||
|
urlList: [imgUrl]
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
/** 添加/修改操作 */
|
|||
|
const formRef = ref()
|
|||
|
const openForm = (type: string, id?: number) => {
|
|||
|
formRef.value.open(type, id)
|
|||
|
}
|
|||
|
|
|||
|
/** 删除按钮操作 */
|
|||
|
const handleDelete = (id: number) => {
|
|||
|
tableMethods.delList(id, false)
|
|||
|
}
|
|||
|
|
|||
|
// TODO @puhui999:要不还是使用原生的 element plus 做。感觉 crud schema 复杂界面,做起来麻烦
|
|||
|
/** 初始化 **/
|
|||
|
onMounted(() => {
|
|||
|
/**
|
|||
|
TODO
|
|||
|
后面准备封装成一个函数来操作 tableColumns 重新排列:比如说需求是表单上商品选择是在后面的而列表展示的时候需要调到位置。
|
|||
|
封装效果支持批量操作,给出 field 和需要插入的位置,例:[{field:'spuId',index: 1}] 效果为把 field 为 spuId 的 column 移动到第一个位置
|
|||
|
*/
|
|||
|
// 处理一下表格列让商品往前
|
|||
|
const index = allSchemas.tableColumns.findIndex((item) => item.field === 'spuId')
|
|||
|
const column = cloneDeep(allSchemas.tableColumns[index])
|
|||
|
allSchemas.tableColumns.splice(index, 1)
|
|||
|
// 添加到开头
|
|||
|
allSchemas.tableColumns.unshift(column)
|
|||
|
getList()
|
|||
|
})
|
|||
|
</script>
|