2024-05-16 17:57:21 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-form ref="queryForm" :model="searchForm" label-width="0" inline>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="searchForm.name"
|
|
|
|
|
placeholder="请输入名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button @click="resetQuery">重置</el-button>
|
|
|
|
|
<el-button type="primary" @click="openForm('create', null)">新增</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
2024-05-31 17:38:17 +08:00
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
|
<el-table-column prop="name" label="品牌名称" />
|
|
|
|
|
<el-table-column prop="sort" label="排序" width="100px" />
|
|
|
|
|
<el-table-column prop="description" label="备注" />
|
|
|
|
|
<el-table-column label="开启状态" prop="status">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="创建时间"
|
|
|
|
|
prop="createTime"
|
|
|
|
|
width="180px"
|
|
|
|
|
:formatter="dateFormatter"
|
|
|
|
|
/>
|
2024-05-16 17:57:21 +08:00
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template #default="scope">
|
2024-05-31 17:38:17 +08:00
|
|
|
<el-button type="primary" text @click="openForm('update', scope.row.id)">修改</el-button>
|
|
|
|
|
<el-button type="danger" text @click="handleDelete(scope.row.id)">删除</el-button>
|
2024-05-16 17:57:21 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<Pagination
|
|
|
|
|
v-model:limit="searchForm.pageSize"
|
2024-05-31 17:38:17 +08:00
|
|
|
v-model:page="searchForm.pageNo"
|
2024-05-16 17:57:21 +08:00
|
|
|
:total="total"
|
|
|
|
|
@pagination="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<DialogBrand ref="brandDialog" @success="handleQuery" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="BrandSet">
|
2024-05-31 17:38:17 +08:00
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
|
import * as ProductBrandApi from '@/api/mall/product/brand'
|
2024-05-16 17:57:21 +08:00
|
|
|
import DialogBrand from './DialogBrand.vue'
|
|
|
|
|
|
|
|
|
|
const searchForm = ref({
|
2024-05-31 17:38:17 +08:00
|
|
|
name: undefined,
|
|
|
|
|
pageNo: 1,
|
2024-05-16 17:57:21 +08:00
|
|
|
pageSize: 20
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const total = ref(0)
|
|
|
|
|
const brandDialog = ref()
|
2024-05-31 17:38:17 +08:00
|
|
|
const list = ref([])
|
2024-05-16 17:57:21 +08:00
|
|
|
const loading = ref(false)
|
|
|
|
|
|
|
|
|
|
function handleQuery() {
|
2024-05-31 17:38:17 +08:00
|
|
|
searchForm.value.pageNo = 1
|
2024-05-16 17:57:21 +08:00
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
function resetQuery() {
|
|
|
|
|
searchForm.value = {
|
|
|
|
|
name: '',
|
|
|
|
|
pageSize: 20,
|
2024-05-31 17:38:17 +08:00
|
|
|
pageNo: 1
|
2024-05-16 17:57:21 +08:00
|
|
|
}
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-31 17:38:17 +08:00
|
|
|
async function getList() {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
|
|
|
|
const data = await ProductBrandApi.getBrandParam(searchForm.value)
|
|
|
|
|
list.value = data.list
|
|
|
|
|
total.value = data.total
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
2024-05-16 17:57:21 +08:00
|
|
|
}
|
|
|
|
|
|
2024-05-31 17:38:17 +08:00
|
|
|
function openForm(type, id) {
|
|
|
|
|
brandDialog.value.open(type, id)
|
2024-05-16 17:57:21 +08:00
|
|
|
}
|
|
|
|
|
|
2024-05-31 17:38:17 +08:00
|
|
|
async function handleDelete(id) {
|
2024-05-16 17:57:21 +08:00
|
|
|
try {
|
|
|
|
|
// 删除的二次确认
|
|
|
|
|
await message.delConfirm()
|
|
|
|
|
// 发起删除
|
2024-05-31 17:38:17 +08:00
|
|
|
await ProductBrandApi.deleteBrand(id)
|
2024-05-16 17:57:21 +08:00
|
|
|
message.success(t('common.delSuccess'))
|
|
|
|
|
// 刷新列表
|
|
|
|
|
await getList()
|
|
|
|
|
} catch {}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|