tsg-web/src/views/sz/szzf/ajdj/config.js

281 lines
6.0 KiB
JavaScript
Raw Normal View History

2024-09-26 17:59:26 +08:00
2024-09-23 18:03:30 +08:00
const basicData = [
{
label: '填报人',
2024-09-26 17:59:26 +08:00
key: 'createName',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12,
disabled: true
2024-09-26 17:59:26 +08:00
2024-09-23 18:03:30 +08:00
},
{
label: '填报时间',
2024-09-26 17:59:26 +08:00
key: 'createTime',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12,
2024-09-26 17:59:26 +08:00
// required: true
2024-09-23 18:03:30 +08:00
disabled: true
},
{
label: '案件编号',
2024-09-26 17:59:26 +08:00
key: 'caseId',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '案件名称',
2024-09-26 17:59:26 +08:00
key: 'caseName',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12,
required: true
},
{
label: '案件类型',
2024-09-26 17:59:26 +08:00
key: 'caseType',
2024-09-23 18:03:30 +08:00
type: 'Select',
2024-09-26 17:59:26 +08:00
options: [
{ value: 0, label: '违建' },
{ value: 1, label: '毁林垦荒' },
{ value: 2, label: '筑坝拦汊' },
{ value: 3, label: '填占库容' },
{ value: 4, label: '违法取水' },
{ value: 5, label: '其他' }
],
span: 12,
required: true
},
{
label: '发现时间',
key: 'caseDate',
type: 'DatePicker',
span: 12,
required: true
2024-09-23 18:03:30 +08:00
},
{
label: '案发地点',
2024-09-26 17:59:26 +08:00
key: 'caseAddress',
2024-09-23 18:03:30 +08:00
type: 'input',
2024-09-26 17:59:26 +08:00
span: 12,
2024-09-27 15:06:28 +08:00
required: true,
addonAfter:'选择地点'
2024-09-23 18:03:30 +08:00
},
{
label: '案件来源',
2024-09-26 17:59:26 +08:00
key: 'caseSource',
type: 'Select',
2024-09-23 18:03:30 +08:00
span: 12,
2024-09-26 17:59:26 +08:00
required: true,
2024-09-23 18:03:30 +08:00
options: [
2024-09-26 17:59:26 +08:00
{ label: '巡查上报', value: 0 },
{ label: '自主发现', value: 1 },
{ label: '公共举报', value: 2 },
{ label: '电话举报', value: 3 },
{ label: '其他', value: 4 },
2024-09-23 18:03:30 +08:00
]
},
{
label: '违法时间',
2024-09-26 17:59:26 +08:00
key: 'IllegalDate',
type: 'DatePicker',
span: 12
2024-09-23 18:03:30 +08:00
},
{
2024-09-26 17:59:26 +08:00
label: '当事人类型',
key: 'partyType',
type: 'Radio',
required: true,
options: [
{ label: '自然人', value: 0 },
{ label: '法人或其他组织', value: 1 },
{ label: '待定', value: 2 },
],
2024-09-23 18:03:30 +08:00
span: 24
},
{
label: '姓名',
2024-09-26 17:59:26 +08:00
key: 'partyName',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '身份证号',
2024-09-26 17:59:26 +08:00
key: 'idNumber',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '住址',
2024-09-26 17:59:26 +08:00
key: 'partyAddr',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '联系方式',
key: 'name',
type: 'input',
span: 12
},
{
label: '简要案情',
2024-09-26 17:59:26 +08:00
key: 'intro',
2024-09-23 18:03:30 +08:00
type: 'TextArea',
span: 24
},
{
label: '附件',
2024-09-26 17:59:26 +08:00
key: 'files1',
2024-09-23 18:03:30 +08:00
type: 'upload',
span: 24
},
]
const clqkData = [
{
label: '处理程序',
2024-09-26 17:59:26 +08:00
key: 'processor',
2024-09-23 18:03:30 +08:00
type: 'Select',
2024-09-26 17:59:26 +08:00
options: [
{ label: '简易程序', value: 0 },
{ label: '一般程序', value: 1 },
],
2024-09-23 18:03:30 +08:00
span: 12,
},
{
label: '处理依据',
2024-09-26 17:59:26 +08:00
key: 'treatmentBasis',
type: 'input',
2024-09-23 18:03:30 +08:00
span: 12,
},
{
label: '处理措施',
2024-09-26 17:59:26 +08:00
key: 'treatmentMeasure',
2024-09-23 18:03:30 +08:00
type: 'Select',
span: 12
},
{
label: '移送处理情况',
2024-09-26 17:59:26 +08:00
key: 'transfer',
2024-09-23 18:03:30 +08:00
type: 'Radio',
span: 24,
options: [
2024-09-26 17:59:26 +08:00
{ label: '移送单位', value: '1' },
{ label: '不移送', value: '0' },
2024-09-23 18:03:30 +08:00
],
},
{
label: '案件执行情况',
2024-09-26 17:59:26 +08:00
key: 'caseImplementation',
2024-09-23 18:03:30 +08:00
type: 'Radio',
options: [
2024-09-26 17:59:26 +08:00
{ label: '当事人自动履行', value: 0 },
{ label: '行政强制执行', value: 1 },
2024-09-23 18:03:30 +08:00
],
span: 24
},
{
label: '自动履行情况',
2024-09-26 17:59:26 +08:00
key: 'performance',
2024-09-23 18:03:30 +08:00
type: 'TextArea',
span: 24
},
{
label: '伤亡人数(人)',
2024-09-26 17:59:26 +08:00
key: 'casualties',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '直接损失金额(万元)',
2024-09-26 17:59:26 +08:00
key: 'directLossAmount',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '结案情况',
2024-09-26 17:59:26 +08:00
key: 'closeStatus',
2024-09-23 18:03:30 +08:00
type: 'Select',
2024-09-26 17:59:26 +08:00
options: [
{ label: '正常结案', value: 0 },
{ label: '其他方式结案', value: 1 },
{ label: '未结案', value: 2 },
],
2024-09-23 18:03:30 +08:00
span: 12
},
{
label: '结案时间',
2024-09-26 17:59:26 +08:00
key: 'closeDate',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 12
},
{
label: '文件编号及名称',
2024-09-26 17:59:26 +08:00
key: 'docNumName',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 24
},
{
label: '督办单位类型',
2024-09-26 17:59:26 +08:00
key: 'unitType',
2024-09-23 18:03:30 +08:00
type: 'Select',
2024-09-26 17:59:26 +08:00
options: [
{ label: '上级督办', value: 0 },
{ label: '本级河长督办', value: 1 },
],
2024-09-23 18:03:30 +08:00
span: 12
},
{
label: '督办单位名称',
2024-09-26 17:59:26 +08:00
key: 'unitName',
2024-09-23 18:03:30 +08:00
type: 'input',
span: 24
},
{
label: '附件',
2024-09-26 17:59:26 +08:00
key: 'files2',
2024-09-23 18:03:30 +08:00
type: 'upload',
span: 24
},
]
const xzfy = [
{
2024-09-26 17:59:26 +08:00
label: '行政复议情况',
key: 'administrativeReconsideration',
2024-09-23 18:03:30 +08:00
type: 'Select',
span: 12,
2024-09-26 17:59:26 +08:00
options: [
2024-09-23 18:03:30 +08:00
{
2024-09-26 17:59:26 +08:00
label: '维护', value: 0
2024-09-23 18:03:30 +08:00
},
2024-09-26 17:59:26 +08:00
{ label: '变更', value: 1 },
{ label: '撤销', value: 2 },
{ label: '和解', value: 3 },
{ label: '调解', value: 4 },
2024-09-23 18:03:30 +08:00
],
disabled: true
},
{
2024-09-26 17:59:26 +08:00
label: '行政应诉情况',
key: 'administrativeResponse',
2024-09-23 18:03:30 +08:00
type: 'Select',
span: 12,
disabled: true,
2024-09-26 17:59:26 +08:00
options: [
2024-09-23 18:03:30 +08:00
{
2024-09-26 17:59:26 +08:00
label: '驳回原告诉讼', value: 0
2024-09-23 18:03:30 +08:00
},
2024-09-26 17:59:26 +08:00
{ label: '变更', value: 2 },
{ label: '撤销', value: 1 },
{ label: '确认违法', value: 3 },
{ label: '确认无效', value: 4 },
{ label: '其他', value: 5 },
2024-09-23 18:03:30 +08:00
],
},
]
export {
basicData,
clqkData,
xzfy
}