Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zh-baseversion-project
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
王浩
zh-baseversion-project
Commits
cbde22c7
Commit
cbde22c7
authored
Jul 17, 2024
by
耿迪迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
停气监管停气操作日志
parent
968365b0
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
281 additions
and
10 deletions
+281
-10
TSupBalStopSupController.java
...eb/controller/supplybalance/TSupBalStopSupController.java
+10
-0
TSupBalStopSupOprPressLogController.java
...er/supplybalance/TSupBalStopSupOprPressLogController.java
+97
-0
TSupBalStopSupOprPressLog.java
...a/com/zehong/system/domain/TSupBalStopSupOprPressLog.java
+1
-1
ITSupBalStopSupService.java
...ava/com/zehong/system/service/ITSupBalStopSupService.java
+7
-0
TSupBalStopSupServiceImpl.java
...zehong/system/service/impl/TSupBalStopSupServiceImpl.java
+28
-0
stop.js
zh-baseversion-web/src/api/supplybalance/stop.js
+9
-0
stopLog.js
zh-baseversion-web/src/api/supplybalance/stopLog.js
+53
-0
DetailInfo.vue
...eb/src/views/supplybalance/stop/components/DetailInfo.vue
+73
-6
index.vue
zh-baseversion-web/src/views/supplybalance/stop/index.vue
+3
-3
No files found.
zh-baseversion-admin/src/main/java/com/zehong/web/controller/supplybalance/TSupBalStopSupController.java
View file @
cbde22c7
...
@@ -116,4 +116,14 @@ public class TSupBalStopSupController extends BaseController
...
@@ -116,4 +116,14 @@ public class TSupBalStopSupController extends BaseController
return
AjaxResult
.
error
(
"上传停气监管记录接口异常"
);
return
AjaxResult
.
error
(
"上传停气监管记录接口异常"
);
}
}
}
}
/**
* 改变停气状态
* @param tSupBalStopSup
* @return
*/
@PostMapping
(
"/changeStopStatus"
)
public
AjaxResult
changeStopStatus
(
@RequestBody
TSupBalStopSup
tSupBalStopSup
)
{
return
toAjax
(
tSupBalStopSupService
.
changeStopStatus
(
tSupBalStopSup
));
}
}
}
zh-baseversion-admin/src/main/java/com/zehong/web/controller/supplybalance/TSupBalStopSupOprPressLogController.java
0 → 100644
View file @
cbde22c7
package
com
.
zehong
.
web
.
controller
.
supplybalance
;
import
java.util.List
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.zehong.common.annotation.Log
;
import
com.zehong.common.core.controller.BaseController
;
import
com.zehong.common.core.domain.AjaxResult
;
import
com.zehong.common.enums.BusinessType
;
import
com.zehong.system.domain.TSupBalStopSupOprPressLog
;
import
com.zehong.system.service.ITSupBalStopSupOprPressLogService
;
import
com.zehong.common.utils.poi.ExcelUtil
;
import
com.zehong.common.core.page.TableDataInfo
;
/**
* 供需平衡-停气监管-停气进度操作历史记录Controller
*
* @author zehong
* @date 2024-07-16
*/
@RestController
@RequestMapping
(
"/supplyBalance/stopLog"
)
public
class
TSupBalStopSupOprPressLogController
extends
BaseController
{
@Autowired
private
ITSupBalStopSupOprPressLogService
tSupBalStopSupOprPressLogService
;
/**
* 查询供需平衡-停气监管-停气进度操作历史记录列表
*/
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
TSupBalStopSupOprPressLog
tSupBalStopSupOprPressLog
)
{
startPage
();
List
<
TSupBalStopSupOprPressLog
>
list
=
tSupBalStopSupOprPressLogService
.
selectTSupBalStopSupOprPressLogList
(
tSupBalStopSupOprPressLog
);
return
getDataTable
(
list
);
}
/**
* 导出供需平衡-停气监管-停气进度操作历史记录列表
*/
@Log
(
title
=
"供需平衡-停气监管-停气进度操作历史记录"
,
businessType
=
BusinessType
.
EXPORT
)
@GetMapping
(
"/export"
)
public
AjaxResult
export
(
TSupBalStopSupOprPressLog
tSupBalStopSupOprPressLog
)
{
List
<
TSupBalStopSupOprPressLog
>
list
=
tSupBalStopSupOprPressLogService
.
selectTSupBalStopSupOprPressLogList
(
tSupBalStopSupOprPressLog
);
ExcelUtil
<
TSupBalStopSupOprPressLog
>
util
=
new
ExcelUtil
<
TSupBalStopSupOprPressLog
>(
TSupBalStopSupOprPressLog
.
class
);
return
util
.
exportExcel
(
list
,
"供需平衡-停气监管-停气进度操作历史记录数据"
);
}
/**
* 获取供需平衡-停气监管-停气进度操作历史记录详细信息
*/
@GetMapping
(
value
=
"/{fOprPressLogId}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"fOprPressLogId"
)
Long
fOprPressLogId
)
{
return
AjaxResult
.
success
(
tSupBalStopSupOprPressLogService
.
selectTSupBalStopSupOprPressLogById
(
fOprPressLogId
));
}
/**
* 新增供需平衡-停气监管-停气进度操作历史记录
*/
@Log
(
title
=
"供需平衡-停气监管-停气进度操作历史记录"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
public
AjaxResult
add
(
@RequestBody
TSupBalStopSupOprPressLog
tSupBalStopSupOprPressLog
)
{
return
toAjax
(
tSupBalStopSupOprPressLogService
.
insertTSupBalStopSupOprPressLog
(
tSupBalStopSupOprPressLog
));
}
/**
* 修改供需平衡-停气监管-停气进度操作历史记录
*/
@Log
(
title
=
"供需平衡-停气监管-停气进度操作历史记录"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
public
AjaxResult
edit
(
@RequestBody
TSupBalStopSupOprPressLog
tSupBalStopSupOprPressLog
)
{
return
toAjax
(
tSupBalStopSupOprPressLogService
.
updateTSupBalStopSupOprPressLog
(
tSupBalStopSupOprPressLog
));
}
/**
* 删除供需平衡-停气监管-停气进度操作历史记录
*/
@Log
(
title
=
"供需平衡-停气监管-停气进度操作历史记录"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{fOprPressLogIds}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
fOprPressLogIds
)
{
return
toAjax
(
tSupBalStopSupOprPressLogService
.
deleteTSupBalStopSupOprPressLogByIds
(
fOprPressLogIds
));
}
}
zh-baseversion-system/src/main/java/com/zehong/system/domain/TSupBalStopSupOprPressLog.java
View file @
cbde22c7
...
@@ -29,7 +29,7 @@ public class TSupBalStopSupOprPressLog extends BaseEntity
...
@@ -29,7 +29,7 @@ public class TSupBalStopSupOprPressLog extends BaseEntity
private
String
fStopProgress
;
private
String
fStopProgress
;
/** 操作停气进度时间 */
/** 操作停气进度时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd
HH:mm:ss
"
)
@Excel
(
name
=
"操作停气进度时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"操作停气进度时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
fOprDate
;
private
Date
fOprDate
;
...
...
zh-baseversion-system/src/main/java/com/zehong/system/service/ITSupBalStopSupService.java
View file @
cbde22c7
...
@@ -65,4 +65,11 @@ public interface ITSupBalStopSupService
...
@@ -65,4 +65,11 @@ public interface ITSupBalStopSupService
* @return
* @return
*/
*/
int
reportSupBalStopSupRecInfo
(
Long
fGasStopId
);
int
reportSupBalStopSupRecInfo
(
Long
fGasStopId
);
/**
* 改变停气状态
* @param tSupBalStopSup
* @return
*/
int
changeStopStatus
(
TSupBalStopSup
tSupBalStopSup
);
}
}
zh-baseversion-system/src/main/java/com/zehong/system/service/impl/TSupBalStopSupServiceImpl.java
View file @
cbde22c7
...
@@ -4,11 +4,16 @@ import java.util.Date;
...
@@ -4,11 +4,16 @@ import java.util.Date;
import
java.util.List
;
import
java.util.List
;
import
com.zehong.common.utils.DateUtils
;
import
com.zehong.common.utils.DateUtils
;
import
com.zehong.common.utils.SecurityUtils
;
import
com.zehong.common.utils.SecurityUtils
;
import
com.zehong.system.domain.TSupBalStopSupOprPressLog
;
import
com.zehong.system.mapper.TSupBalStopSupOprPressLogMapper
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
com.zehong.system.mapper.TSupBalStopSupMapper
;
import
com.zehong.system.mapper.TSupBalStopSupMapper
;
import
com.zehong.system.domain.TSupBalStopSup
;
import
com.zehong.system.domain.TSupBalStopSup
;
import
com.zehong.system.service.ITSupBalStopSupService
;
import
com.zehong.system.service.ITSupBalStopSupService
;
import
org.springframework.transaction.annotation.Transactional
;
import
javax.annotation.Resource
;
/**
/**
* 供需平衡-停气监管Service业务层处理
* 供需平衡-停气监管Service业务层处理
...
@@ -22,6 +27,9 @@ public class TSupBalStopSupServiceImpl implements ITSupBalStopSupService
...
@@ -22,6 +27,9 @@ public class TSupBalStopSupServiceImpl implements ITSupBalStopSupService
@Autowired
@Autowired
private
TSupBalStopSupMapper
tSupBalStopSupMapper
;
private
TSupBalStopSupMapper
tSupBalStopSupMapper
;
@Resource
private
TSupBalStopSupOprPressLogMapper
tSupBalStopSupOprPressLogMapper
;
/**
/**
* 查询供需平衡-停气监管
* 查询供需平衡-停气监管
*
*
...
@@ -114,4 +122,24 @@ public class TSupBalStopSupServiceImpl implements ITSupBalStopSupService
...
@@ -114,4 +122,24 @@ public class TSupBalStopSupServiceImpl implements ITSupBalStopSupService
return
tSupBalStopSupMapper
.
updateTSupBalStopSup
(
tSupBalStopSup
);
return
tSupBalStopSupMapper
.
updateTSupBalStopSup
(
tSupBalStopSup
);
}
}
/**
* 改变停气状态
* @param tSupBalStopSup
* @return
*/
@Override
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
int
changeStopStatus
(
TSupBalStopSup
tSupBalStopSup
){
tSupBalStopSup
.
setUpdateTime
(
DateUtils
.
getNowDate
());
if
(
"2"
.
equals
(
tSupBalStopSup
.
getfStopProgress
())){
tSupBalStopSup
.
setfRecoveryGasTime
(
new
Date
());
}
TSupBalStopSupOprPressLog
tSupBalStopSupOprPressLog
=
new
TSupBalStopSupOprPressLog
();
tSupBalStopSupOprPressLog
.
setfGasStopId
(
tSupBalStopSup
.
getfGasStopId
());
tSupBalStopSupOprPressLog
.
setfStopProgress
(
tSupBalStopSup
.
getfStopProgress
());
tSupBalStopSupOprPressLog
.
setfOprDate
(
new
Date
());
tSupBalStopSupOprPressLogMapper
.
insertTSupBalStopSupOprPressLog
(
tSupBalStopSupOprPressLog
);
return
tSupBalStopSupMapper
.
updateTSupBalStopSup
(
tSupBalStopSup
);
}
}
}
zh-baseversion-web/src/api/supplybalance/stop.js
View file @
cbde22c7
...
@@ -51,3 +51,12 @@ export function exportSup(query) {
...
@@ -51,3 +51,12 @@ export function exportSup(query) {
params
:
query
params
:
query
})
})
}
}
//改变停气状态
export
function
changeStopStatus
(
data
)
{
return
request
({
url
:
'/supplyBalance/stop/changeStopStatus'
,
method
:
'post'
,
data
:
data
})
}
zh-baseversion-web/src/api/supplybalance/stopLog.js
0 → 100644
View file @
cbde22c7
import
request
from
'@/utils/request'
// 查询供需平衡-停气监管-停气进度操作历史记录列表
export
function
listLog
(
query
)
{
return
request
({
url
:
'/supplyBalance/stopLog/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询供需平衡-停气监管-停气进度操作历史记录详细
export
function
getLog
(
fOprPressLogId
)
{
return
request
({
url
:
'/supplyBalance/stopLog/'
+
fOprPressLogId
,
method
:
'get'
})
}
// 新增供需平衡-停气监管-停气进度操作历史记录
export
function
addLog
(
data
)
{
return
request
({
url
:
'/supplyBalance/stopLog'
,
method
:
'post'
,
data
:
data
})
}
// 修改供需平衡-停气监管-停气进度操作历史记录
export
function
updateLog
(
data
)
{
return
request
({
url
:
'/supplyBalance/stopLog'
,
method
:
'put'
,
data
:
data
})
}
// 删除供需平衡-停气监管-停气进度操作历史记录
export
function
delLog
(
fOprPressLogId
)
{
return
request
({
url
:
'/supplyBalance/stopLog/'
+
fOprPressLogId
,
method
:
'delete'
})
}
// 导出供需平衡-停气监管-停气进度操作历史记录
export
function
exportLog
(
query
)
{
return
request
({
url
:
'/supplyBalance/stopLog/export'
,
method
:
'get'
,
params
:
query
})
}
zh-baseversion-web/src/views/supplybalance/stop/components/DetailInfo.vue
View file @
cbde22c7
...
@@ -68,6 +68,27 @@
...
@@ -68,6 +68,27 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<div>
<h3>
停气操作记录
</h3>
<div
class=
"stop-record"
>
<el-table
:data=
"stopLog"
>
<el-table-column
label=
"停气进度"
align=
"center"
prop=
"fStopProgress"
:formatter=
"$parent.fStopProgressFormat"
/>
<el-table-column
label=
"操作停气进度时间"
align=
"center"
prop=
"fOprDate"
width=
"150"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
fOprDate
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
/el-table
>
<
pagination
v
-
show
=
"total>0"
:
total
=
"total"
:
pageSizes
=
"[5,10, 20, 30, 50]"
:
page
.
sync
=
"queryParams.pageNum"
:
limit
.
sync
=
"queryParams.pageSize"
@
pagination
=
"getStopLog"
/>
<
/div
>
<
/div
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
style
=
"padding-left: 10px"
>
<
el
-
col
:
span
=
"12"
style
=
"padding-left: 10px"
>
...
@@ -85,12 +106,20 @@
...
@@ -85,12 +106,20 @@
<
script
>
<
script
>
import
{
getSup
}
from
"@/api/supplybalance/stop"
;
import
{
getSup
}
from
"@/api/supplybalance/stop"
;
import
{
EditorMap
}
from
"@/utils/mapClass/getPath.js"
;
import
{
EditorMap
}
from
"@/utils/mapClass/getPath.js"
;
import
{
listLog
}
from
"@/api/supplybalance/stopLog.js"
;
export
default
{
export
default
{
name
:
"detail-info"
,
name
:
"detail-info"
,
data
(){
data
(){
return
{
return
{
detailInfo
:
{
}
,
detailInfo
:
{
}
,
detailOpen
:
false
,
detailOpen
:
false
,
stopLog
:
[],
total
:
0
,
queryParams
:
{
pageNum
:
1
,
pageSize
:
5
,
fGasStopId
:
null
,
}
,
}
}
}
,
}
,
watch
:{
watch
:{
...
@@ -99,12 +128,14 @@
...
@@ -99,12 +128,14 @@
//if(this.detailInfo.fGasStopArea) this.path = JSON.parse(this.detailInfo.fGasStopArea);
//if(this.detailInfo.fGasStopArea) this.path = JSON.parse(this.detailInfo.fGasStopArea);
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
this
.
initMap
();
this
.
initMap
();
})
}
);
this
.
getStopLog
();
}
}
}
}
}
,
}
,
methods
:{
methods
:{
getDetailInfo
(
id
){
getDetailInfo
(
id
){
this
.
queryParams
.
fGasStopId
=
id
;
getSup
(
id
).
then
(
res
=>
{
getSup
(
id
).
then
(
res
=>
{
if
(
res
.
code
==
200
&&
res
.
data
){
if
(
res
.
code
==
200
&&
res
.
data
){
this
.
detailInfo
=
res
.
data
;
this
.
detailInfo
=
res
.
data
;
...
@@ -118,15 +149,15 @@
...
@@ -118,15 +149,15 @@
if
(
this
.
detailInfo
.
fGasStopArea
){
if
(
this
.
detailInfo
.
fGasStopArea
){
if
(
this
.
detailInfo
.
fGasStopArea
.
includes
(
"#"
)){
if
(
this
.
detailInfo
.
fGasStopArea
.
includes
(
"#"
)){
let
areas
=
this
.
detailInfo
.
fGasStopArea
.
split
(
"#"
);
let
areas
=
this
.
detailInfo
.
fGasStopArea
.
split
(
"#"
);
for
(
let
i
=
0
;
i
<
areas
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
areas
.
length
;
i
++
)
{
let
areasItem
=
areas
[
i
];
let
areasItem
=
areas
[
i
];
if
(
areasItem
!=
null
&&
areasItem
!=
""
)
{
if
(
areasItem
!=
null
&&
areasItem
!=
""
)
{
new
AMap
.
Polygon
({
new
AMap
.
Polygon
({
map
:
gaoMap
.
map
,
map
:
gaoMap
.
map
,
path
:
JSON
.
parse
(
areasItem
),
path
:
JSON
.
parse
(
areasItem
),
fillColor
:
'#00b0ff'
,
fillColor
:
'#00b0ff'
,
strokeColor
:
'#80d8ff'
strokeColor
:
'#80d8ff'
});
}
);
}
}
}
}
...
@@ -141,6 +172,15 @@
...
@@ -141,6 +172,15 @@
}
}
gaoMap
.
map
.
setZoom
(
12
)
gaoMap
.
map
.
setZoom
(
12
)
}
}
}
,
getStopLog
(){
listLog
(
this
.
queryParams
).
then
(
res
=>
{
if
(
res
.
code
==
200
&&
res
.
rows
){
console
.
log
(
"fdsfd======="
,
res
)
this
.
stopLog
=
res
.
rows
;
this
.
total
=
res
.
total
;
}
}
)
}
}
}
}
}
}
...
@@ -149,7 +189,34 @@
...
@@ -149,7 +189,34 @@
<
style
scoped
lang
=
"scss"
>
<
style
scoped
lang
=
"scss"
>
#
areaInfo
{
#
areaInfo
{
width
:
100
%
;
width
:
100
%
;
height
:
500px
;
height
:
650
px
;
}
.
stop
-
record
{
height
:
350
px
;
overflow
-
y
:
scroll
;
&
::
-
webkit
-
scrollbar
{
/* 设置滚动条宽度 */
width
:
4
px
;
/* 设置滚动条背景色 */
//background: black;
}
//滚动条轨道
&
::
-
webkit
-
scrollbar
-
track
{
background
-
color
:
transparent
;
-
webkit
-
border
-
radius
:
2
em
;
-
moz
-
border
-
radius
:
2
em
;
border
-
radius
:
2
em
;
}
//滚动条滑块
&
::
-
webkit
-
scrollbar
-
thumb
{
background
-
color
:
rgb
(
147
,
147
,
153
,
0.5
);
-
webkit
-
border
-
radius
:
2
em
;
-
moz
-
border
-
radius
:
2
em
;
border
-
radius
:
2
em
;
}
}
}
<
/style
>
<
/style
>
zh-baseversion-web/src/views/supplybalance/stop/index.vue
View file @
cbde22c7
...
@@ -290,7 +290,7 @@
...
@@ -290,7 +290,7 @@
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitStopForm()"
>
保
存
<
/el-button
>
<
el
-
button
type
=
"primary"
@
click
=
"submitStopForm()"
>
保
存
<
/el-button
>
<!--
<
el
-
button
@
click
=
"submitForm()"
>
上
报
<
/el-button>--
>
<!--
<
el
-
button
@
click
=
"submitForm()"
>
上
报
<
/el-button>--
>
<
el
-
button
@
click
=
"
cancel
"
>
取
消
<
/el-button
>
<
el
-
button
@
click
=
"
stopOpen=false
"
>
取
消
<
/el-button
>
<
/div
>
<
/div
>
<
/el-dialog
>
<
/el-dialog
>
...
@@ -301,7 +301,7 @@
...
@@ -301,7 +301,7 @@
<
/template
>
<
/template
>
<
script
>
<
script
>
import
{
listSup
,
getSup
,
delSup
,
addSup
,
updateSup
,
exportSup
,
reportSupBalStopSupRecInfo
}
from
"@/api/supplybalance/stop"
;
import
{
listSup
,
getSup
,
delSup
,
addSup
,
updateSup
,
exportSup
,
reportSupBalStopSupRecInfo
,
changeStopStatus
}
from
"@/api/supplybalance/stop"
;
// 如果只允许画一个,则用这个
// 如果只允许画一个,则用这个
// import DrawArea from "@/components/DrawArea";
// import DrawArea from "@/components/DrawArea";
// 如果需要画多个,则用这个
// 如果需要画多个,则用这个
...
@@ -612,7 +612,7 @@ export default {
...
@@ -612,7 +612,7 @@ export default {
}
)
}
)
}
,
}
,
submitStopForm
(){
submitStopForm
(){
updateSup
({
fGasStopId
:
this
.
stopForm
.
fGasStopId
,
fStopProgress
:
this
.
stopForm
.
fStopProgress
}
).
then
(
res
=>
{
changeStopStatus
({
fGasStopId
:
this
.
stopForm
.
fGasStopId
,
fStopProgress
:
this
.
stopForm
.
fStopProgress
}
).
then
(
res
=>
{
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
msgSuccess
(
"停气进度更新成功"
);
this
.
msgSuccess
(
"停气进度更新成功"
);
this
.
stopOpen
=
false
;
this
.
stopOpen
=
false
;
...
...
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