Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
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
67003107
Commit
67003107
authored
May 07, 2026
by
xulihui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
bb7c1475
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
98 additions
and
102 deletions
+98
-102
THiddenTroubleInfoServiceImpl.java
...ng/system/service/impl/THiddenTroubleInfoServiceImpl.java
+1
-0
TInsSpotRecInforMapper.xml
...c/main/resources/mapper/system/TInsSpotRecInforMapper.xml
+1
-0
TTrainManageMapper.xml
...m/src/main/resources/mapper/system/TTrainManageMapper.xml
+1
-0
index.vue
...eversion-web/src/views/lpgRegulation/liqgasuser/index.vue
+85
-85
index.vue
zh-baseversion-web/src/views/space/archive/index.vue
+8
-15
index.vue
...web/src/views/statistic/hiddenStatisticAnalysis/index.vue
+2
-2
No files found.
zh-baseversion-system/src/main/java/com/zehong/system/service/impl/THiddenTroubleInfoServiceImpl.java
View file @
67003107
...
...
@@ -164,6 +164,7 @@ public class THiddenTroubleInfoServiceImpl implements ITHiddenTroubleInfoService
tHiddenDangerStandingBook
.
setBeyondEnterpriseId
(
hiddenTroubleInfo
.
getBeyondEnterpriseId
());
tHiddenDangerStandingBook
.
setCreateTime
(
new
Date
());
tHiddenDangerStandingBook
.
setHiddenTroubleType
(
hiddenTroubleInfo
.
getHiddenTroubleType
());
tHiddenDangerStandingBook
.
setDealPlanUrl
(
hiddenTroubleInfo
.
getDealUrl
());
tHiddenDangerStandingBookMapper
.
insertTHiddenDangerStandingBook
(
tHiddenDangerStandingBook
);
return
tHiddenTroubleInfoMapper
.
updateTHiddenTroubleInfo
(
tHiddenTroubleInfo
);
}
...
...
zh-baseversion-system/src/main/resources/mapper/system/TInsSpotRecInforMapper.xml
View file @
67003107
...
...
@@ -44,6 +44,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fMethod != null and fMethod != ''"
>
and spot.f_method = #{fMethod}
</if>
<if
test=
"govUploadState != null and govUploadState != ''"
>
and spot.f_gov_upload_state = #{govUploadState}
</if>
</where>
order by spot.f_ins_spot_rec_infor_id desc
</select>
<select
id=
"selectTInsSpotRecInforById"
parameterType=
"Long"
resultMap=
"TInsSpotRecInforResult"
>
...
...
zh-baseversion-system/src/main/resources/mapper/system/TTrainManageMapper.xml
View file @
67003107
...
...
@@ -40,6 +40,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"publishTime != null "
>
and publish_time = #{publishTime}
</if>
<if
test=
"isDel != null and isDel != ''"
>
and is_del = #{isDel}
</if>
</where>
order by create_time desc
</select>
<select
id=
"selectTTrainManageById"
parameterType=
"Long"
resultMap=
"TTrainManageResult"
>
...
...
zh-baseversion-web/src/views/lpgRegulation/liqgasuser/index.vue
View file @
67003107
This diff is collapsed.
Click to expand it.
zh-baseversion-web/src/views/space/archive/index.vue
View file @
67003107
...
...
@@ -75,7 +75,7 @@
@
click=
"handleDelete"
>
删除
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<!--
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
...
...
@@ -84,7 +84,7 @@
:loading=
"exportLoading"
@
click=
"handleExport"
>
导出
</el-button>
</el-col>
</el-col>
-->
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
...
...
@@ -697,23 +697,16 @@ export default {
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
updateSpace
(
this
.
form
).
then
(
response
=>
{
this
.
form
.
relationDeviceType
=
'3'
;
var
tConfinedSpaceParam
=
{
tConfinedSpace
:
this
.
form
,
tDeviceInfoS
:
this
.
datalist
}
updateSpace
(
JSON
.
stringify
(
tConfinedSpaceParam
)).
then
(
response
=>
{
this
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
}
);
if
(
this
.
datalist
!=
null
&&
this
.
datalist
.
length
>
0
)
{
this
.
form
.
relationDeviceType
=
'3'
;
var
tConfinedSpaceParam
=
{
tConfinedSpace
:
this
.
form
,
tDeviceInfoS
:
this
.
datalist
}
//重新绑定修改后的关联设备
updateDetailInfoLists
(
JSON
.
stringify
(
tConfinedSpaceParam
)).
then
(
response
=>
{
this
.
open
=
false
;
this
.
getList
();
}
);
}
}
else
{
if
(
valid
)
{
const
deviceIds
=
this
.
ids
;
...
...
zh-baseversion-web/src/views/statistic/hiddenStatisticAnalysis/index.vue
View file @
67003107
...
...
@@ -63,7 +63,7 @@
<span
class=
"dbtn"
@
click=
"checkFile(scope.row.dealPlanUrl)"
v-if=
"scope.row.dealPlan
!= ''
"
v-if=
"scope.row.dealPlan
Url != '' && scope.row.dealPlanUrl != null
"
>
<i
class=
"el-icon el-icon-view"
></i>
查看/下载
</span>
...
...
@@ -129,7 +129,7 @@
<el-row>
<el-col
:span=
"23"
>
<el-form-item
label=
"处理方案:"
>
<span
class=
"dbtn"
@
click=
"checkFile(detailForm.dealPlanUrl)"
v-if=
"detailForm.dealPlan
!= ''
"
>
<span
class=
"dbtn"
@
click=
"checkFile(detailForm.dealPlanUrl)"
v-if=
"detailForm.dealPlan
Url != '' && detailForm.dealPlanUrl != null
"
>
<i
class=
"el-icon el-icon-view"
></i>
查看/下载
</span>
<span
v-else
><el-input
disabled
/></span>
...
...
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