Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
51229e0f
提交
51229e0f
authored
4月 15, 2026
作者:
闫鹏
浏览文件
操作
浏览文件
下载
差异文件
合并分支 'yp-dev' 到 'pre'
Yp dev 查看合并请求
!345
上级
eaf16a6e
c693743b
流水线
#482
已通过 于阶段
in 3 分 35 秒
变更
4
流水线
1
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
20 行增加
和
19 行删除
+20
-19
index.vue
...ontrol/v2.0EntityList/components/dataStatistics/index.vue
+1
-1
index.vue
src/views/exportControl/v2.0EntityList/index.vue
+1
-1
index.vue
...omponents/sanctionsOverview/components/listPage/index.vue
+18
-9
index.vue
...nce/singleSanction/components/sanctionsOverview/index.vue
+0
-8
没有找到文件。
src/views/exportControl/v2.0EntityList/components/dataStatistics/index.vue
浏览文件 @
51229e0f
...
...
@@ -1220,7 +1220,7 @@ onMounted(() => {
width
:
1601px
;
margin
:
0
auto
;
padding-top
:
16px
;
padding-bottom
:
50px
;
//
padding-bottom: 50px;
.nav
{
width
:
100%
;
...
...
src/views/exportControl/v2.0EntityList/index.vue
浏览文件 @
51229e0f
...
...
@@ -236,7 +236,7 @@ const headerNavList = ref([
width
:
100%
;
height
:
auto
;
min-height
:
calc
(
100%
-
148px
);
background-color
:
#f7f8f9
;
//
background-color: #f7f8f9;
}
}
</
style
>
src/views/finance/entityList/components/sanctionsOverview/components/listPage/index.vue
浏览文件 @
51229e0f
...
...
@@ -5,6 +5,9 @@
<el-input
v-model=
"searchKeyword"
class=
"search-input"
placeholder=
"搜索实体"
:suffix-icon=
"Search"
/>
<div
class=
"filters"
>
<el-checkbox
v-model=
"onlyChina"
label=
"只看中国实体"
/>
<el-select
v-model=
"order"
placeholder=
"请选择排序方式"
style=
"width: 160px"
>
<el-option
v-for=
"item in orderOptions"
:value=
"item.value"
:key=
"item.value"
:label=
"item.name"
/>
</el-select>
</div>
</div>
<div
class=
"main"
>
...
...
@@ -242,6 +245,11 @@ import { useGotoCompanyPages } from "@/router/modules/company";
const
gotoCompanyPages
=
useGotoCompanyPages
();
const
router
=
useRouter
();
const
order
=
ref
(
"asc"
);
const
orderOptions
=
ref
([
{
name
:
"正序"
,
value
:
"asc"
},
{
name
:
"倒序"
,
value
:
"desc"
}
]);
// 跳转公司详情页
const
handleCompClick
=
item
=>
{
console
.
log
(
"item"
,
item
);
...
...
@@ -258,7 +266,7 @@ const handleCompClick = item => {
};
const
searchKeyword
=
ref
(
""
);
const
onlyChina
=
ref
(
fals
e
);
const
onlyChina
=
ref
(
tru
e
);
const
sanctionTime
=
ref
(
""
);
const
currentPage
=
ref
(
1
);
...
...
@@ -461,7 +469,8 @@ const getExportControlListApi = async () => {
endDate
,
keyword
:
searchKeyword
.
value
||
undefined
,
pageNum
:
currentPage
.
value
,
pageSize
:
pageSize
.
value
pageSize
:
pageSize
.
value
,
sortOrder
:
order
.
value
};
try
{
...
...
@@ -485,7 +494,12 @@ const getExportControlListApi = async () => {
}
};
watch
(
onlyChina
,
()
=>
{
// watch(onlyChina, () => {
// currentPage.value = 1;
// getExportControlListApi();
// });
watch
([
onlyChina
,
order
],
()
=>
{
currentPage
.
value
=
1
;
getExportControlListApi
();
});
...
...
@@ -515,11 +529,6 @@ watch(customDateRange, () => {
</
script
>
<
style
scoped
lang=
"scss"
>
*
{
margin
:
0
;
padding
:
0
;
}
.list-page
{
width
:
1601px
;
padding-bottom
:
50px
;
...
...
@@ -554,7 +563,7 @@ watch(customDateRange, () => {
.filters
{
display
:
flex
;
align-items
:
center
;
//
align-items: center;
.el-checkbox
{
margin-right
:
20px
;
...
...
src/views/finance/singleSanction/components/sanctionsOverview/index.vue
浏览文件 @
51229e0f
...
...
@@ -16,18 +16,10 @@
<div
class=
"label"
>
发布时间:
</div>
<div
class=
"value"
>
{{
formattedData
.
postDate
}}
</div>
</div>
<!--
<div
class=
"info-row"
>
<div
class=
"label"
>
生效时间:
</div>
<div
class=
"value"
>
{{
formattedData
.
effectiveDate
}}
</div>
</div>
-->
<div
class=
"info-row"
>
<div
class=
"label"
>
发布文件:
</div>
<div
class=
"value"
>
{{
formattedData
.
fileCode
}}
</div>
</div>
<!--
<div
class=
"info-row"
>
<div
class=
"label"
>
案卷号:
</div>
<div
class=
"value"
>
{{
formattedData
.
administrativeOrderId
}}
</div>
</div>
-->
<div
class=
"info-row"
>
<div
class=
"label"
>
发布人:
</div>
<div
class=
"value link"
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论