Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
ty_patentSys
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hanxiao
ty_patentSys
Commits
95dd3cf7
Commit
95dd3cf7
authored
Aug 01, 2023
by
liudx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改大屏页面
parent
3d298940
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
33 additions
and
24 deletions
+33
-24
src/components/EchartsCloud.vue
+2
-2
src/components/ProgressBar.vue
+0
-0
src/views/company/companyDetails.vue
+6
-0
src/views/company/overview.vue
+22
-7
src/views/company/technology.vue
+0
-13
src/views/home/home.vue
+1
-1
src/views/patent/index.vue
+2
-1
src/views/screen/index.vue
+0
-0
No files found.
src/components/EchartsCloud.vue
View file @
95dd3cf7
...
...
@@ -89,8 +89,8 @@ export default {
top
:
"center"
,
right
:
null
,
bottom
:
null
,
width
:
"
2
00%"
,
height
:
"
2
00%"
,
width
:
"
1
00%"
,
height
:
"
1
00%"
,
//数据
data
:
this
.
dataArr
},
...
...
src/components/ProgressBar.vue
0 → 100644
View file @
95dd3cf7
src/views/company/companyDetails.vue
View file @
95dd3cf7
...
...
@@ -513,6 +513,9 @@ export default {
axisLine
:
{
show
:
false
,
},
splitLine
:
{
show
:
false
,
},
},
{
type
:
"value"
,
...
...
@@ -524,6 +527,9 @@ export default {
axisLabel
:
{
formatter
:
"{value}%"
,
},
splitLine
:
{
show
:
false
,
},
},
],
...
...
src/views/company/overview.vue
View file @
95dd3cf7
...
...
@@ -71,10 +71,18 @@
专利结构可从专利类型以及专利基本法律状态两个方面进行分析。从专利类型来看,一般在评估专利技术质量时,普遍认为发明>实用新型>外观。因此,关注发明专利的占比高低,可以帮助了解企业历史研发的技术质量水平。从专利基本法律状态来看,关注失效专利的占比,可以帮助了解企业当前持有技术的质量水平。该企业的专利数量为
<span
class=
"color"
>
{{
devstructureData
.
patent_application_num
}}
</span
>
件,其中发明专利
<span
class=
"color"
>
{{
devstructureData
.
invent_patent_num
}}
</span
>
件,占比
<span
class=
"color"
>
{{
devstructureData
.
invent_patent_percent
}}
</span
>
;有效专利
<span
class=
"color"
>
{{
devstructureData
.
valid_patent_num
}}
</span
>
件,占比
<span
class=
"color"
>
{{
devstructureData
.
valid_patent_percent
}}
</span
>
件,其中发明专利
<span
class=
"color"
>
{{
devstructureData
.
invent_patent_num
}}
</span
>
件,占比
<span
class=
"color"
>
{{
devstructureData
.
invent_patent_percent
}}
</span
>
;有效专利
<span
class=
"color"
>
{{
devstructureData
.
valid_patent_num
}}
</span
>
件,占比
<span
class=
"color"
>
{{
devstructureData
.
valid_patent_percent
}}
</span
>
。
</p>
<div
class=
"ecahrsThree"
>
...
...
@@ -151,7 +159,7 @@ export default {
return
{
tabchange
:
"1"
,
deveSustainData
:
null
,
devstructureData
:
null
,
devstructureData
:
null
,
};
},
...
...
@@ -373,6 +381,10 @@ export default {
axisLine
:
{
show
:
false
,
},
splitLine
:
{
show
:
false
,
},
},
{
type
:
"value"
,
...
...
@@ -384,6 +396,9 @@ export default {
axisLabel
:
{
formatter
:
"{value}%"
,
},
splitLine
:
{
show
:
false
,
},
},
],
...
...
@@ -554,12 +569,12 @@ export default {
},
];
},
handleAnchorClick
(
e
,
link
)
{
handleAnchorClick
(
e
,
link
)
{
e
.
preventDefault
();
},
},
created
()
{
this
.
deveSustainData
=
this
.
$props
.
deveSustain
;
this
.
deveSustainData
=
this
.
$props
.
deveSustain
;
this
.
devstructureData
=
this
.
$props
.
structureData
;
// this.deveSustain.patent_authorization_rate =
...
...
src/views/company/technology.vue
View file @
95dd3cf7
...
...
@@ -11,19 +11,6 @@
:id=
"'echartsraodar'"
class=
"echarts"
></EchartsCon>
<!--
<div
id=
"echartsraodar"
class=
"echarts"
style=
"width: 100%; height: 300px"
></div>
-->
<!--
<div
class=
"hover"
v-if=
"hover"
ref=
"hover"
:style=
"
{ left: left, top: top }"
>
{{
con
}}
</div>
-->
<div
style=
"width: 50%; position: relative"
>
<EchartsCon
:option=
"option2"
:id=
"'echartsscatter'"
></EchartsCon>
<a-popover
title=
"科创能力分析指标"
>
...
...
src/views/home/home.vue
View file @
95dd3cf7
...
...
@@ -234,7 +234,7 @@ export default {
}
.home_search
{
//
width
:
1820px
;
width
:
calc
(
100%
-80px
);
width
:
calc
(
100%
);
height
:
308px
;
position
:
relative
;
background
:
url("~@/static/home/index/img-index01.png")
no-repeat
;
...
...
src/views/patent/index.vue
View file @
95dd3cf7
...
...
@@ -194,7 +194,7 @@ export default {
//获取页面的表格
getList
(
keyword
)
{
let
params
=
{
keyword
:
keyword
||
this
.
$route
.
query
.
keyword
,
keyword
:
keyword
||
''
,
page
:
1
,
size
:
10
,
};
...
...
@@ -333,6 +333,7 @@ export default {
},
created
()
{
this
.
keyword
=
this
.
$route
.
query
.
keyword
;
this
.
getList
(
this
.
keyword
);
this
.
type
=
"专利"
;
},
...
...
src/views/screen/index.vue
View file @
95dd3cf7
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment