dev #16

Merged
hy merged 8 commits from dev into staging 2025-09-14 15:47:29 +08:00
2 changed files with 20 additions and 0 deletions
Showing only changes of commit b8db637311 - Show all commits

View File

@ -79,49 +79,59 @@ const tableData: TableConfig = intTableData({
label: "数学",
width: "100px",
custom: (row) => row.subjectDic.数学,
search: { sort: true },
},
英语: {
label: "英语",
width: "100px",
custom: (row) => row.subjectDic.英语,
search: { sort: true },
},
物理: {
label: "物理",
width: "100px",
custom: (row) => row.subjectDic.物理,
search: { sort: true },
},
化学: {
label: "化学",
width: "100px",
custom: (row) => row.subjectDic.化学,
search: { sort: true },
},
生物: {
label: "生物",
width: "100px",
custom: (row) => row.subjectDic.生物,
search: { sort: true },
},
政治: {
label: "政治",
width: "100px",
custom: (row) => row.subjectDic.政治,
search: { sort: true },
},
历史: {
label: "历史",
width: "100px",
custom: (row) => row.subjectDic.历史,
search: { sort: true },
},
地理: {
label: "地理",
width: "100px",
custom: (row) => row.subjectDic.地理 ?? "--",
search: { sort: true },
},
assignScore: {
label: "赋分总分",
width: "180px",
search: { sort: true },
},
assignRanking: {
label: "赋分后的排名",
width: "200px",
search: { sort: true },
},
},
data: [],

View File

@ -82,49 +82,59 @@ const tableData: TableConfig = intTableData({
label: "数学",
width: "80px",
custom: (row) => row.subjectDic.数学 ?? "--",
search: { sort: true },
},
英语: {
label: "英语",
width: "80px",
custom: (row) => row.subjectDic.英语 ?? "--",
search: { sort: true },
},
物理: {
label: "物理",
width: "80px",
custom: (row) => row.subjectDic.物理 ?? "--",
search: { sort: true },
},
化学: {
label: "化学",
width: "80px",
custom: (row) => row.subjectDic.化学 ?? "--",
search: { sort: true },
},
生物: {
label: "生物",
width: "80px",
custom: (row) => row.subjectDic.生物 ?? "--",
search: { sort: true },
},
政治: {
label: "政治",
width: "80px",
custom: (row) => row.subjectDic.政治 ?? "--",
search: { sort: true },
},
历史: {
label: "历史",
width: "80px",
custom: (row) => row.subjectDic.历史 ?? "--",
search: { sort: true },
},
地理: {
label: "地理",
width: "80px",
custom: (row) => row.subjectDic.地理 ?? "--",
search: { sort: true },
},
assignScore: {
label: "赋分总分",
width: "80px",
search: { sort: true },
},
assignRanking: {
label: "赋分后的排名",
width: "120px",
search: { sort: true },
},
},
data: [],