Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
risk-monitor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蔡建
risk-monitor
Commits
daf0d5e8
提交
daf0d5e8
authored
3月 12, 2026
作者:
hsx
浏览文件
操作
浏览文件
下载
差异文件
合并分支 'hsx' 到 'master'
新闻详情页 查看合并请求
!167
上级
31752ccc
085e61f2
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
240 行增加
和
47 行删除
+240
-47
newsBrief.js
src/api/news/newsBrief.js
+8
-2
ColorSvg.vue
src/components/base/images/ColorSvg.vue
+42
-33
ColorPrefixTitle.vue
src/components/base/texts/ColorPrefixTitle.vue
+8
-3
index.vue
src/views/decree/decreeHome/index.vue
+2
-2
ModeuleNews.vue
src/views/newsBrief/ModeuleNews.vue
+1
-2
NewsDetial.vue
src/views/newsBrief/NewsDetial.vue
+154
-1
NewsList.vue
src/views/newsBrief/NewsList.vue
+2
-2
NewsMain.vue
src/views/newsBrief/NewsMain.vue
+1
-2
组合 293.svg
src/views/newsBrief/assets/images/组合 293.svg
+18
-0
翻译 1.svg
src/views/newsBrief/assets/images/翻译 1.svg
+4
-0
没有找到文件。
src/api/news/newsBrief.js
浏览文件 @
daf0d5e8
...
@@ -54,4 +54,11 @@ export function getAreaList() {
...
@@ -54,4 +54,11 @@ export function getAreaList() {
method
:
'GET'
,
method
:
'GET'
,
url
:
`/api/commonDict/areaType`
,
url
:
`/api/commonDict/areaType`
,
})
})
}
}
\ No newline at end of file
export
function
getNewsDetail
(
params
)
{
return
request
({
method
:
'GET'
,
url
:
`/api/news/findById/
${
params
.
newsId
}
`
,
params
})
}
src/components/base/images/ColorSvg.vue
浏览文件 @
daf0d5e8
...
@@ -21,9 +21,10 @@ const props = defineProps({
...
@@ -21,9 +21,10 @@ const props = defineProps({
// SVG颜色
// SVG颜色
color
:
{
color
:
{
type
:
String
,
type
:
String
,
default
:
'#000'
default
:
null
}
}
,
size
:
{
,
size
:
{
type
:
Number
,
type
:
Number
,
default
:
null
default
:
null
}
}
...
@@ -43,40 +44,44 @@ const processedSvgContent = computed(() => {
...
@@ -43,40 +44,44 @@ const processedSvgContent = computed(() => {
// 替换SVG中的颜色
// 替换SVG中的颜色
let
processed
=
svgContent
.
value
;
let
processed
=
svgContent
.
value
;
if
(
props
.
color
)
{
// 替换fill属性
processed
=
processed
.
replace
(
/fill="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
// 保留透明和none值
if
(
p1
===
'none'
||
p1
===
'transparent'
)
{
return
match
;
}
return
`fill="
${
props
.
color
}
"`
;
});
// 替换stroke属性
processed
=
processed
.
replace
(
/stroke="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
// 保留透明和none值
if
(
p1
===
'none'
||
p1
===
'transparent'
)
{
return
match
;
}
return
`stroke="
${
props
.
color
}
"`
;
});
}
// 替换fill属性
if
(
props
.
size
)
{
processed
=
processed
.
replace
(
/fill="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
// 替换width属性
// 保留透明和none值
processed
=
processed
.
replace
(
/width="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
if
(
p1
===
'none'
||
p1
===
'transparent'
)
{
if
(
props
.
size
!==
null
)
{
return
`width="
${
props
.
size
}
"`
;
}
return
match
;
return
match
;
}
});
return
`fill="
${
props
.
color
}
"`
;
});
// 替换stroke属性
// 替换height属性
processed
=
processed
.
replace
(
/stroke="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
processed
=
processed
.
replace
(
/height="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
// 保留透明和none值
if
(
props
.
size
!==
null
)
{
if
(
p1
===
'none'
||
p1
===
'transparent'
)
{
return
`height="
${
props
.
size
}
"`
;
}
return
match
;
return
match
;
}
});
return
`stroke="
${
props
.
color
}
"`
;
}
});
// 替换width属性
processed
=
processed
.
replace
(
/width="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
if
(
props
.
size
!==
null
)
{
return
`width="
${
props
.
size
}
"`
;
}
return
match
;
});
// 替换height属性
processed
=
processed
.
replace
(
/height="
([^
"
]
*
)
"/g
,
(
match
,
p1
)
=>
{
if
(
props
.
size
!==
null
)
{
return
`height="
${
props
.
size
}
"`
;
}
return
match
;
});
console
.
log
(
processed
)
console
.
log
(
processed
)
return
processed
;
return
processed
;
...
@@ -131,10 +136,14 @@ onMounted(() => {
...
@@ -131,10 +136,14 @@ onMounted(() => {
<
style
scoped
>
<
style
scoped
>
.color-svg
{
.color-svg
{
display
:
inline-block
;
display
:
inline-block
;
/* svg垂直居中 */
vertical-align
:
middle
;
}
}
.svg-container
{
.svg-container
{
display
:
inline-block
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
}
}
...
...
src/components/base/texts/ColorPrefixTitle.vue
浏览文件 @
daf0d5e8
<
template
>
<
template
>
<el-space
:size=
"16"
class=
"text-tip-1-bold box"
>
<el-space
:size=
"16"
class=
"text-tip-1-bold box
-color-prefix
"
>
<div
class=
"color-prefix"
></div>
<div
class=
"color-prefix"
></div>
<slot></slot>
<slot></slot>
</el-space>
</el-space>
...
@@ -11,6 +11,10 @@ const props = defineProps({
...
@@ -11,6 +11,10 @@ const props = defineProps({
color
:
{
color
:
{
type
:
String
,
type
:
String
,
default
:
'var(--color-primary-100)'
default
:
'var(--color-primary-100)'
},
height
:
{
type
:
String
,
default
:
'16px'
}
}
})
})
</
script
>
</
script
>
...
@@ -18,11 +22,11 @@ const props = defineProps({
...
@@ -18,11 +22,11 @@ const props = defineProps({
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.color-prefix
{
.color-prefix
{
width
:
8px
;
width
:
8px
;
height
:
16px
;
height
:
v-bind
(
height
)
;
background-color
:
v-bind
(
color
);
background-color
:
v-bind
(
color
);
}
}
.box
{
.box
-color-prefix
{
color
:
v-bind
(
color
);
color
:
v-bind
(
color
);
}
}
</
style
>
</
style
>
\ No newline at end of file
src/views/decree/decreeHome/index.vue
浏览文件 @
daf0d5e8
...
@@ -438,7 +438,7 @@ import {
...
@@ -438,7 +438,7 @@ import {
getDecreehylyList
,
getDecreehylyList
,
getDecreeTypeList
getDecreeTypeList
}
from
"@/api/decree/home"
;
}
from
"@/api/decree/home"
;
import
RiskSignal
from
"@/components/base/
R
iskSignal/index.vue"
;
import
RiskSignal
from
"@/components/base/
r
iskSignal/index.vue"
;
// import RiskSignal from "@/components/base/RiskSignal/index.vue";
// import RiskSignal from "@/components/base/RiskSignal/index.vue";
import
{
getPersonSummaryInfo
}
from
"@/api/common/index"
;
import
{
getPersonSummaryInfo
}
from
"@/api/common/index"
;
import
{
getNews
,
getSocialMedia
}
from
"@/api/general/index"
;
import
{
getNews
,
getSocialMedia
}
from
"@/api/general/index"
;
...
@@ -2059,7 +2059,7 @@ onMounted(async () => {
...
@@ -2059,7 +2059,7 @@ onMounted(async () => {
margin-top
:
21px
;
margin-top
:
21px
;
height
:
450px
;
height
:
450px
;
display
:
flex
;
display
:
flex
;
gap
:
16px
;
gap
:
16px
;
.box3
{
.box3
{
width
:
792px
;
width
:
792px
;
...
...
src/views/newsBrief/ModeuleNews.vue
浏览文件 @
daf0d5e8
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<div
style=
"margin-top: 50px; margin-bottom: 24px; margin-left: 24px;"
>
<div
style=
"margin-top: 50px; margin-bottom: 24px; margin-left: 24px;"
>
<common-text
class=
"text-title-0-show"
color=
"var(--text-primary-90-color)"
>
{{
<common-text
class=
"text-title-0-show"
color=
"var(--text-primary-90-color)"
>
{{
moduleName
moduleName
}}
</common-text>
}}
</common-text>
<common-text
class=
"text-regular"
<common-text
class=
"text-regular"
color=
"var(--text-primary-65-color)"
>
基于情报价值评估预测算法,掌握全球重要潜在动向
</common-text>
color=
"var(--text-primary-65-color)"
>
基于情报价值评估预测算法,掌握全球重要潜在动向
</common-text>
</div>
</div>
...
@@ -38,7 +38,6 @@ import NewsList from "./NewsList.vue";
...
@@ -38,7 +38,6 @@ import NewsList from "./NewsList.vue";
import
{
getAreaList
,
getHotNewsByArea
}
from
"@/api/news/newsBrief"
;
import
{
getAreaList
,
getHotNewsByArea
}
from
"@/api/news/newsBrief"
;
import
{
ElSpace
,
ElDivider
,
ElRadioButton
,
ElRadioGroup
,
ElButton
,
ElIcon
}
from
"element-plus"
;
import
{
ElSpace
,
ElDivider
,
ElRadioButton
,
ElRadioGroup
,
ElButton
,
ElIcon
}
from
"element-plus"
;
import
CommonText
from
"@/components/base/texts/CommonText.vue"
;
import
CommonText
from
"@/components/base/texts/CommonText.vue"
;
import
AreaTag
from
"@/components/base/AreaTag/index.vue"
;
import
{
useGotoNewsBrief
}
from
"@/router/modules/news"
;
import
{
useGotoNewsBrief
}
from
"@/router/modules/news"
;
const
route
=
useRoute
();
const
route
=
useRoute
();
...
...
src/views/newsBrief/NewsDetial.vue
浏览文件 @
daf0d5e8
<
template
>
<
template
>
<el-scrollbar>
<div
class=
"flex-display common-page top-box-news-deatail"
style=
"align-items: center;"
>
<!--
<color-svg
:svg-url=
"NewsLogo"
:size=
"72"
style=
"margin-right:10px"
></color-svg>
-->
<img
:src=
"NewsLogo"
style=
"margin-right:24px"
>
<el-space
direction=
"vertical"
class=
"flex-fill"
alignment=
"flex-start"
>
<common-text
class=
"text-title-1-bold"
color=
"var(--text-primary-80-color)"
>
{{
newsDetail
.
titleZh
}}
</common-text>
<common-text
class=
"text-tip-1-bold"
color=
"var(--text-primary-80-color)"
>
{{
newsDetail
.
title
}}
</common-text>
<common-text
class=
"text-tip-1-bold"
color=
"var(--text-primary-65-color)"
>
{{
`${newsDetail.publishedTime
}
· ${newsDetail.source
}
`
}}
<
el
-
space
>
<
area
-
tag
:
area
-
name
=
"newsDetail.areaName"
/>
<
/el-space
>
<
/common-text
>
<
/el-space
>
<!--
<
el
-
button
type
=
"primary"
@
click
=
"() => gotoNewsDetail(newsDetail.newsId)"
>
<
el
-
icon
class
=
"icon"
>
<
el
-
icon
>
<
top
-
right
/>
<
/el-icon
>
<
/el-icon
>
查看原网页
<
/el-button> --
>
<
/div
>
<
div
class
=
"flex-display common-page content-box-news-detail"
>
<
el
-
space
direction
=
"vertical"
class
=
"background-as-card flex-fill"
fill
alignment
=
"flex-start"
>
<
div
style
=
"margin-top: 10px; margin-right: 24px;"
class
=
"flex-display"
>
<
color
-
prefix
-
title
height
=
"20px"
>
<
div
class
=
"text-title-2-bold"
>
新闻内容
<
/div
>
<
/color-prefix-title
>
<
div
class
=
"flex-fill"
><
/div
>
<
el
-
button
v
-
if
=
"hasTranslation"
:
type
=
"isOpenTranslation ? 'primary' : ''"
plain
@
click
=
"handleTranslation"
>
<
color
-
svg
:
svg
-
url
=
"TranslationSvg"
color
=
"var(--color-primary-100)"
:
size
=
"18"
style
=
"margin-right:10px"
><
/color-svg
>
译文
<
/el-button
>
<
/div
>
<
div
class
=
"common-padding"
>
<
div
class
=
"flex-display"
style
=
"align-items: center;"
>
<
common
-
text
class
=
"text-title-3-bold"
color
=
"var(--text-primary-80-color)"
>
中文
<
/common-text
>
<
div
class
=
"flex-fill"
style
=
"margin: 0 10px;"
>
<
el
-
divider
><
/el-divider
>
<
/div
>
<
el
-
button
@
click
=
"() => showMore = !showMore"
>
{{
showMore
?
'收起'
:
'展开'
}}
<
el
-
icon
>
<
arrow
-
down
v
-
if
=
"showMore"
/>
<
arrow
-
up
v
-
else
/
>
<
/el-icon
>
<
/el-button
>
<
/div
>
<
el
-
row
:
gutter
=
"32"
>
<
el
-
col
:
span
=
"znEnColSpan"
v
-
for
=
"(item, index) in showMore ? zhEnTexts : zhEnTexts.slice(0, 6)"
:
key
=
"index"
>
<
p
class
=
"p-news-content"
>
{{
item
}}
<
/p
>
<
/el-col
>
<
/el-row
>
<
/div
>
<
/el-space
>
<
el
-
space
direction
=
"vertical"
class
=
"background-as-card relation-news-box"
alignment
=
"flex-start"
>
<
el
-
space
style
=
"margin-top: 10px;"
>
<
color
-
prefix
-
title
height
=
"20px"
>
<
div
class
=
"text-title-2-bold"
>
相关新闻
<
/div
>
<
/color-prefix-title
>
<
/el-space
>
<
el
-
space
style
=
"margin-top: 10px;"
>
<
news
-
item
v
-
for
=
"item in relationNews"
:
key
=
"item.newsId"
:
news
-
item
=
"item"
/>
<
/el-space
>
<
/el-space
>
<
/div
>
<
/el-scrollbar
>
<
/template
>
<
/template
>
<
script
setup
>
<
script
setup
>
import
{
getNewsDetail
}
from
"@/api/news/newsBrief"
;
import
'@/styles/container.scss'
;
import
'@/styles/common.scss'
;
import
{
ref
,
onMounted
}
from
"vue"
;
import
{
useRoute
}
from
"vue-router"
;
import
{
ElSpace
,
ElImage
,
ElButton
,
ElIcon
,
ElScrollbar
,
ElRow
,
ElCol
,
ElDivider
}
from
"element-plus"
;
import
CommonText
from
"@/components/base/texts/CommonText.vue"
;
import
AreaTag
from
"@/components/base/AreaTag/index.vue"
;
import
ColorPrefixTitle
from
'@/components/base/texts/ColorPrefixTitle.vue'
;
import
{
getRelationNews
}
from
"@/api/news/newsDetail"
;
import
NewsItem
from
"@/components/base/newsList/NewsItem.vue"
;
import
ColorSvg
from
"@/components/base/images/ColorSvg.vue"
;
import
TranslationSvg
from
'./assets/images/翻译 1.svg'
;
import
NewsLogo
from
'./assets/images/组合 293.svg'
;
const
newsDetail
=
ref
({
}
);
const
relationNews
=
ref
([]);
const
zhEnTexts
=
ref
([]);
const
znEnColSpan
=
ref
(
12
);
const
hasTranslation
=
ref
(
false
);
const
isOpenTranslation
=
ref
(
true
);
const
showMore
=
ref
(
false
);
const
route
=
useRoute
();
onMounted
(
async
()
=>
{
const
params
=
{
newsId
:
route
.
params
.
id
}
const
{
data
:
newsDetailData
}
=
await
getNewsDetail
(
params
);
newsDetail
.
value
=
newsDetailData
??
{
}
;
const
{
data
:
relationNewsData
}
=
await
getRelationNews
(
params
);
relationNews
.
value
=
relationNewsData
??
[];
updateText
();
}
);
function
handleTranslation
()
{
isOpenTranslation
.
value
=
!
isOpenTranslation
.
value
;
updateText
();
}
function
updateText
()
{
const
enTexts
=
newsDetail
.
value
.
content
?.
split
(
'
\
n'
)
const
zhTexts
=
newsDetail
.
value
.
contentZh
?.
split
(
'
\
n'
)
console
.
log
(
enTexts
.
length
,
zhTexts
.
length
)
const
tempZhEnTexts
=
[]
hasTranslation
.
value
=
enTexts
.
length
===
zhTexts
.
length
if
(
hasTranslation
.
value
&&
isOpenTranslation
.
value
)
{
for
(
let
i
=
0
;
i
<
enTexts
.
length
;
i
++
)
{
tempZhEnTexts
.
push
(
zhTexts
[
i
]);
tempZhEnTexts
.
push
(
enTexts
[
i
]);
}
znEnColSpan
.
value
=
12
;
}
else
{
for
(
let
i
=
0
;
i
<
enTexts
.
length
;
i
++
)
{
tempZhEnTexts
.
push
(
enTexts
[
i
]);
}
znEnColSpan
.
value
=
24
;
}
zhEnTexts
.
value
=
tempZhEnTexts
;
}
<
/script
>
<
/script
>
<
style
lang
=
"scss"
scoped
>
<
style
lang
=
"scss"
scoped
>
@
import
url
(
"./style.css"
);
@
import
url
(
"./style.css"
);
.
top
-
box
-
news
-
deatail
{
background
-
color
:
var
(
--
bg
-
white
-
100
);
box
-
shadow
:
0
px
0
px
20
px
0
px
rgba
(
25
,
69
,
130
,
0.1
);
}
.
content
-
box
-
news
-
detail
{
align
-
items
:
flex
-
start
;
gap
:
16
px
;
}
.
relation
-
news
-
box
{
width
:
520
px
;
}
.
p
-
news
-
content
{
//首行缩进
text
-
indent
:
2
em
;
}
<
/style>
<
/style>
\ No newline at end of file
src/views/newsBrief/NewsList.vue
浏览文件 @
daf0d5e8
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<el-space
direction=
"vertical"
fill
class=
"full-width mouse-hover"
v-for=
"(item, index) in props.news"
:key=
"index"
>
<el-space
direction=
"vertical"
fill
class=
"full-width mouse-hover"
v-for=
"(item, index) in props.news"
:key=
"index"
>
<news-item2
:img=
"item.newsImage"
:title=
"item.newsTitle"
:from=
"`新闻来源:$
{item.newsOrg} 发表时间:${item.newsDate}`"
<news-item2
:img=
"item.newsImage"
:title=
"item.newsTitle"
:from=
"`新闻来源:$
{item.newsOrg} 发表时间:${item.newsDate}`"
:aeraTags="item.industryList?.map(t => t.industryName)" @click="gotoNewsDetail(item.newsId)" />
:aeraTags="item.industryList?.map(t => t.industryName)" @click="gotoNewsDetail(item.newsId)" />
<div
class=
"divider"
></div>
<div
class=
"divider
-news-list
"
></div>
</el-space>
</el-space>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
...
@@ -21,7 +21,7 @@ const props = defineProps({
...
@@ -21,7 +21,7 @@ const props = defineProps({
</
script
>
</
script
>
<
style
lang=
"css"
scoped
>
<
style
lang=
"css"
scoped
>
.divider
{
.divider
-news-list
{
width
:
100%
;
width
:
100%
;
height
:
1px
;
height
:
1px
;
background
:
#eaecee
;
background
:
#eaecee
;
...
...
src/views/newsBrief/NewsMain.vue
浏览文件 @
daf0d5e8
...
@@ -51,9 +51,8 @@ import { ref, onMounted } from "vue";
...
@@ -51,9 +51,8 @@ import { ref, onMounted } from "vue";
import
'@/styles/container.scss'
;
import
'@/styles/container.scss'
;
import
'@/styles/radio.scss'
;
import
'@/styles/radio.scss'
;
import
{
useGotoNewsModule
,
useGotoNewsDetail
}
from
"@/router/modules/news"
;
import
{
useGotoNewsModule
,
useGotoNewsDetail
}
from
"@/router/modules/news"
;
import
{
getMoudleType
,
getTodayNews
,
get
TodayNewByArea
,
getHotNewsByArea
,
get
HotNews
}
from
"@/api/news/newsBrief"
;
import
{
getMoudleType
,
getTodayNews
,
getHotNews
}
from
"@/api/news/newsBrief"
;
import
{
ElInput
,
ElSpace
,
ElImage
,
ElDivider
,
ElCol
,
ElRow
,
ElRadioButton
,
ElRadioGroup
}
from
"element-plus"
;
import
{
ElInput
,
ElSpace
,
ElImage
,
ElDivider
,
ElCol
,
ElRow
,
ElRadioButton
,
ElRadioGroup
}
from
"element-plus"
;
import
AreaTag
from
'@/components/base/AreaTag/index.vue'
import
CommonText
from
"@/components/base/texts/CommonText.vue"
;
import
CommonText
from
"@/components/base/texts/CommonText.vue"
;
import
BoxBackground
from
'@/components/base/boxBackground/overviewNormalBox.vue'
import
BoxBackground
from
'@/components/base/boxBackground/overviewNormalBox.vue'
import
NewsList
from
"./NewsList.vue"
;
import
NewsList
from
"./NewsList.vue"
;
...
...
src/views/newsBrief/assets/images/组合 293.svg
0 → 100644
浏览文件 @
daf0d5e8
<svg
viewBox=
"0 0 71 72"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
width=
"71.000000"
height=
"72.000000"
fill=
"none"
customFrame=
"#000000"
>
<defs>
<linearGradient
id=
"paint_linear_0"
x1=
"30.3467731"
x2=
"30.3467731"
y1=
"0"
y2=
"72"
gradientUnits=
"userSpaceOnUse"
>
<stop
stop-color=
"rgb(5,95,194)"
offset=
"0"
stop-opacity=
"1"
/>
<stop
stop-color=
"rgb(137,193,255)"
offset=
"1"
stop-opacity=
"1"
/>
</linearGradient>
</defs>
<g
id=
"组合 293"
>
<path
id=
"矩形 396"
d=
"M63 31C63 28.7909 64.7909 27 67 27C69.2091 27 71 28.7909 71 31L71 64C71 68.4183 67.4183 72 63 72L63 31Z"
fill=
"rgb(185,220,255)"
fill-rule=
"evenodd"
/>
<path
id=
"矩形 395"
d=
"M56.6935 0C58.9027 0 60.6935 1.79086 60.6935 4L60.6935 72L4 72C1.79086 72 0 70.2091 0 68L0 4C0 1.79086 1.79086 0 4 0L56.6935 0Z"
fill=
"url(#paint_linear_0)"
fill-rule=
"evenodd"
/>
<path
id=
"矢量 625"
d=
"M25.3392 29.7137L22.2712 29.7137C21.9571 29.7137 21.6612 29.5661 21.4723 29.3152L14.8878 20.5694L14.8873 28.7138C14.8873 29.266 14.4396 29.7137 13.8873 29.7137L11.3066 29.7137C10.7544 29.7137 10.3066 29.266 10.3066 28.7137L10.3066 15.8555C10.3066 15.3032 10.7544 14.8555 11.3066 14.8555L14.8873 14.8555L21.773 23.9991L21.773 23.9991L21.773 23.9991L21.7729 15.8574C21.7729 15.3051 22.2207 14.8573 22.7729 14.8573L25.3391 14.8574C25.8914 14.8574 26.3391 15.3051 26.3391 15.8574L26.3393 28.7137C26.3393 29.266 25.8915 29.7137 25.3392 29.7137Z"
fill=
"rgb(255,255,255)"
fill-rule=
"evenodd"
/>
<rect
id=
"矩形 397"
width=
"20.612902"
height=
"4.571429"
x=
"30.919922"
y=
"14.855469"
rx=
"1.000000"
fill=
"rgb(255,255,255)"
/>
<rect
id=
"矩形 398"
width=
"20.612902"
height=
"4.571429"
x=
"30.919922"
y=
"25.144531"
rx=
"1.000000"
fill=
"rgb(255,255,255)"
/>
<rect
id=
"矩形 399"
width=
"41.225803"
height=
"4.571429"
x=
"10.306641"
y=
"35.429688"
rx=
"1.000000"
fill=
"rgb(255,255,255)"
/>
<rect
id=
"矩形 400"
width=
"41.225803"
height=
"4.571429"
x=
"10.306641"
y=
"45.714844"
rx=
"1.000000"
fill=
"rgb(255,255,255)"
/>
<rect
id=
"矩形 401"
width=
"41.225803"
height=
"4.571429"
x=
"10.306641"
y=
"56.000000"
rx=
"1.000000"
fill=
"rgb(255,255,255)"
/>
</g>
</svg>
src/views/newsBrief/assets/images/翻译 1.svg
0 → 100644
浏览文件 @
daf0d5e8
<svg
viewBox=
"0 0 16 16"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
width=
"16.000000"
height=
"16.000000"
fill=
"none"
>
<rect
id=
"翻译 1"
width=
"16.000000"
height=
"16.000000"
x=
"0.000000"
y=
"0.000000"
/>
<path
id=
"矢量 455"
d=
"M3.33301 9.9987L3.33301 11.332C3.33299 11.3736 3.33492 11.4151 3.33879 11.4565C3.34266 11.4979 3.34846 11.5391 3.35618 11.5799C3.36389 11.6208 3.3735 11.6612 3.385 11.7012C3.3965 11.7411 3.40985 11.7805 3.42503 11.8192C3.44021 11.8579 3.45717 11.8958 3.4759 11.933C3.49463 11.9701 3.51505 12.0063 3.53716 12.0415C3.55928 12.0767 3.58299 12.1108 3.6083 12.1438C3.6336 12.1768 3.6604 12.2086 3.68867 12.2391C3.71695 12.2696 3.74659 12.2987 3.77759 12.3264C3.80859 12.3541 3.84082 12.3803 3.87427 12.405C3.90773 12.4297 3.94226 12.4528 3.97787 12.4743C4.01349 12.4958 4.05003 12.5155 4.08749 12.5336C4.12495 12.5516 4.16318 12.5679 4.20216 12.5824C4.24115 12.5969 4.28073 12.6095 4.32089 12.6203C4.36106 12.631 4.40164 12.6399 4.44264 12.6469C4.48364 12.6539 4.52487 12.6589 4.56634 12.662L4.66634 12.6654L6.66634 12.6654L6.66634 13.9987L4.66634 13.9987C4.579 13.9987 4.49188 13.9944 4.40496 13.9859C4.31805 13.9773 4.23176 13.9645 4.1461 13.9475C4.06044 13.9304 3.97582 13.9092 3.89225 13.8839C3.80867 13.8585 3.72654 13.8291 3.64585 13.7957C3.56516 13.7623 3.48631 13.725 3.40928 13.6838C3.33226 13.6427 3.25744 13.5978 3.18482 13.5493C3.1122 13.5008 3.04214 13.4488 2.97463 13.3934C2.90711 13.338 2.84248 13.2794 2.78072 13.2176C2.71897 13.1559 2.66039 13.0913 2.60498 13.0237C2.54957 12.9562 2.49761 12.8862 2.44909 12.8136C2.40057 12.7409 2.35572 12.6661 2.31455 12.5891C2.27338 12.5121 2.23608 12.4332 2.20266 12.3525C2.16924 12.2718 2.13985 12.1897 2.1145 12.1061C2.08915 12.0225 2.06795 11.9379 2.05091 11.8523C2.03387 11.7666 2.02108 11.6803 2.01252 11.5934C2.00395 11.5065 1.99967 11.4194 1.99967 11.332L1.99967 9.9987L3.33301 9.9987L3.33301 9.9987ZM11.9997 6.66536L14.933 13.9987L13.4963 13.9987L12.6957 11.9987L9.96901 11.9987L9.16967 13.9987L7.73367 13.9987L10.6663 6.66536L11.9997 6.66536L11.9997 6.66536ZM11.333 8.5887L10.5017 10.6654L12.163 10.6654L11.333 8.5887ZM5.33301 1.33203L5.33301 2.66536L7.99967 2.66536L7.99967 7.33203L5.33301 7.33203L5.33301 9.33203L3.99967 9.33203L3.99967 7.33203L1.33301 7.33203L1.33301 2.66536L3.99967 2.66536L3.99967 1.33203L5.33301 1.33203ZM11.333 1.9987C11.4203 1.9987 11.5075 2.00298 11.5944 2.01154C11.6813 2.0201 11.7676 2.0329 11.8532 2.04994C11.9389 2.06698 12.0235 2.08817 12.1071 2.11352C12.1907 2.13888 12.2728 2.16826 12.3535 2.20169C12.4342 2.23511 12.513 2.2724 12.5901 2.31357C12.6671 2.35474 12.7419 2.39959 12.8145 2.44811C12.8871 2.49663 12.9572 2.5486 13.0247 2.604C13.0922 2.65941 13.1569 2.71799 13.2186 2.77975C13.2804 2.8415 13.339 2.90614 13.3944 2.97365C13.4498 3.04116 13.5017 3.11123 13.5503 3.18384C13.5988 3.25646 13.6436 3.33128 13.6848 3.40831C13.726 3.48533 13.7633 3.56419 13.7967 3.64488C13.8301 3.72556 13.8595 3.8077 13.8848 3.89127C13.9102 3.97485 13.9314 4.05947 13.9484 4.14512C13.9655 4.23078 13.9783 4.31707 13.9868 4.40399C13.9954 4.4909 13.9997 4.57803 13.9997 4.66536L13.9997 5.9987L12.6663 5.9987L12.6663 4.66536C12.6663 4.6217 12.6642 4.57813 12.6599 4.53467C12.6556 4.49122 12.6492 4.44807 12.6407 4.40524C12.6322 4.36241 12.6216 4.32011 12.6089 4.27832C12.5963 4.23653 12.5816 4.19546 12.5648 4.15512C12.5481 4.11478 12.5295 4.07535 12.5089 4.03684C12.4883 3.99832 12.4659 3.96091 12.4416 3.9246C12.4174 3.88829 12.3914 3.85326 12.3637 3.81951C12.336 3.78575 12.3067 3.75343 12.2758 3.72256C12.2449 3.69168 12.2126 3.66239 12.1789 3.63468C12.1451 3.60698 12.1101 3.581 12.0738 3.55674C12.0375 3.53248 12 3.51005 11.9615 3.48947C11.923 3.46888 11.8836 3.45024 11.8433 3.43352C11.8029 3.41681 11.7618 3.40212 11.7201 3.38944C11.6783 3.37677 11.636 3.36617 11.5931 3.35765C11.5503 3.34913 11.5072 3.34273 11.4637 3.33845C11.4202 3.33417 11.3767 3.33203 11.333 3.33203L9.33301 3.33203L9.33301 1.9987L11.333 1.9987L11.333 1.9987ZM3.99967 3.9987L2.66634 3.9987L2.66634 5.9987L3.99967 5.9987L3.99967 3.9987ZM6.66634 3.9987L5.33301 3.9987L5.33301 5.9987L6.66634 5.9987L6.66634 3.9987Z"
fill=
"rgb(5,95,194)"
fill-rule=
"nonzero"
/>
</svg>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论