Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
GaoQuYingJiH5-ASD
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
xinzhedeai
GaoQuYingJiH5-ASD
Commits
53eac05d
Commit
53eac05d
authored
Jun 17, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add: 新增整改流水线
parent
1790375c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
3 deletions
+69
-3
_check_info.css
src/_check_info.css
+0
-3
_check_info.html
src/_check_info.html
+69
-0
No files found.
src/_check_info.css
View file @
53eac05d
...
...
@@ -304,8 +304,6 @@ body {
padding-left
:
0.2rem
;
background-color
:
#fff
;
}
<<<<<<<
Updated
upstream
.textareaEle
{
border
:
0.01rem
solid
#d8d8d8
;
border-radius
:
2px
;
...
...
@@ -328,7 +326,6 @@ body {
width
:
2rem
;
}
/* 隐患整改模块 */
.rectification-module
{
padding
:
0.3rem
;
/* 上下左右内边距30px */
...
...
src/_check_info.html
View file @
53eac05d
...
...
@@ -372,6 +372,75 @@
</div>
</van-action-sheet>
<!-- 新增隐患整改模块 -->
<div
class=
"rectification-module"
>
<!-- 模块标题 -->
<div
class=
"module-header"
>
<img
src=
"../assets/rectification-icon.png"
alt=
"整改图标"
class=
"module-icon"
>
<h4
class=
"module-title"
>
隐患整改
</h4>
</div>
<!-- 时间线进度列表 -->
<div
class=
"timeline-list"
>
<!-- 遍历整改记录 -->
<div
v-for=
"(record, index) in rectificationRecords"
:key=
"index"
class=
"timeline-item"
>
<!-- 时间线左侧标记(点+线) -->
<div
class=
"timeline-marker"
>
<div
class=
"marker-dot"
></div>
<div
class=
"marker-line"
v-if=
"index !== rectificationRecords.length - 1"
></div>
</div>
<!-- 时间线内容 -->
<div
class=
"timeline-content"
>
<!-- 整改日期 -->
<p
class=
"rectification-date"
>
{{ record.rectificationDate }}
</p>
<!-- 整改图片 -->
<div
class=
"rectification-images"
>
<img
v-for=
"(img, i) in record.images"
:key=
"i"
:src=
"img"
alt=
"整改图"
@
click=
"showImage(record.images, i)"
class=
"rect-image"
>
</div>
<!-- 状态容器(三种类型) -->
<div
:class=
"['status-container', record.status]"
>
<!-- 审批拒绝 -->
<div
v-if=
"record.status === 'reject'"
class=
"reject-status"
>
<span
class=
"status-tag"
>
审批拒绝
</span>
<div
class=
"status-content"
>
<p>
审批日期:{{ record.approveDate }}
</p>
<p>
拒绝原因:{{ record.rejectReason }}
</p>
</div>
</div>
<!-- 待审批 -->
<div
v-if=
"record.status === 'pending'"
class=
"pending-status"
>
<span
class=
"status-tag"
>
待审批
</span>
</div>
<!-- 审批通过 -->
<div
v-if=
"record.status === 'approve'"
class=
"approve-status"
>
<div
class=
"status-content"
>
<p>
审批日期:{{ record.approveDate }}
</p>
</div>
<span
class=
"status-tag"
>
审批通过
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 隐患详情底部栏 -->
<div
class=
"bottom_bar"
v-if=
"flag=='3' && ['admin', 'common', 'industry', 'street', 'wgy'].includes(userType)"
>
...
...
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