diff --git a/apps/web-antd/src/views/mall/product/brand/data.ts b/apps/web-antd/src/views/mall/product/brand/data.ts
new file mode 100644
index 000000000..e2202ee80
--- /dev/null
+++ b/apps/web-antd/src/views/mall/product/brand/data.ts
@@ -0,0 +1,135 @@
+import type { VbenFormSchema } from '#/adapter/form';
+import type { VxeGridPropTypes } from '#/adapter/vxe-table';
+
+import { z } from '#/adapter/form';
+import {
+ CommonStatusEnum,
+ DICT_TYPE,
+ getDictOptions,
+ getRangePickerDefaultProps,
+} from '#/utils';
+
+/** 新增/修改的表单 */
+export function useFormSchema(): VbenFormSchema[] {
+ return [
+ {
+ component: 'Input',
+ fieldName: 'id',
+ dependencies: {
+ triggerFields: [''],
+ show: () => false,
+ },
+ },
+ {
+ fieldName: 'name',
+ label: '品牌名称',
+ component: 'Input',
+ rules: 'required',
+ },
+ {
+ fieldName: 'picUrl',
+ label: '品牌图片',
+ component: 'ImageUpload',
+ componentProps: {
+ maxSize: 1,
+ },
+ rules: 'required',
+ },
+ {
+ fieldName: 'sort',
+ label: '品牌排序',
+ component: 'InputNumber',
+ componentProps: {
+ min: 0,
+ controlsPosition: 'right',
+ placeholder: '请输入品牌排序',
+ },
+ rules: z.number().min(0).default(1),
+ },
+ {
+ fieldName: 'status',
+ label: '品牌状态',
+ component: 'RadioGroup',
+ componentProps: {
+ options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
+ buttonStyle: 'solid',
+ optionType: 'button',
+ },
+ rules: z.number().default(CommonStatusEnum.ENABLE),
+ },
+ {
+ fieldName: 'description',
+ label: '品牌描述',
+ component: 'Textarea',
+ },
+ ];
+}
+
+/** 列表的搜索表单 */
+export function useGridFormSchema(): VbenFormSchema[] {
+ return [
+ {
+ fieldName: 'name',
+ label: '品牌名称',
+ component: 'Input',
+ },
+ {
+ fieldName: 'status',
+ label: '品牌状态',
+ component: 'Select',
+ componentProps: {
+ options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
+ },
+ },
+ {
+ fieldName: 'createTime',
+ label: '创建时间',
+ component: 'RangePicker',
+ componentProps: {
+ ...getRangePickerDefaultProps(),
+ allowClear: true,
+ },
+ },
+ ];
+}
+
+/** 表格列配置 */
+export function useGridColumns(): VxeGridPropTypes.Columns {
+ return [
+ {
+ field: 'name',
+ title: '分类名称',
+ fixed: 'left',
+ },
+ {
+ field: 'picUrl',
+ title: '品牌图片',
+ cellRender: {
+ name: 'CellImage',
+ },
+ },
+ {
+ field: 'sort',
+ title: '品牌排序',
+ },
+ {
+ field: 'status',
+ title: '开启状态',
+ cellRender: {
+ name: 'CellDict',
+ props: { type: DICT_TYPE.COMMON_STATUS },
+ },
+ },
+ {
+ field: 'createTime',
+ title: '创建时间',
+ formatter: 'formatDateTime',
+ },
+ {
+ title: '操作',
+ width: 180,
+ fixed: 'right',
+ slots: { default: 'actions' },
+ },
+ ];
+}
diff --git a/apps/web-antd/src/views/mall/product/brand/index.vue b/apps/web-antd/src/views/mall/product/brand/index.vue
index 48ddb8da0..a9669af91 100644
--- a/apps/web-antd/src/views/mall/product/brand/index.vue
+++ b/apps/web-antd/src/views/mall/product/brand/index.vue
@@ -1,34 +1,127 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/views/mall/product/brand/modules/form.vue b/apps/web-antd/src/views/mall/product/brand/modules/form.vue
new file mode 100644
index 000000000..b4b6d01e9
--- /dev/null
+++ b/apps/web-antd/src/views/mall/product/brand/modules/form.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+