Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
20ab448d
提交
20ab448d
authored
3月 16, 2026
作者:
kxjia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善问题整改页面
上级
f0a3acc8
全部展开
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
54 行增加
和
28 行删除
+54
-28
JCascaderDomain.vue
.../components/Form/src/jeecg/components/JCascaderDomain.vue
+1
-1
api.ts
zrch-risk-client-39/src/views/dashboard/firstPage/api.ts
+4
-2
fxjc_index.vue
...sk-client-39/src/views/dashboard/firstPage/fxjc_index.vue
+0
-0
index.vue
zrch-risk-client-39/src/views/dashboard/firstPage/index.vue
+2
-4
StProblemCheck.data.ts
...-39/src/views/project/problemCheck/StProblemCheck.data.ts
+45
-19
StProblemCheckList.vue
...-39/src/views/project/problemCheck/StProblemCheckList.vue
+2
-2
没有找到文件。
zrch-risk-client-39/src/components/Form/src/jeecg/components/JCascaderDomain.vue
浏览文件 @
20ab448d
...
...
@@ -134,7 +134,7 @@
// }
treeValue
.
value
=
[
result
.
result
];
onLoadTriggleChange
(
result
.
result
[
0
]
);
onLoadTriggleChange
(
result
.
result
?
result
.
result
[
0
]
:
null
);
}
}
...
...
zrch-risk-client-39/src/views/dashboard/firstPage/api.ts
浏览文件 @
20ab448d
...
...
@@ -41,8 +41,10 @@ export const getSysInfotest = (params) => defHttp.get({ url: Api.sysInfotest, pa
* 列表接口
* @param params
*/
export
const
getBaseInfoList
=
(
params
)
=>
defHttp
.
get
({
url
:
Api
.
getBaseInfoList
,
params
});
export
const
getBaseInfoList
=
(
params
)
=>
{
return
defHttp
.
get
({
url
:
Api
.
getBaseInfoList
,
params
});
}
//底部折线图用到的方法
export
const
getPageChartData
=
()
=>
defHttp
.
get
({
url
:
Api
.
getPageChartData
});
...
...
zrch-risk-client-39/src/views/dashboard/firstPage/fxjc_index.vue
deleted
100644 → 0
浏览文件 @
f0a3acc8
差异被折叠。
点击展开。
zrch-risk-client-39/src/views/dashboard/firstPage/index.vue
浏览文件 @
20ab448d
...
...
@@ -46,7 +46,7 @@
</div>
</div>
<!-- 机构概况和科技概况 -->
<OrgInfo
/>
<OrgInfo/>
<!-- 风险评估 -->
<div
class=
"risk"
>
...
...
@@ -73,9 +73,7 @@
<div
class=
"monitorLine"
>
<LineCharts
/>
</div>
</div>
-->
</div>
<DetailModal
@
register=
"registerDetail"
/>
...
...
zrch-risk-client-39/src/views/project/problemCheck/StProblemCheck.data.ts
浏览文件 @
20ab448d
...
...
@@ -7,15 +7,21 @@ export const columns: BasicColumn[] = [
title
:
'问题编号'
,
align
:
'center'
,
dataIndex
:
'problemNo'
,
resizable
:
true
,
ifShow
:
true
,
width
:
100
,
sorter
:
true
,
},
{
title
:
'项目分类'
,
align
:
'center'
,
dataIndex
:
'projectCategory'
,
resizable
:
true
,
width
:
120
,
width
:
100
,
sorter
:
true
,
customRender
:
({
text
})
=>
{
return
render
.
renderDict
(
text
,
'project_category'
);
},
},
{
title
:
'问题来源'
,
...
...
@@ -28,22 +34,28 @@ export const columns: BasicColumn[] = [
title
:
'所属领域'
,
align
:
'center'
,
dataIndex
:
'domain'
,
width
:
120
,
width
:
150
,
resizable
:
true
,
customRender
:
({
text
})
=>
{
return
render
.
renderDict
(
text
,
'rate_domain'
);
},
sorter
:
true
,
},
{
title
:
'问题描述'
,
align
:
'center'
,
dataIndex
:
'problemDes'
,
resizable
:
true
,
ifShow
:
fals
e
,
ifShow
:
tru
e
,
},
{
title
:
'
严重程度
'
,
title
:
'
风险等级
'
,
align
:
'center'
,
dataIndex
:
'
severity
'
,
dataIndex
:
'
riskLevel
'
,
width
:
100
,
resizable
:
true
,
customRender
:
({
text
})
=>
{
return
render
.
renderDict
(
text
,
'
severity
'
);
return
render
.
renderDict
(
text
,
'
risk_level
'
);
},
},
{
...
...
@@ -51,9 +63,11 @@ export const columns: BasicColumn[] = [
align
:
'center'
,
dataIndex
:
'bpmStatus'
,
width
:
100
,
resizable
:
true
,
customRender
:
({
text
})
=>
{
return
render
.
renderDict
(
text
,
'bpm_status'
);
},
sorter
:
true
,
},
];
//查询数据
...
...
@@ -104,7 +118,11 @@ export const formSchema: FormSchema[] = [
label
:
'问题编号'
,
field
:
'problemNo'
,
component
:
'Input'
,
// required: true,
required
:
true
,
componentProps
:
{
showCount
:
true
,
maxlength
:
10
,
},
},
{
label
:
'项目分类'
,
...
...
@@ -113,19 +131,27 @@ export const formSchema: FormSchema[] = [
componentProps
:
{
dictCode
:
'project_category'
,
},
//
required: true,
required
:
true
,
},
{
label
:
'问题发现方'
,
field
:
'findUser
Id
'
,
field
:
'findUser'
,
component
:
'Input'
,
// required: true,
required
:
true
,
componentProps
:
{
showCount
:
true
,
maxlength
:
32
,
},
},
{
label
:
'问题来源'
,
field
:
'problemSource'
,
component
:
'Input'
,
// required: true,
required
:
true
,
componentProps
:
{
showCount
:
true
,
maxlength
:
64
,
},
},
{
label
:
'所属领域'
,
...
...
@@ -134,35 +160,35 @@ export const formSchema: FormSchema[] = [
componentProps
:
{
dictCode
:
'rate_domain'
,
},
//
required: true,
required
:
true
,
},
{
label
:
'严重程度'
,
field
:
'severity'
,
component
:
'JSearchSelect'
,
//
required: true,
required
:
true
,
componentProps
:
{
dict
:
'severity'
,
},
colProps
:
{
lg
:
24
},
},
{
label
:
'风险等级'
,
field
:
'riskLevel'
,
component
:
'JSearchSelect'
,
//
required: true,
required
:
true
,
componentProps
:
{
dict
:
'risk_level'
,
},
colProps
:
{
lg
:
24
},
},
{
label
:
'问题描述'
,
field
:
'problemDes'
,
component
:
'InputTextArea'
,
//
required: true,
required
:
true
,
componentProps
:
{
rows
:
3
,
rows
:
4
,
showCount
:
true
,
maxlength
:
3000
,
},
},
{
...
...
@@ -187,7 +213,7 @@ export const planFormSchema: FormSchema[] = [
componentProps
:
{
rows
:
3
,
},
//
required: true,
required
:
true
,
},
{
label
:
'整改方案'
,
...
...
zrch-risk-client-39/src/views/project/problemCheck/StProblemCheckList.vue
浏览文件 @
20ab448d
...
...
@@ -12,7 +12,7 @@
<!--插槽:table标题-->
<template
#
tableTitle
>
<a-button
type=
"primary"
@
click=
"handleAdd"
preIcon=
"ant-design:plus-outlined"
>
新增
</a-button>
<a-button
type=
"primary"
preIcon=
"ant-design:export-outlined"
@
click=
"onExportXls"
>
导出
1
</a-button>
<a-button
type=
"primary"
preIcon=
"ant-design:export-outlined"
@
click=
"onExportXls"
>
导出
</a-button>
<j-upload-button
type=
"primary"
preIcon=
"ant-design:import-outlined"
@
click=
"onImportXls"
>
导入
</j-upload-button>
<a-dropdown
v-if=
"selectedRowKeys.length > 0"
>
<template
#
overlay
>
...
...
@@ -104,7 +104,7 @@
params
[
'bpmStatus'
]
=
tabStatusMap
[
activeTab
.
value
];
},
actionColumn
:
{
width
:
4
00
,
width
:
2
00
,
fixed
:
'right'
,
},
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论