|
|
|
|
@ -231,6 +231,7 @@ const formField = ref({})
|
|
|
|
|
const deviceTime = ref('')
|
|
|
|
|
const subLoopParameter = ref([])
|
|
|
|
|
const commit_uid = sessionStorage.getItem('central_control_comm_uid')
|
|
|
|
|
// const commit_uid = '868656077692382'
|
|
|
|
|
|
|
|
|
|
const RiseSetOption = [
|
|
|
|
|
{ label: '提前60分钟', value: 60 },
|
|
|
|
|
@ -249,8 +250,8 @@ const RiseSetOption = [
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
RPC.post('/m9z/getLgnLatData', { comm_uid: commit_uid }).then(res => {
|
|
|
|
|
formField.value.lat = res.lat
|
|
|
|
|
formField.value.lgn = res.lgn
|
|
|
|
|
formField.value.lat = String(res.lat)
|
|
|
|
|
formField.value.lgn = String(res.lgn)
|
|
|
|
|
formField.value.loc = res.loc
|
|
|
|
|
})
|
|
|
|
|
RPC.post('/m9z/getSunRiseSet', { comm_uid: commit_uid }).then(res => {
|
|
|
|
|
|