REVIEW 商品属性

This commit is contained in:
YunaiV
2023-04-02 09:46:45 +08:00
parent 5a5202d483
commit b18bf8a95f
2 changed files with 53 additions and 54 deletions

View File

@@ -1,9 +1,15 @@
<template>
<content-wrap>
<!-- 搜索工作栏 -->
<el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
<!-- 搜索工作栏 -->
<ContentWrap>
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="68px"
>
<el-form-item label="属性项" prop="propertyId">
<el-select v-model="queryParams.propertyId">
<el-select v-model="queryParams.propertyId" class="!w-240px">
<el-option
v-for="item in propertyOptions"
:key="item.id"
@@ -18,19 +24,27 @@
placeholder="请输入名称"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item>
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
<el-button type="primary" @click="openModal('create')" v-hasPermi="['infra:config:create']">
<el-button
plain
type="primary"
@click="openForm('create')"
v-hasPermi="['product:property:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<el-table v-loading="loading" :data="list" align="center">
<!-- 列表 -->
<ContentWrap>
<el-table v-loading="loading" :data="list">
<el-table-column label="编号" align="center" prop="id" />
<el-table-column label="名称" align="center" prop="name" :show-overflow-tooltip="true" />
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" />
@@ -46,8 +60,8 @@
<el-button
link
type="primary"
@click="openModal('update', scope.row.id)"
v-hasPermi="['infra:config:update']"
@click="openForm('update', scope.row.id)"
v-hasPermi="['product:property:update']"
>
编辑
</el-button>
@@ -55,7 +69,7 @@
link
type="danger"
@click="handleDelete(scope.row.id)"
v-hasPermi="['infra:config:delete']"
v-hasPermi="['product:property:delete']"
>
删除
</el-button>
@@ -69,30 +83,30 @@
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</content-wrap>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
<value-form ref="modalRef" @success="getList" />
<ValueForm ref="formRef" @success="getList" />
</template>
<script setup lang="ts" name="Config">
import { dateFormatter } from '@/utils/formatTime'
import * as PropertyApi from '@/api/mall/product/property'
import ValueForm from './form.vue'
import ValueForm from './ValueForm.vue'
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
const { params } = useRoute() // 查询参数
const loading = ref(true) // 列表的加载中
const total = ref(0) // 列表的总页数
const list = ref([]) // 列表的数据
const propertyOptions = ref<any[]>([])
const defaultPropertyId = ref()
const queryParams = reactive<any>({
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
name: undefined,
propertyId: undefined
propertyId: Number(params.propertyId),
name: undefined
})
const queryFormRef = ref() // 搜索的表单
const propertyOptions = ref([]) // 属性项的列表
/** 查询参数列表 */
const getList = async () => {
@@ -106,20 +120,6 @@ const getList = async () => {
}
}
/** 属性项下拉框数据 */
const getPropertyList = async () => {
const data = await PropertyApi.getPropertyList({})
propertyOptions.value = data
}
/** 查询字典类型详细 */
const getProperty = async (propertyId: number) => {
const data = await PropertyApi.getProperty(propertyId)
queryParams.propertyId = data.id
defaultPropertyId.value = data.id
await getList()
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
@@ -133,9 +133,9 @@ const resetQuery = () => {
}
/** 添加/修改操作 */
const modalRef = ref()
const openModal = (type: string, id?: number) => {
modalRef.value.openModal(type, defaultPropertyId, id)
const formRef = ref()
const openForm = (type: string, id?: number) => {
formRef.value.open(type, queryParams.propertyId, id)
}
/** 删除按钮操作 */
@@ -152,11 +152,9 @@ const handleDelete = async (id: number) => {
}
/** 初始化 **/
const router = useRouter()
onMounted(() => {
const propertyId: number =
router.currentRoute.value.params && (router.currentRoute.value.params.propertyId as any)
getProperty(propertyId)
getPropertyList()
onMounted(async () => {
await getList()
// 属性项下拉框数据
propertyOptions.value = await PropertyApi.getPropertyList({})
})
</script>