无人机管理后台前端(已迁走)
张含笑
2025-08-14 10ffaada79fe0a0dec90e85b20897cce4d176047
Merge branch 'refs/heads/feature/v5.0/5.0.2' into feature/v5.0/5.0.3
2 files modified
6 ■■■■ changed files
src/api/algorithm.js 4 ●●●● patch | view | raw | blame | history
src/views/algorithmRepository/algorithmRepository.vue 2 ●●● patch | view | raw | blame | history
src/api/algorithm.js
@@ -10,10 +10,10 @@
    })
  }
//机巢查询
export const selectDeviceList = params => {
export const selectDeviceList = data => {
    return request({
        url: `/drone-device-core/aiTmp/devices`,
        method: 'get',
        params,
        data: data,
    })
}
src/views/algorithmRepository/algorithmRepository.vue
@@ -179,7 +179,7 @@
const getDeviceList = () => {
console.log('userAreaCode',userAreaCode.value);
// { areaCode: userAreaCode.value }
  selectDeviceList({ areaCode: userAreaCode.value }).then(res => {
  selectDeviceList().then(res => {
    jcoptions.value = res.data.data;
    console.log('机巢数',jcoptions.value );