【类 型】:refactor 飞机状态里 添加电池容量字段

【原  因】:
【过  程】:
【影  响】:

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
This commit is contained in:
szdot 2024-07-20 18:41:10 +08:00
parent 36a427f43d
commit 300a107ae6

View File

@ -285,7 +285,8 @@ const store = new Vuex.Store({
getPlaneMode: null, // 飞机模式 getPlaneMode: null, // 飞机模式
loadweight: null, // 重量 loadweight: null, // 重量
hookstatus: null, // 钩子状态 hookstatus: null, // 钩子状态
position: []// [[经度,维度,海拔高度]]累计数组 position: [], // [[经度,维度,海拔高度]]累计数组
battCapacity: null// 电池容量
} }
}) })
if (res.data.status === 1) { if (res.data.status === 1) {