优化邮件发送功能和支付宝支付诊断

- 修复邮件服务区域配置(改为ap-hongkong)
- 增强支付宝支付错误诊断和日志
- 修复代码质量问题(OrderService、ImageToVideoTask)
- 添加支付宝支付问题排查文档
- 增加详细的错误诊断信息
This commit is contained in:
AIGC Developer
2025-11-03 13:20:30 +08:00
parent b5bbd8841e
commit 149b201300
15 changed files with 1264 additions and 121 deletions

View File

@@ -370,6 +370,8 @@
</div>
</template>
</el-dialog>
</div>
</template>
<script setup>
import { ref, reactive } from 'vue'
@@ -485,7 +487,7 @@ const handleCloseEditDialog = () => {
const handlePriceInput = (value) => {
// 确保只输入数字
editForm.price = value.replace(/[^\d.]/g, '')
}
}
const saveEdit = async () => {
const valid = await editFormRef.value.validate()
@@ -517,6 +519,7 @@ const refreshStats = async () => {
} finally {
loadingStats.value = false
}
}
const performFullCleanup = async () => {