init
This commit is contained in:
2025-06-27 17:42:38 +08:00
commit bd6402478b
5317 changed files with 785994 additions and 0 deletions
+99
View File
@@ -0,0 +1,99 @@
import { FormSchema } from '/@/components/Form';
export const listData = [
{
id: 'asssd1d213197ua',
name: '外科',
children: [
{
id: '12edasd2145r52341d',
aImg: 'temp/20230606/45e964377e42182ea052c75c82cefcc0_1_1686038684080.jpg',
name: '张医师',
pro: '外科',
zc: '主任医师',
hospital: '三甲第一人民医院',
times: '123',
status: '1',
},
{
id: '12edasd214qwe5r52341d',
aImg: 'temp/20230606/45e964377e42182ea052c75c82cefcc0_1_1686038684080.jpg',
name: '张医师1',
pro: '外科',
zc: '主任医师',
hospital: '三甲第一人民医院',
times: '123',
status: '2',
},
],
},
{
id: 'asssd1d213197ua',
name: '皮肤科',
children: [
{
id: '12edasd2145r52341d',
aImg: 'temp/20230606/45e964377e42182ea052c75c82cefcc0_1_1686038684080.jpg',
name: '王医师',
pro: '皮肤科',
zc: '主任医师',
hospital: '三甲第一人民医院',
times: '123',
status: '1',
},
{
id: '12edasd2145r5234asd1d',
aImg: 'temp/20230606/45e964377e42182ea052c75c82cefcc0_1_1686038684080.jpg',
name: '王医师1',
pro: '皮肤科',
zc: '主任医师',
hospital: '三甲第一人民医院',
times: '123',
status: '2',
},
],
},
];
export const basicInfoInfoForm: FormSchema[] = [
{
label: '姓名',
field: 'name',
component: 'Input',
},
{
label: '性别',
field: 'gender_dictText',
component: 'Input',
},
{
label: '出生日期',
field: 'birthday',
component: 'Input',
},
{
label: '身高',
field: 'height',
component: 'Input',
componentProps: ({}) => {
return {
suffix: 'CM',
};
},
},
{
label: '体重',
field: 'weight',
component: 'Input',
componentProps: ({}) => {
return {
suffix: 'KG',
};
},
},
{
label: '住址',
field: 'address',
component: 'Input',
},
];