Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
2aa68efe
提交
2aa68efe
authored
4月 06, 2026
作者:
yanpeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
finance api3
上级
861441f9
流水线
#334
已通过 于阶段
in 1 分 37 秒
变更
7
流水线
1
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
12 行增加
和
8 行删除
+12
-8
exportControl.js
src/api/exportControl.js
+3
-3
exportControl.js
src/router/modules/exportControl.js
+1
-1
index.vue
src/views/exportControl/v2.0SingleSanction/index.vue
+1
-0
mock.json
src/views/exportControl/v2.0SingleSanction/mock.json
+0
-0
index.vue
src/views/finance/index.vue
+2
-1
index.vue
...inance/v2.0SingleSanction/components/deepMining/index.vue
+1
-1
index.vue
...ce/v2.0SingleSanction/components/impactAnalysis/index.vue
+4
-2
没有找到文件。
src/api/exportControl.js
浏览文件 @
2aa68efe
...
@@ -4,7 +4,7 @@ import { ElMessage } from "element-plus";
...
@@ -4,7 +4,7 @@ import { ElMessage } from "element-plus";
const
request200
=
requestP
=>
{
const
request200
=
requestP
=>
{
return
requestP
.
then
(
data
=>
{
return
requestP
.
then
(
data
=>
{
if
(
data
.
code
===
200
)
{
if
(
data
.
code
===
200
)
{
console
.
log
(
'返回的数据结构 =>'
,
data
.
data
)
console
.
log
(
"返回的数据结构 =>"
,
data
.
data
);
return
data
.
data
;
return
data
.
data
;
}
}
ElMessage
({
ElMessage
({
...
@@ -393,13 +393,13 @@ export function getDomainDistribution(sanctionDate = "2025-11-11") {
...
@@ -393,13 +393,13 @@ export function getDomainDistribution(sanctionDate = "2025-11-11") {
* startTime: string
* startTime: string
* }[]>}
* }[]>}
*/
*/
export
function
getEntitiesList
(
sanTypeId
=
1
,
pageNum
=
1
,
pageSize
=
10
,
sanctionDate
=
""
,
isCn
=
false
)
{
export
function
getEntitiesList
(
sanTypeId
s
=
[
"1"
]
,
pageNum
=
1
,
pageSize
=
10
,
sanctionDate
=
""
,
isCn
=
false
)
{
return
request200
(
return
request200
(
request
({
request
({
method
:
"POST"
,
method
:
"POST"
,
url
:
"/api/sanctionList/pageQuery"
,
url
:
"/api/sanctionList/pageQuery"
,
data
:
{
data
:
{
sanTypeId
,
sanTypeId
s
,
pageNum
,
pageNum
,
pageSize
,
pageSize
,
sanctionDate
,
sanctionDate
,
...
...
src/router/modules/exportControl.js
浏览文件 @
2aa68efe
...
@@ -102,7 +102,7 @@ const exportControlRoutes = [
...
@@ -102,7 +102,7 @@ const exportControlRoutes = [
name
:
"singleSanction"
,
name
:
"singleSanction"
,
component
:
()
=>
import
(
"@/views/exportControl/v2.0SingleSanction/index.vue"
),
component
:
()
=>
import
(
"@/views/exportControl/v2.0SingleSanction/index.vue"
),
meta
:
{
meta
:
{
title
:
"单
条
制裁详情"
,
title
:
"单
次
制裁详情"
,
dynamicTitle
:
true
dynamicTitle
:
true
}
}
},
},
...
...
src/views/exportControl/v2.0SingleSanction/index.vue
浏览文件 @
2aa68efe
...
@@ -267,6 +267,7 @@ const resetModal = () => {
...
@@ -267,6 +267,7 @@ const resetModal = () => {
};
};
onMounted
(()
=>
{
onMounted
(()
=>
{
console
.
log
(
"出口管制-单次制裁"
);
getUrlParams
();
getUrlParams
();
getSingleSanctionOverviewData
();
getSingleSanctionOverviewData
();
});
});
...
...
src/views/exportControl/v2.0SingleSanction/mock.json
deleted
100644 → 0
浏览文件 @
861441f9
差异被折叠。
点击展开。
src/views/finance/index.vue
浏览文件 @
2aa68efe
...
@@ -1377,7 +1377,7 @@ watch(
...
@@ -1377,7 +1377,7 @@ watch(
const
fetchEntitiesList
=
async
(
page
=
1
,
size
=
10
)
=>
{
const
fetchEntitiesList
=
async
(
page
=
1
,
size
=
10
)
=>
{
try
{
try
{
console
.
log
(
"activeResourceTabItem.value.id"
,
activeResourceTabItem
.
value
.
id
);
console
.
log
(
"activeResourceTabItem.value.id"
,
activeResourceTabItem
.
value
.
id
);
const
res
=
await
getEntitiesList
(
activeResourceTabItem
.
value
.
id
.
join
(
","
)
,
page
,
size
);
const
res
=
await
getEntitiesList
(
activeResourceTabItem
.
value
.
id
,
page
,
size
);
if
(
res
)
{
if
(
res
)
{
entitiesList
.
value
=
res
.
content
.
map
(
item
=>
({
entitiesList
.
value
=
res
.
content
.
map
(
item
=>
({
...
item
,
...
item
,
...
@@ -1780,6 +1780,7 @@ onMounted(async () => {
...
@@ -1780,6 +1780,7 @@ onMounted(async () => {
// 获取出口管制制裁措施
// 获取出口管制制裁措施
await
fetchSanctionList
();
await
fetchSanctionList
();
}
catch
(
err
)
{
}
catch
(
err
)
{
console
.
log
(
"此处报错?"
);
console
.
log
(
err
);
console
.
log
(
err
);
}
}
handleGetHylyList
();
handleGetHylyList
();
...
...
src/views/finance/v2.0SingleSanction/components/deepMining/index.vue
浏览文件 @
2aa68efe
...
@@ -565,7 +565,7 @@ onMounted(async () => {
...
@@ -565,7 +565,7 @@ onMounted(async () => {
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
gap
:
16px
;
gap
:
16px
;
display
:
none
;
.tab-item
{
.tab-item
{
cursor
:
pointer
;
cursor
:
pointer
;
padding
:
4px
20px
;
padding
:
4px
20px
;
...
...
src/views/finance/v2.0SingleSanction/components/impactAnalysis/index.vue
浏览文件 @
2aa68efe
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
</div>
</div>
</div>
</div>
<industrial-impact
v-if=
"activeIndex === 0"
></industrial-impact>
<industrial-impact
v-if=
"activeIndex === 0"
></industrial-impact>
<
research-impact
v-if=
"activeIndex === 1"
></research-impact
>
<
!--
<research-impact
v-if=
"activeIndex === 1"
></research-impact>
--
>
</div>
</div>
</
template
>
</
template
>
...
@@ -23,7 +23,8 @@ import { ref } from "vue";
...
@@ -23,7 +23,8 @@ import { ref } from "vue";
import
industrialImpact
from
"./components/industrialImpact/index.vue"
;
import
industrialImpact
from
"./components/industrialImpact/index.vue"
;
import
researchImpact
from
"./components/researchImpact/index.vue"
;
import
researchImpact
from
"./components/researchImpact/index.vue"
;
const
activeTab
=
ref
([
"对华产业影响"
,
"对华科研影响"
]);
// const activeTab = ref(["对华产业影响", "对华科研影响"]);
const
activeTab
=
ref
([
"对华产业影响"
]);
const
activeIndex
=
ref
(
0
);
const
activeIndex
=
ref
(
0
);
</
script
>
</
script
>
...
@@ -44,6 +45,7 @@ const activeIndex = ref(0);
...
@@ -44,6 +45,7 @@ const activeIndex = ref(0);
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
gap
:
16px
;
gap
:
16px
;
display
:
none
;
.tab-item
{
.tab-item
{
cursor
:
pointer
;
cursor
:
pointer
;
padding
:
4px
20px
;
padding
:
4px
20px
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论