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
e144f75b
Commit
e144f75b
authored
Apr 30, 2026
by
zhangjianqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
4e237651
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
50 additions
and
1 deletion
+50
-1
TEnterpriseSystem.java
...main/java/com/zehong/system/domain/TEnterpriseSystem.java
+20
-0
TEmergencyDrillsMapper.xml
...c/main/resources/mapper/system/TEmergencyDrillsMapper.xml
+1
-0
TEnterpriseSystemMapper.xml
.../main/resources/mapper/system/TEnterpriseSystemMapper.xml
+6
-0
index.vue
zh-baseversion-web/src/views/space/archive/index.vue
+14
-0
index.vue
zh-baseversion-web/src/views/supervise/laws/index.vue
+9
-1
No files found.
zh-baseversion-system/src/main/java/com/zehong/system/domain/TEnterpriseSystem.java
View file @
e144f75b
...
@@ -66,6 +66,26 @@ public class TEnterpriseSystem extends BaseEntity
...
@@ -66,6 +66,26 @@ public class TEnterpriseSystem extends BaseEntity
@Excel
(
name
=
"是否删除(0正常,1删除)"
)
@Excel
(
name
=
"是否删除(0正常,1删除)"
)
private
String
isDel
;
private
String
isDel
;
private
String
beginTime
;
private
String
endTime
;
public
String
getBeginTime
()
{
return
beginTime
;
}
public
void
setBeginTime
(
String
beginTime
)
{
this
.
beginTime
=
beginTime
;
}
public
String
getEndTime
()
{
return
endTime
;
}
public
void
setEndTime
(
String
endTime
)
{
this
.
endTime
=
endTime
;
}
public
void
setSystemId
(
Long
systemId
)
public
void
setSystemId
(
Long
systemId
)
{
{
this
.
systemId
=
systemId
;
this
.
systemId
=
systemId
;
...
...
zh-baseversion-system/src/main/resources/mapper/system/TEmergencyDrillsMapper.xml
View file @
e144f75b
...
@@ -37,6 +37,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -37,6 +37,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fIsDel != null and fIsDel != ''"
>
and f_is_del = #{fIsDel}
</if>
<if
test=
"fIsDel != null and fIsDel != ''"
>
and f_is_del = #{fIsDel}
</if>
<if
test=
"fRemarks != null and fRemarks != ''"
>
and f_remarks = #{fRemarks}
</if>
<if
test=
"fRemarks != null and fRemarks != ''"
>
and f_remarks = #{fRemarks}
</if>
</where>
</where>
order by f_create_time desc
</select>
</select>
<select
id=
"selectTEmergencyDrillsById"
parameterType=
"Long"
resultMap=
"TEmergencyDrillsResult"
>
<select
id=
"selectTEmergencyDrillsById"
parameterType=
"Long"
resultMap=
"TEmergencyDrillsResult"
>
...
...
zh-baseversion-system/src/main/resources/mapper/system/TEnterpriseSystemMapper.xml
View file @
e144f75b
...
@@ -43,6 +43,12 @@
...
@@ -43,6 +43,12 @@
<if
test=
"fileName != null and fileName != ''"
>
and file_name like concat('%', #{fileName}, '%')
</if>
<if
test=
"fileName != null and fileName != ''"
>
and file_name like concat('%', #{fileName}, '%')
</if>
<if
test=
"fileUrl != null and fileUrl != ''"
>
and file_url = #{fileUrl}
</if>
<if
test=
"fileUrl != null and fileUrl != ''"
>
and file_url = #{fileUrl}
</if>
<if
test=
"status != null and status != ''"
>
and status = #{status}
</if>
<if
test=
"status != null and status != ''"
>
and status = #{status}
</if>
<if
test=
"beginTime !=null and beginTime !=''"
>
and create_time
>
#{beginTime}
</if>
<if
test=
"endTime !=null and endTime !=''"
>
and create_time
<
concat(#{endTime}," 23:59:59")
</if>
</where>
</where>
</select>
</select>
...
...
zh-baseversion-web/src/views/space/archive/index.vue
View file @
e144f75b
...
@@ -735,6 +735,20 @@ export default {
...
@@ -735,6 +735,20 @@ export default {
}
}
}
);
}
);
}
,
}
,
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$confirm
(
'是否确认删除密闭空间和人员密集场所编号为"'
+
ids
+
'"的数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}
).
then
(
function
()
{
return
delSpace
(
ids
);
}
).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
}
).
catch
(()
=>
{
}
);
}
,
/**关联设备添加方法*/
/**关联设备添加方法*/
addDetailInfo
(){
addDetailInfo
(){
this
.
$refs
[
"formDetailInfo"
].
validate
(
valid
=>
{
this
.
$refs
[
"formDetailInfo"
].
validate
(
valid
=>
{
...
...
zh-baseversion-web/src/views/supervise/laws/index.vue
View file @
e144f75b
...
@@ -306,7 +306,15 @@ export default {
...
@@ -306,7 +306,15 @@ export default {
/** 查询法律法规管理列表 */
/** 查询法律法规管理列表 */
getList
()
{
getList
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
listEnterpriseSystem
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
var
dateRange
=
this
.
dateRange
;
if
(
null
!=
dateRange
&&
''
!=
dateRange
)
{
this
.
queryParams
.
beginTime
=
dateRange
[
0
];
this
.
queryParams
.
endTime
=
dateRange
[
1
];
}
else
{
this
.
queryParams
.
beginTime
=
null
;
this
.
queryParams
.
endTime
=
null
;
}
listEnterpriseSystem
(
this
.
queryParams
).
then
(
response
=>
{
this
.
enterpriseSystemList
=
response
.
rows
;
this
.
enterpriseSystemList
=
response
.
rows
;
console
.
log
(
"enterpriseSystemList"
,
this
.
enterpriseSystemList
)
console
.
log
(
"enterpriseSystemList"
,
this
.
enterpriseSystemList
)
this
.
total
=
response
.
total
;
this
.
total
=
response
.
total
;
...
...
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