Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7be9c3e8
authored
Jan 31, 2025
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【代码优化】IoT:去除 Simulation 关键字,定义更清晰
parent
d27cb800
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
19 deletions
+13
-19
src/api/iot/device/device/index.ts
+10
-10
src/views/iot/device/device/detail/DeviceDetailsSimulator.vue
+3
-9
No files found.
src/api/iot/device/device/index.ts
View file @
7be9c3e8
...
@@ -56,16 +56,16 @@ export enum DeviceStateEnum {
...
@@ -56,16 +56,16 @@ export enum DeviceStateEnum {
OFFLINE
=
2
// 离线
OFFLINE
=
2
// 离线
}
}
// IoT
模拟设备上行数据
Request VO
// IoT
设备上行
Request VO
export
interface
IotDevice
Simulation
UpstreamReqVO
{
export
interface
IotDeviceUpstreamReqVO
{
id
:
number
// 设备编号
id
:
number
// 设备编号
type
:
string
// 消息类型
type
:
string
// 消息类型
identifier
:
string
// 标识符
identifier
:
string
// 标识符
data
:
any
// 请求参数
data
:
any
// 请求参数
}
}
// IoT
模拟设备下行数据
Request VO
// IoT
设备下行
Request VO
export
interface
IotDevice
Simulation
DownstreamReqVO
{
export
interface
IotDeviceDownstreamReqVO
{
id
:
number
// 设备编号
id
:
number
// 设备编号
type
:
string
// 消息类型
type
:
string
// 消息类型
identifier
:
string
// 标识符
identifier
:
string
// 标识符
...
@@ -129,14 +129,14 @@ export const DeviceApi = {
...
@@ -129,14 +129,14 @@ export const DeviceApi = {
return
await
request
.
download
({
url
:
`/iot/device/get-import-template`
})
return
await
request
.
download
({
url
:
`/iot/device/get-import-template`
})
},
},
//
模拟
设备上行
// 设备上行
simulationDeviceUpstream
:
async
(
data
:
IotDeviceSimulation
UpstreamReqVO
)
=>
{
upstreamDevice
:
async
(
data
:
IotDevice
UpstreamReqVO
)
=>
{
return
await
request
.
post
({
url
:
`/iot/device/
simulation-
upstream`
,
data
})
return
await
request
.
post
({
url
:
`/iot/device/upstream`
,
data
})
},
},
//
模拟
设备下行
// 设备下行
simulationDeviceDownstream
:
async
(
data
:
IotDeviceSimulation
DownstreamReqVO
)
=>
{
downstreamDevice
:
async
(
data
:
IotDevice
DownstreamReqVO
)
=>
{
return
await
request
.
post
({
url
:
`/iot/device/
simulation-
downstream`
,
data
})
return
await
request
.
post
({
url
:
`/iot/device/downstream`
,
data
})
},
},
// 获取设备属性最新数据
// 获取设备属性最新数据
...
...
src/views/iot/device/device/detail/DeviceDetailsSimulator.vue
View file @
7be9c3e8
...
@@ -100,13 +100,7 @@
...
@@ -100,13 +100,7 @@
<
/el-table
>
<
/el-table
>
<!--
TODO
@
super
:发送按钮,可以放在右侧哈。因为我们的
simulateValue
就在最右侧
-->
<!--
TODO
@
super
:发送按钮,可以放在右侧哈。因为我们的
simulateValue
就在最右侧
-->
<
div
class
=
"mt-10px"
>
<
div
class
=
"mt-10px"
>
<
el
-
button
<
el
-
button
type
=
"primary"
@
click
=
"handlePropertyReport"
>
发送
<
/el-button
>
type
=
"primary"
@
click
=
"handlePropertyReport"
v
-
hasPermi
=
"['iot:device:simulation']"
>
发送
<
/el-button
>
<
/div
>
<
/div
>
<
/ContentWrap
>
<
/ContentWrap
>
<
/el-tab-pane
>
<
/el-tab-pane
>
...
@@ -331,7 +325,7 @@ const handlePropertyReport = async () => {
...
@@ -331,7 +325,7 @@ const handlePropertyReport = async () => {
}
)
}
)
try
{
try
{
await
DeviceApi
.
simulationDeviceUpstream
({
await
DeviceApi
.
upstreamDevice
({
id
:
props
.
device
.
id
,
id
:
props
.
device
.
id
,
type
:
'property'
,
type
:
'property'
,
identifier
:
'report'
,
identifier
:
'report'
,
...
@@ -375,7 +369,7 @@ const handlePropertyReport = async () => {
...
@@ -375,7 +369,7 @@ const handlePropertyReport = async () => {
/** 处理设备状态 */
/** 处理设备状态 */
const
handleDeviceState
=
async
(
state
:
number
)
=>
{
const
handleDeviceState
=
async
(
state
:
number
)
=>
{
try
{
try
{
await
DeviceApi
.
simulationDeviceUpstream
({
await
DeviceApi
.
upstreamDevice
({
id
:
props
.
device
.
id
,
id
:
props
.
device
.
id
,
type
:
'state'
,
type
:
'state'
,
identifier
:
'report'
,
identifier
:
'report'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment