无人机管理后台前端(已迁走)
chenyao
2025-03-10 7d069cdc3edf2010ceeec0f85385c2af447e9559
配合后端修改前缀
4 files modified
22 ■■■■■ changed files
src/api/device/devicePerMenu.js 8 ●●●● patch | view | raw | blame | history
src/api/device/devicePerShare.js 8 ●●●● patch | view | raw | blame | history
src/views/device/components/devicePerShare.vue 2 ●●● patch | view | raw | blame | history
src/views/resource/waylineFile.vue 4 ●●●● patch | view | raw | blame | history
src/api/device/devicePerMenu.js
@@ -2,7 +2,7 @@
export const getList = (current, size, params) => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerMenu/page',
    url: '/blade-system/manage/api/v1/devicePerMenu/page',
    method: 'get',
    params: {
      ...params,
@@ -14,7 +14,7 @@
export const remove = ids => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerMenu/delete',
    url: '/blade-system/manage/api/v1/devicePerMenu/delete',
    method: 'post',
    params: {
      ids,
@@ -24,7 +24,7 @@
export const add = row => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerMenu/add',
    url: '/blade-system/manage/api/v1/devicePerMenu/add',
    method: 'post',
    data: row,
  });
@@ -32,7 +32,7 @@
export const update = row => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerMenu/update',
    url: '/blade-system/manage/api/v1/devicePerMenu/update',
    method: 'post',
    data: row,
  });
src/api/device/devicePerShare.js
@@ -2,7 +2,7 @@
export const getList = (current, size, params) => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerShare/page',
    url: '/blade-system/manage/api/v1/devicePerShare/page',
    method: 'get',
    params: {
      ...params,
@@ -14,7 +14,7 @@
export const remove = ids => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerShare/delete',
    url: '/blade-system/manage/api/v1/devicePerShare/delete',
    method: 'post',
    params: {
      ids,
@@ -24,7 +24,7 @@
export const add = row => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerShare/add',
    url: '/blade-system/manage/api/v1/devicePerShare/add',
    method: 'post',
    data: row,
  });
@@ -32,7 +32,7 @@
export const update = row => {
  return request({
    url: '/drone-yw/manage/api/v1/devicePerShare/update',
    url: '/blade-system/manage/api/v1/devicePerShare/update',
    method: 'post',
    data: row,
  });
src/views/device/components/devicePerShare.vue
@@ -106,7 +106,7 @@
            prop: 'device_per_menu_id',
            labelWidth: 130,
            type: 'tree',
            dicUrl: '/drone-yw/manage/api/v1/devicePerMenu/selectDeviceList',
            dicUrl: '/blade-system',
            props: {
              label: 'name',
              value: 'id',
src/views/resource/waylineFile.vue
@@ -227,10 +227,6 @@
    },
  },
};
<<<<<<< HEAD
=======
>>>>>>> 448b6ce06438454ccbc00d953e36df9b8cc617ca
</script>
<style scoped>