| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- export default {
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- searchLabelWidth: 140,
- labelWidth: 110,
- menuWidth: 140,
- delBtn: false,
- refreshBtn: false,
- columnBtn: false,
- gridBtn: false,
- dialogClickModal: false,
- dialogWidth: 500,
- dialogType: "drawer",
- column: [
- {
- label: '所属二级单位/部门',
- prop: 'name',
- type: 'input',
- span: 24,
- minWidth: 160,
- showOverflowTooltip: true,
- rules: [
- {
- required: true,
- message: '请输入科目代码',
- trigger: 'blur',
- },
- ],
- },
- // {
- // label: '部门/科室/项目部',
- // prop: 'name',
- // type: 'input',
- // span: 24,
- // minWidth: 260,
- // showOverflowTooltip: true,
- // rules: [
- // {
- // required: true,
- // message: '请输入',
- // trigger: 'blur',
- // },
- // ],
- // },
- ],
- };
|