forked from drone/command-center-dashboard

罗广辉
2025-04-02 e1699c4851f6ca397cd0ad1ff63f32c737654836
src/api/desk/notice.js
@@ -1,4 +1,4 @@
import request from '@/axios';
import request from '@/axios'
export const getList = (current, size, params) => {
  return request({
@@ -11,8 +11,8 @@
    },
    cryptoToken: false,
    cryptoData: false,
  });
};
   })
}
export const remove = ids => {
  return request({
@@ -23,8 +23,8 @@
    },
    cryptoToken: false,
    cryptoData: false,
  });
};
   })
}
export const add = row => {
  return request({
@@ -33,8 +33,8 @@
    data: row,
    cryptoToken: false,
    cryptoData: false,
  });
};
   })
}
export const update = row => {
  return request({
@@ -43,8 +43,8 @@
    data: row,
    cryptoToken: false,
    cryptoData: false,
  });
};
   })
}
export const getNotice = id => {
  return request({
@@ -55,5 +55,5 @@
    },
    cryptoToken: false,
    cryptoData: false,
  });
};
   })
}