update: 新疆大屏

This commit is contained in:
xf
2025-07-06 18:03:41 +08:00
parent 86ed8341e2
commit aa71fd5c7e
9 changed files with 146 additions and 44 deletions
+37 -1
View File
@@ -1,5 +1,6 @@
import * as echarts from 'echarts';
import { legend1, legend2, legend3, legend4, legend5 } from '/@/components/xianMap/xianMapHooks.ts';
import { SexType, sexTypeList } from '/@/utils/settings.ts';
export const legend1 = new URL('/@/assets/img/legend1.png', import.meta.url).href;
export const legend2 = new URL('/@/assets/img/legend5.png', import.meta.url).href;
export const legend3 = new URL('/@/assets/img/legend3.png', import.meta.url).href;
@@ -222,9 +223,44 @@ const fromList = [
field: 'realName',
type: 'input',
placeholder: '请输入姓名',
defaultValue: '',
},
{
label: '性别',
field: 'sex',
type: 'select',
placeholder: '请选择性别',
options: sexTypeList,
defaultValue: SexType.all,
},
];
const fromList2 = [
{
label: '救助人',
field: 'realName',
type: 'input',
placeholder: '请输入',
defaultValue: '',
},
{
label: '性别',
field: 'sex',
type: 'select',
placeholder: '请选择性别',
options: sexTypeList,
defaultValue: SexType.all,
},
{
label: '救助方式',
field: 'sex',
type: 'select',
placeholder: '请选择性别',
options: sexTypeList,
defaultValue: SexType.all,
},
];
export const columns = [columns1, columns2];
export const fromLists = [fromList];
export const fromLists = [fromList, fromList2];