Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zhmes-agecal
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhmes-agecal
Commits
e09db54a
Commit
e09db54a
authored
Nov 12, 2025
by
wanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 测试定时任务界面显示数据调整。
parent
0413cc73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
index.vue
zhmes-agecal-web/src/views/testScheduledTasks/index.vue
+5
-5
No files found.
zhmes-agecal-web/src/views/testScheduledTasks/index.vue
View file @
e09db54a
...
...
@@ -143,7 +143,7 @@ export default {
}).
then
(({
value
})
=>
{
batchReadingCabinetStatus
(
value
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
textarea
=
"批量读取设备状态成功:"
+
response
.
data
;
this
.
textarea
=
"批量读取设备状态成功:"
+
JSON
.
stringify
(
response
.
data
)
;
this
.
$message
.
success
(
"读取成功"
);
}
})
...
...
@@ -157,7 +157,7 @@ export default {
}).
then
(({
value
})
=>
{
readingHoldingRegister
(
value
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
textarea
=
"测试501端口成功:"
+
response
.
data
;
this
.
textarea
=
"测试501端口成功:"
+
JSON
.
stringify
(
response
.
data
)
;
this
.
$message
.
success
(
"测试成功"
);
}
})
...
...
@@ -184,7 +184,7 @@ export default {
}).
then
(({
value
})
=>
{
designatedDevicePowerOff
(
value
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
textarea
=
"指定设备已断电成功:"
+
response
.
data
;
this
.
textarea
=
"指定设备已断电成功:"
+
JSON
.
stringify
(
response
.
data
)
;
this
.
$message
.
success
(
"指定设备已断电成功"
);
}
})
...
...
@@ -197,7 +197,7 @@ export default {
}).
then
(({
value
})
=>
{
designatedDevicePowerOn
(
value
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
textarea
=
"指定设备已上电成功:"
+
response
.
data
;
this
.
textarea
=
"指定设备已上电成功:"
+
JSON
.
stringify
(
response
.
data
)
;
this
.
$message
.
success
(
"指定设备已上电成功"
);
}
})
...
...
@@ -235,7 +235,7 @@ export default {
}).
then
(({
value
})
=>
{
sendWriteHour
(
value
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
textarea
=
"写时间测试成功:"
+
response
.
data
;
this
.
textarea
=
"写时间测试成功:"
+
JSON
.
stringify
(
response
.
data
)
;
this
.
$message
.
success
(
"写时间成功"
);
}
})
...
...
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