2023-04-21 00:41:02 +08:00
|
|
|
|
import {BasicColumn} from '/@/components/Table';
|
|
|
|
|
import {FormSchema} from '/@/components/Table';
|
|
|
|
|
import { rules} from '/@/utils/helper/validator';
|
|
|
|
|
import { render } from '/@/utils/common/renderUtils';
|
|
|
|
|
//列表数据
|
|
|
|
|
export const columns: BasicColumn[] = [
|
|
|
|
|
{
|
|
|
|
|
title: '校区',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'xq'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '项目',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'xm'
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-10-19 22:50:01 +08:00
|
|
|
|
title: '教学楼ID',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'jxlId'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '教学楼名称',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'jxlName'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '教室编号',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'jsbh'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '教室名称',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'jsmc'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'ip',
|
2023-04-21 00:41:02 +08:00
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'ip'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '账号',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'user'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '密码',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'mima'
|
|
|
|
|
},
|
2023-10-19 22:50:01 +08:00
|
|
|
|
{
|
|
|
|
|
title: '推流地址(rtmp)',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'pushUrl'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '播放地址(http)',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'pullUrl'
|
|
|
|
|
},
|
2023-04-21 00:41:02 +08:00
|
|
|
|
{
|
|
|
|
|
title: '备注',
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'bz'
|
|
|
|
|
},
|
2023-10-19 22:50:01 +08:00
|
|
|
|
{
|
|
|
|
|
title: '是否有效',//0-有效 1-无效
|
|
|
|
|
align: "center",
|
|
|
|
|
dataIndex: 'sfyx',
|
|
|
|
|
customRender: ({ text }) => {
|
|
|
|
|
let map = ['有效','无效']
|
|
|
|
|
return map[text]
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-04-21 00:41:02 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
//查询数据
|
|
|
|
|
export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
//表单数据
|
|
|
|
|
export const formSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
|
label: '校区',
|
|
|
|
|
field: 'xq',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '项目',
|
|
|
|
|
field: 'xm',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '新ip',
|
|
|
|
|
field: 'ip',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '账号',
|
|
|
|
|
field: 'user',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '密码',
|
|
|
|
|
field: 'mima',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '备注',
|
|
|
|
|
field: 'bz',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
},
|
|
|
|
|
// TODO 主键隐藏字段,目前写死为ID
|
|
|
|
|
{
|
|
|
|
|
label: '',
|
|
|
|
|
field: 'id',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
];
|