dashboard
repositories
filestore
activity
search
login
drone
/
drone-web-manage
无人机管理后台前端(已迁走)
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
后台所有前端展示页面统一按照系统原生页面字体搜索比例调整,最起码的对齐、并且字体大小合适(搜索栏样式调整)
shuishen
2025-05-07
39ad9c144d48591cadfe630b86fa42979cd1a220
[drone/drone-web-manage.git]
/
src
/
api
/
device-cmd
/
index.js
1
2
3
4
5
6
7
8
9
import request from '@/axios';
export const postSendCmd = (params, data) => {
return request({
url: `/drone-device-core/control/api/v1/devices/${params.dock_sn}/jobs/${params.device_cmd}`,
method: 'post',
data,
});
};