| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- selection: true,
- searchLabelWidth: 140,
- labelWidth: 110,
- menuWidth: 140,
- dialogClickModal: false,
- dialogWidth: 500,
- dialogType: "drawer",
- column: [
- {
- label: '科目代码',
- prop: 'code',
- type: 'input',
- span: 24,
- search: true,
- width: 140,
- align: 'center',
- showOverflowTooltip: true,
- rules: [
- {
- required: true,
- message: '请输入科目代码',
- trigger: 'blur',
- },
- ],
- },
- {
- label: '科目名称',
- prop: 'name',
- type: 'input',
- span: 24,
- width: 160,
- search: true,
- showOverflowTooltip: true,
- rules: [
- {
- required: true,
- message: '请输入科目名称',
- trigger: 'blur',
- },
- ],
- },
- {
- label: "对应会计科目",
- prop: "subjectId",
- type: "tree",
- dicData: [],
- span: 24,
- hide: true,
- props: {
- value: "id",
- label: "name"
- },
- rules: [
- {
- required: true,
- message: "请选择对应会计科目",
- trigger: "click"
- }
- ]
- },
- {
- label: '对应会计科目',
- prop: 'subjectName',
- minWidth: 160,
- search: true,
- showOverflowTooltip: true,
- display: false
- },
- {
- label: '对应高新研发费用科目',
- prop: 'rdSubject',
- minWidth: 160,
- showOverflowTooltip: true,
- display: false
- },
- {
- label: '对应加计扣除研发费用科目',
- prop: 'adSubject',
- minWidth: 160,
- showOverflowTooltip: true,
- display: false
- },
- ],
- };
|