123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- 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: '名称',
- dataIndex: 'strname',
- width: 120,
- },
- {
- title: '安装位置',
- dataIndex: 'strinstallpos',
- width: 100,
- },
- {
- title: '读取数据方式',
- dataIndex: 'strtype',
- width: 100,
- },
- {
- title: '分站IP地址',
- dataIndex: 'strip',
- width: 100,
- },
- {
- title: '链接状态',
- dataIndex: 'linkstatus',
- width: 100,
- },
- {
- title: '备注',
- width: 150,
- dataIndex: 'strremark',
- },
- ];
- export const recycleColumns: BasicColumn[] = [
- {
- title: '名称',
- dataIndex: 'strname',
- width: 100,
- },
- {
- title: '安装位置',
- dataIndex: 'strinstallpos',
- width: 100,
- },
- {
- title: '链接状态',
- dataIndex: 'linkstatus',
- width: 80,
- customRender: render.renderAvatar,
- },
- ];
- export const searchFormSchema: FormSchema[] = [
- {
- label: '名称',
- field: 'strname',
- component: 'Input',
- colProps: { span: 6 },
- },
- {
- label: '安装位置',
- field: 'strinstallpos',
- component: 'Input',
- colProps: { span: 6 },
- },
- {
- label: '链接状态',
- field: 'linkstatus',
- component: 'JDictSelectTag',
- componentProps: {
- dictCode: 'user_status',
- placeholder: '请选择读写类型',
- stringToNumber: true,
- },
- colProps: { span: 6 },
- },
- ];
- export const formSchema: FormSchema[] = [
- {
- label: '',
- field: 'id',
- component: 'Input',
- show: false,
- },
- {
- label: '名称',
- field: 'strname',
- component: 'Input',
- },
- {
- label: '安装位置',
- field: 'strinstallpos',
- component: 'Input',
- },
- {
- label: '读取数据方式',
- field: 'strtype',
- component: 'JDictSelectTag',
- // componentProps: {
- // dictCode: 'getdatatype',
- // placeholder: '请选择分站用途',
- // },
- componentProps: ({ formModel, formActionType, schema }) => {
- return {
- dictCode: 'getdatatype',
- placeholder: '请选择分站用途',
- onChange: (e: any) => {
- const { updateSchema } = formActionType;
- if (e == 'plc') {
- updateSchema({
- field: 'plcType',
- show: true,
- });
- } else {
- updateSchema({
- field: 'plcType',
- show: false,
- });
- }
- },
- };
- },
- },
- {
- label: 'PLC类型',
- field: 'plcType',
- component: 'JDictSelectTag',
- show: true,
- componentProps: {
- dictCode: 'plcType',
- placeholder: '请选择PLC类型',
- },
- },
- {
- label: '分站用途',
- field: 'nkj980use',
- component: 'JDictSelectTag',
- componentProps: {
- dictCode: 'nkj980use',
- placeholder: '请选择分站用途',
- stringToNumber: true,
- },
- },
- {
- label: '分站IP地址',
- field: 'strip',
- component: 'Input',
- },
- {
- label: '分站端口',
- field: 'nport',
- component: 'InputNumber',
- },
- // {
- // label: '链接状态',
- // field: 'linkstatus',
- // component: 'JDictSelectTag',
- // componentProps: {
- // dictCode: 'linkstatus',
- // placeholder: '请选择链接状态',
- // stringToNumber: true,
- // },
- // },
- {
- label: '备注',
- field: 'strremark',
- component: 'InputTextArea',
- },
- ];
|