调整调用方

This commit is contained in:
2025-10-31 21:35:09 +08:00
parent 22f633e20b
commit fcd1b1c140
3 changed files with 3 additions and 3 deletions

View File

@@ -358,7 +358,7 @@ export default {
},
async fetchAvailablePlans() {
try {
const response = await apiClient.plans.getPlans({ planType: '自定义任务' });
const response = await apiClient.plans.getPlans({ plan_type: '自定义任务' });
this.availablePlans = response.data.plans.filter(p =>
p.id !== this.planId
);