feat: 系统功能更新 - 添加错误统计、数据初始化、订单调度等功能

This commit is contained in:
AIGC Developer
2025-12-20 15:24:58 +08:00
parent 0933031b59
commit 5344148a1c
70 changed files with 3649 additions and 688 deletions

View File

@@ -35,6 +35,7 @@
/>
<div class="input-error" v-if="errors.confirmPassword">{{ errors.confirmPassword }}</div>
</div>
<!-- 确定按钮 -->
<el-button
@@ -128,7 +129,8 @@ const handleSubmit = async () => {
method: 'post',
data: {
oldPassword: null,
newPassword: form.newPassword
newPassword: form.newPassword,
isFirstTimeSetup: true
}
})
@@ -286,6 +288,13 @@ onMounted(() => {
text-align: left;
}
.input-hint {
color: rgba(255, 255, 255, 0.5);
font-size: 12px;
margin-top: 6px;
text-align: left;
}
/* 确定按钮 */
.submit-button {
width: 100%;