94 lines
2.1 KiB
JavaScript
94 lines
2.1 KiB
JavaScript
/*
|
|
* Copyright (c) 2018-2025, cyweb All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* Neither the name of the pig4cloud.com developer nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
*/
|
|
|
|
export const YES_OR_NO=[
|
|
{
|
|
label:'关闭',
|
|
value:'0'
|
|
},
|
|
{
|
|
label:'开启',
|
|
value:'1'
|
|
}
|
|
|
|
]
|
|
export const tableOption = {
|
|
border: true,
|
|
index: true,
|
|
indexLabel: '序号',
|
|
stripe: true,
|
|
menuAlign: 'center',
|
|
align: 'center',
|
|
editBtn: false,
|
|
delBtn: false,
|
|
addBtn: false,
|
|
dic: [],
|
|
column: [
|
|
|
|
{
|
|
label: '开始时间',
|
|
prop: 'startTime',
|
|
type: 'datetime',
|
|
span: 24,
|
|
format: 'yyyy-MM-dd HH:mm:ss',
|
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
|
rules: [{
|
|
required: true,
|
|
message: '开始时间不能为空',
|
|
trigger: 'blur'
|
|
}]
|
|
},
|
|
{
|
|
label: '结束时间',
|
|
prop: 'endTime',
|
|
type: 'datetime',
|
|
span: 24,
|
|
format: 'yyyy-MM-dd HH:mm:ss',
|
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
|
rules: [{
|
|
required: true,
|
|
message: '结束时间不能为空',
|
|
trigger: 'blur'
|
|
}]
|
|
},
|
|
{
|
|
label: '开启报废',
|
|
prop: 'isOpen',
|
|
type:'radio',
|
|
dicData:YES_OR_NO,
|
|
span: 24,
|
|
props:{
|
|
label:'label',
|
|
value:'value'
|
|
},
|
|
rules: [{
|
|
required: true,
|
|
message: '是否开启报废不能为空',
|
|
trigger: 'blur'
|
|
}]
|
|
},
|
|
{
|
|
label: '备注',
|
|
prop: 'remarks',
|
|
type: 'textarea',
|
|
span: 24,
|
|
minRows: 2,
|
|
maxlength: 250, //长度限制 0/n
|
|
},
|
|
]
|
|
}
|