first commit

This commit is contained in:
2026-09-08 19:49:21 +08:00
commit ebffbab428
7320 changed files with 1477614 additions and 0 deletions
@@ -0,0 +1,19 @@
window.suggestionApi = {
suggestionState: [
{state: 1, name: "未提交", color: "#909399"},
{state: 2, name: "二级教代会代表采纳中", color: "#409EFF"},
{state: 3, name: "本部门协商处理中", color: "#409EFF"},
{state: 4, name: "已转交给本单位教代会代表", color: "#67c23a"},
],
tableColums: [
{prop: 'suggestionName', label: '建议名称', sortable: false},
{prop: 'createUserLogin', label: '工号',sortable: false},
{prop: 'createUserName', label: '姓名',sortable: false},
{prop: 'applyTime', label: '撰写时间',sortable: true},
{prop: 'typeName', label: '建议类型',sortable: true},
{prop: 'createUserUnionName', label: '所属工会',sortable: true},
{prop: 'state', label: '状态',sortable: true},
// {prop: 'adopt', label: '校工会是否采纳'}
]
}