Explorar el Código

修复前端船公司数据解析错误

- 修改getShipCompanyList方法,使用response.data.content获取数据
- 后端返回的是Page对象,数据在content属性中
- 修复前端无法显示船公司列表的问题
heyiwen hace 2 semanas
padre
commit
3bf4d98530
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      vue-frontend/src/components/PilotPlan.vue

+ 1 - 1
vue-frontend/src/components/PilotPlan.vue

@@ -406,7 +406,7 @@ export default {
       this.shipCompanyLoading = true;
       this.$axios.get('/api/ship-company/list')
         .then(response => {
-          this.shipCompanyList = response.data || [];
+          this.shipCompanyList = response.data.content || [];
         })
         .catch(error => {
           console.error('获取船公司列表失败:', error);