/* * 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. * */ const statusDic=[ {label:"待提交",value:"0"}, {label:"待部门审核",value:"1"}, {label:"待教学研究中心审核",value:"2"}, {label:"通过",value:"100"}, {label:"驳回",value:"-1"}, ] export const tableOption = { border: true, index: false, indexLabel: '序号', menu:false, stripe: true, menuAlign: 'center', align: 'center', editBtn: false, delBtn: false, addBtn: false, dic: [], column: [ { label:"审核人操作栏", prop:"examCol", minWidth: 200, fixed:true, slot:true, display:false }, { label:"填报人操作栏", prop:"editCol", minWidth: 200, fixed:true, slot:true, display:false }, { label: '审核状态 ', prop: 'state', search:true, dicData: statusDic, type:'select', props:{ label:'label', value:'value' }, display:false }, { label: "驳回理由", prop: "backReason", display: false, }, { label: '部门', prop: 'deptName', minWidth: 150 }, { label: '作者', prop: 'author' }, { label: '教案名称', prop: 'name', search:true }, { label: '颁奖等级', prop: 'level' }, { label: '颁奖单位', prop: 'unit' }, { label: '获奖时间', prop: 'awardTime', type:'date', format:'yyyy-MM-dd', valueFormat:'yyyy-MM-dd', minWidth: 150 }, { label: '创建人', prop: 'createName', }, { label: '创建时间', prop: 'createTime', minWidth: 150 }, { label: '备注', prop: 'remarks' }, ] } export const tableViewOption = { border: true, index: true, indexLabel: '序号', stripe: true, menuAlign: 'center', align: 'center', editBtn: false, delBtn: false, addBtn: false, dic: [], column: [ { label: '部门', prop: 'deptName' }, { label: '作者', prop: 'author' }, { label: '教案名称', prop: 'name' }, { label: '颁奖等级', prop: 'level' }, { label: '颁奖单位', prop: 'unit' }, { label: '获奖时间', prop: 'awardTime', type:'date', format:'yyyy-MM-dd', valueFormat:'yyyy-MM-dd' }, { label: '创建人', prop: 'createName', }, { label: '创建时间', prop: 'createTime', }, { label: '备注', prop: 'remarks' }, ] }