v3.8.1发布,上传前端代码

This commit is contained in:
JEECG
2025-06-25 16:04:02 +08:00
parent 3d414aaec8
commit 0148f45979
120 changed files with 4783 additions and 486 deletions

View File

@ -271,7 +271,33 @@ export const packColumns: BasicColumn[] = [
},
},
{
title: '备注',
title: '备注说明',
dataIndex: 'remarks',
width: 150,
},
];
//套餐包列表
export const defalutPackColumns: BasicColumn[] = [
{
title: '默认套餐名称',
dataIndex: 'packName',
width: 100,
},
{
title: '状态',
dataIndex: 'status',
width: 100,
customRender: ({ text }) => {
if (text === '1') {
return '开启';
} else {
return '关闭';
}
},
},
{
title: '备注说明',
dataIndex: 'remarks',
width: 150,
},
@ -281,7 +307,17 @@ export const packColumns: BasicColumn[] = [
export const packFormSchema: FormSchema[] = [
{
field: 'packName',
label: '套餐包名',
label: '套餐包名',
component: 'JInput',
colProps: { xxl: 8 },
},
];
//套餐包搜索表单
export const defaultPackFormSchema: FormSchema[] = [
{
field: 'packName',
label: '默认套餐名',
component: 'JInput',
colProps: { xxl: 8 },
},
@ -296,7 +332,7 @@ export const packMenuFormSchema: FormSchema[] = [
},
{
field: 'permissionIds',
label: '菜单列表',
label: '授权菜单',
component: 'JTreeSelect',
componentProps: {
dict: 'sys_permission,name,id',
@ -309,7 +345,7 @@ export const packMenuFormSchema: FormSchema[] = [
},
{
field: 'remarks',
label: '描述',
label: '备注说明',
component: 'InputTextArea',
},
{