Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
893f18de
提交
893f18de
authored
4月 17, 2026
作者:
liuluyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新问题归档表单
上级
77f061e6
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
214 行增加
和
4 行删除
+214
-4
StProblemCheckArchive.data.ts
...iews/project/problemArchive/StProblemCheckArchive.data.ts
+0
-0
StProblemCheckArchiveList.vue
...iews/project/problemArchive/StProblemCheckArchiveList.vue
+0
-0
ExecutionDetailModal.vue
...roject/problemArchive/components/ExecutionDetailModal.vue
+102
-0
RectifyPlanModal.vue
...ws/project/problemArchive/components/RectifyPlanModal.vue
+110
-0
StProblemCheck.data.ts
...-39/src/views/project/problemCheck/StProblemCheck.data.ts
+2
-4
没有找到文件。
zrch-risk-client-39/src/views/project/problemArchive/StProblemCheckArchive.data.ts
浏览文件 @
893f18de
差异被折叠。
点击展开。
zrch-risk-client-39/src/views/project/problemArchive/StProblemCheckArchiveList.vue
浏览文件 @
893f18de
差异被折叠。
点击展开。
zrch-risk-client-39/src/views/project/problemArchive/components/ExecutionDetailModal.vue
0 → 100644
浏览文件 @
893f18de
<
template
>
<a-modal
:open=
"modelValue"
:title=
"title"
:width=
"600"
:footer=
"null"
@
cancel=
"handleCancel"
@
update:open=
"handleOpenChange"
>
<div
class=
"modal-content"
>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
执行部门:
</div>
<div
class=
"form-value"
>
{{
formData
.
execDepCode
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
负责人:
</div>
<div
class=
"form-value"
>
{{
formData
.
execUserId
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
实际开始日期:
</div>
<div
class=
"form-value"
>
{{
formData
.
execStartDate
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
实际完成日期:
</div>
<div
class=
"form-value"
>
{{
formData
.
execEndDate
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
整改落实情况:
</div>
<div
class=
"form-value"
>
{{
formData
.
execRemark
||
'-'
}}
</div>
</div>
</div>
<template
#
footer
>
<div
class=
"modal-footer"
>
<a-button
type=
"primary"
@
click=
"handleCancel"
>
关闭
</a-button>
</div>
</
template
>
</a-modal>
</template>
<
script
setup
lang=
"ts"
>
import
{
ref
,
watch
}
from
'vue'
;
// 定义组件props
const
props
=
defineProps
({
visible
:
{
type
:
Boolean
,
default
:
false
,
},
modelValue
:
{
type
:
Boolean
,
default
:
false
,
},
formData
:
{
type
:
Object
,
default
:
()
=>
({}),
},
title
:
{
type
:
String
,
default
:
'执行情况详情'
,
},
});
// 定义事件
const
emit
=
defineEmits
([
'update:modelValue'
,
'cancel'
]);
// 处理modal打开状态变化
const
handleOpenChange
=
(
newVal
)
=>
{
emit
(
'update:modelValue'
,
newVal
);
};
// 关闭弹窗
const
handleCancel
=
()
=>
{
emit
(
'update:modelValue'
,
false
);
emit
(
'cancel'
);
};
</
script
>
<
style
scoped
lang=
"less"
>
.modal-content {
padding: 0 20px;
}
.form-item {
margin-bottom: 16px;
display: flex;
align-items: flex-start;
}
.form-label {
width: 120px;
font-weight: 500;
color: #333;
margin-right: 16px;
text-align: right;
padding-top: 6px;
}
.form-value {
flex: 1;
color: #666;
line-height: 1.5;
word-break: break-word;
}
.modal-footer {
text-align: center;
margin-top: 24px;
}
</
style
>
zrch-risk-client-39/src/views/project/problemArchive/components/RectifyPlanModal.vue
0 → 100644
浏览文件 @
893f18de
<
template
>
<a-modal
:open=
"modelValue"
:title=
"title"
:width=
"600"
:footer=
"null"
@
cancel=
"handleCancel"
@
update:open=
"handleOpenChange"
>
<div
class=
"modal-content"
>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
成因分析:
</div>
<div
class=
"form-value"
>
{{
formData
.
causeAnalysis
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
整改方案:
</div>
<div
class=
"form-value"
>
{{
formData
.
rectifyPlan
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
整改周期:
</div>
<div
class=
"form-value"
>
{{
formData
.
rectifyCycle
||
'-'
}}
天
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
计划开始日期:
</div>
<div
class=
"form-value"
>
{{
formData
.
planStartDate
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
计划结束日期:
</div>
<div
class=
"form-value"
>
{{
formData
.
planEndDate
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
负责部门:
</div>
<div
class=
"form-value"
>
{{
formData
.
headDepCode
||
'-'
}}
</div>
</div>
<div
class=
"form-item"
>
<div
class=
"form-label"
>
负责人:
</div>
<div
class=
"form-value"
>
{{
formData
.
headUserId
||
'-'
}}
</div>
</div>
</div>
<template
#
footer
>
<div
class=
"modal-footer"
>
<a-button
type=
"primary"
@
click=
"handleCancel"
>
关闭
</a-button>
</div>
</
template
>
</a-modal>
</template>
<
script
setup
lang=
"ts"
>
import
{
ref
,
watch
}
from
'vue'
;
// 定义组件props
const
props
=
defineProps
({
visible
:
{
type
:
Boolean
,
default
:
false
,
},
modelValue
:
{
type
:
Boolean
,
default
:
false
,
},
formData
:
{
type
:
Object
,
default
:
()
=>
({}),
},
title
:
{
type
:
String
,
default
:
'整改计划详情'
,
},
});
// 定义事件
const
emit
=
defineEmits
([
'update:modelValue'
,
'cancel'
]);
// 处理modal打开状态变化
const
handleOpenChange
=
(
newVal
)
=>
{
emit
(
'update:modelValue'
,
newVal
);
};
// 关闭弹窗
const
handleCancel
=
()
=>
{
emit
(
'update:modelValue'
,
false
);
emit
(
'cancel'
);
};
</
script
>
<
style
scoped
lang=
"less"
>
.modal-content {
padding: 0 20px;
}
.form-item {
margin-bottom: 16px;
display: flex;
align-items: flex-start;
}
.form-label {
width: 120px;
font-weight: 500;
color: #333;
margin-right: 16px;
text-align: right;
padding-top: 6px;
}
.form-value {
flex: 1;
color: #666;
line-height: 1.5;
word-break: break-word;
}
.modal-footer {
text-align: center;
margin-top: 24px;
}
</
style
>
zrch-risk-client-39/src/views/project/problemCheck/StProblemCheck.data.ts
浏览文件 @
893f18de
...
@@ -47,7 +47,6 @@ export const columns: BasicColumn[] = [
...
@@ -47,7 +47,6 @@ export const columns: BasicColumn[] = [
dataIndex
:
'problemDes'
,
dataIndex
:
'problemDes'
,
resizable
:
true
,
resizable
:
true
,
ifShow
:
false
,
ifShow
:
false
,
},
},
{
{
title
:
'风险等级'
,
title
:
'风险等级'
,
...
@@ -185,12 +184,11 @@ export const formSchema: FormSchema[] = [
...
@@ -185,12 +184,11 @@ export const formSchema: FormSchema[] = [
{
{
label
:
'问题描述'
,
label
:
'问题描述'
,
field
:
'problemDes'
,
field
:
'problemDes'
,
component
:
'
JEditor
'
,
component
:
'
InputTextArea
'
,
required
:
true
,
required
:
true
,
componentProps
:
{
componentProps
:
{
showCount
:
true
,
maxlength
:
512
,
maxlength
:
512
,
height
:
220
,
rows
:
3
,
},
},
},
},
{
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论