|
@@ -10,11 +10,11 @@
|
|
|
<el-form-item label="上级分类" prop="parentId">
|
|
|
<el-tree-select
|
|
|
v-model="formData.parentId"
|
|
|
- :data="parentCategoryOptions"
|
|
|
- check-strictly
|
|
|
- :render-after-expand="false"
|
|
|
- placeholder="上级分类"
|
|
|
+ :data="categoryTree"
|
|
|
:props="{ label: 'name', value: 'id' }"
|
|
|
+ :render-after-expand="false"
|
|
|
+ placeholder="请选择上级分类"
|
|
|
+ check-strictly
|
|
|
default-expand-all
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -32,10 +32,11 @@
|
|
|
<el-form-item label="开启状态" prop="status">
|
|
|
<el-radio-group v-model="formData.status">
|
|
|
<el-radio
|
|
|
- v-for="dict in getDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
+ v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
:key="dict.value"
|
|
|
- :label="parseInt(dict.value)"
|
|
|
- >{{ dict.label }}
|
|
|
+ :label="dict.value"
|
|
|
+ >
|
|
|
+ {{ dict.label }}
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
@@ -44,18 +45,16 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<template #footer>
|
|
|
- <div class="dialog-footer">
|
|
|
- <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
|
|
- <el-button @click="modelVisible = false">取 消</el-button>
|
|
|
- </div>
|
|
|
+ <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
|
|
+ <el-button @click="modelVisible = false">取 消</el-button>
|
|
|
</template>
|
|
|
</Dialog>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
-import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
|
|
-import * as ProductCategoryApi from '@/api/mall/product/category'
|
|
|
+import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
|
+import { CommonStatusEnum } from '@/utils/constants'
|
|
|
import { handleTree } from '@/utils/tree'
|
|
|
-
|
|
|
+import * as ProductCategoryApi from '@/api/mall/product/category'
|
|
|
const { t } = useI18n() // 国际化
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
@@ -63,15 +62,13 @@ const modelVisible = ref(false) // 弹窗的是否展示
|
|
|
const modelTitle = ref('') // 弹窗的标题
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
|
-
|
|
|
-const defaultFormData: ProductCategoryApi.CategoryVO = {
|
|
|
+const formData = ref({
|
|
|
id: undefined,
|
|
|
name: '',
|
|
|
picUrl: '',
|
|
|
- status: 0,
|
|
|
+ status: CommonStatusEnum.ENABLE,
|
|
|
description: ''
|
|
|
-}
|
|
|
-const formData = ref({ ...defaultFormData })
|
|
|
+})
|
|
|
const formRules = reactive({
|
|
|
parentId: [{ required: true, message: '请选择上级分类', trigger: 'blur' }],
|
|
|
name: [{ required: true, message: '分类名称不能为空', trigger: 'blur' }],
|
|
@@ -80,17 +77,14 @@ const formRules = reactive({
|
|
|
status: [{ required: true, message: '开启状态不能为空', trigger: 'blur' }]
|
|
|
})
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
-
|
|
|
-const list = ref([])
|
|
|
-const parentCategoryOptions = ref<any[]>([])
|
|
|
+const categoryTree = ref<any[]>([]) // 分类树
|
|
|
|
|
|
/** 打开弹窗 */
|
|
|
-const openModal = async (type: string, id?: number) => {
|
|
|
+const open = async (type: string, id?: number) => {
|
|
|
modelVisible.value = true
|
|
|
modelTitle.value = t('action.' + type)
|
|
|
formType.value = type
|
|
|
resetForm()
|
|
|
- getList()
|
|
|
// 修改时,设置数据
|
|
|
if (id) {
|
|
|
formLoading.value = true
|
|
@@ -100,20 +94,10 @@ const openModal = async (type: string, id?: number) => {
|
|
|
formLoading.value = false
|
|
|
}
|
|
|
}
|
|
|
+ // 获得分类树
|
|
|
+ await getTree()
|
|
|
}
|
|
|
-defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
|
|
|
-
|
|
|
-// 获取上级分类选项
|
|
|
-const getList = async () => {
|
|
|
- try {
|
|
|
- const data = await ProductCategoryApi.getCategoryList({})
|
|
|
- list.value = data
|
|
|
- const tree = handleTree(data, 'id', 'parentId')
|
|
|
- const menu = { id: 0, name: '顶级分类', children: tree }
|
|
|
- parentCategoryOptions.value = [menu]
|
|
|
- } finally {
|
|
|
- }
|
|
|
-}
|
|
|
+defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
|
|
|
/** 提交表单 */
|
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
@@ -143,7 +127,21 @@ const submitForm = async () => {
|
|
|
|
|
|
/** 重置表单 */
|
|
|
const resetForm = () => {
|
|
|
- formData.value = { ...defaultFormData }
|
|
|
+ formData.value = {
|
|
|
+ id: undefined,
|
|
|
+ name: '',
|
|
|
+ picUrl: '',
|
|
|
+ status: CommonStatusEnum.ENABLE,
|
|
|
+ description: ''
|
|
|
+ }
|
|
|
formRef.value?.resetFields()
|
|
|
}
|
|
|
+
|
|
|
+/** 获得分类树 */
|
|
|
+const getTree = async () => {
|
|
|
+ const data = await ProductCategoryApi.getCategoryList({})
|
|
|
+ const tree = handleTree(data, 'id', 'parentId')
|
|
|
+ const menu = { id: 0, name: '顶级分类', children: tree }
|
|
|
+ categoryTree.value = [menu]
|
|
|
+}
|
|
|
</script>
|