This commit is contained in:
guochunsi
2025-12-31 17:40:01 +08:00
parent 6d94e91b70
commit 74c06bb8a0
713 changed files with 115034 additions and 46 deletions

View File

@@ -0,0 +1,120 @@
/*
* 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 typeList=[
{value:"1",label:"校企合作成果获省部级以上奖励或表彰"},
{value:"2",label:"校企合作项目经济效益超过 30 万"},
{value:"3",label:"校企合作成果被省级以上媒体省部级以上奖励或表彰"},
{value:"4",label:"校企合作案例、模式、方法被学校采纳并推广"},
]
export const tableOption = {
border: true,
index: true,
indexLabel: '序号',
stripe: true,
menuAlign: 'center',
align: 'center',
editBtn: false,
delBtn: false,
addBtn: false,
dic: [],
column: [
{
label: '企业名称',
prop: 'companyId',
filterable:true,
span: 24,
searchFilterable:true,
search:true,
type:'select',
dicUrl: '/professional/phaseintentioncompany/list',
props: {
label: 'companyName',
value: 'id'
},
rules: [{
required: true,
message: '企业不能为空',
trigger: 'blur'
}
]
},
{
label: '类型',
prop: 'type',
span: 24,
dicData:typeList,
type: 'select',
props:{
label:'label',
value:'value'
},
rules: [{
required: true,
message: '类型不能为空',
trigger: 'blur'
}]
},
{
label: '主持人',
prop: 'peopleName',
span: 24,
rules: [{
required: true,
message: '主持人不能为空',
trigger: 'blur'
}
]
},
{
label: '内容',
prop: 'title',
span: 24,
rules: [{
required: true,
message: '内容不能为空',
trigger: 'blur'
}
]
},
{
label: '证书/文件 经济效益/企业应用 媒体级别 文献或其他',
prop: 'otherName',
type: 'textarea',
minRows: 2,
maxlength: 250, //长度限制 0/n
span: 24,
rules: [{
required: true,
message: '主持人不能为空',
trigger: 'blur'
}
]
},
{
label: '备注',
prop: 'remarks',
type: 'textarea',
span: 24,
minRows: 2,
maxlength: 250, //长度限制 0/n
addDisplay:true, //添加是否显示
editDisplay:true, //修改是否显示
},
]
}