feat: 氧化铝数字孪生系统监控大屏完成

This commit is contained in:
2026-04-08 21:44:08 +08:00
commit a48babc68d
67606 changed files with 3337335 additions and 0 deletions

51
node_modules/@mui/material/esm/locale/zhCN.js generated vendored Normal file
View File

@@ -0,0 +1,51 @@
export const zhCN = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: '展开'
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return '第一页';
}
if (type === 'last') {
return '最后一页';
}
if (type === 'next') {
return '下一页';
}
return '上一页';
},
labelRowsPerPage: '每页行数:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from} 条到第 ${to} 条,${count !== -1 ? `${count}` : `至少 ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => `${value} 颗星`,
emptyLabelText: '无标签'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: '清空',
closeText: '关闭',
loadingText: '加载中……',
noOptionsText: '没有可用选项',
openText: '打开'
}
},
MuiAlert: {
defaultProps: {
closeText: '关闭'
}
}
}
};