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
3e74870f
Commit
3e74870f
authored
Aug 04, 2023
by
liudx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改曾用名
parent
513e23a3
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
22 deletions
+50
-22
public/company.docx
+0
-0
src/views/company/companyDetails.vue
+5
-3
src/views/company/companyProfile.vue
+10
-12
src/views/company/index.vue
+29
-3
src/views/patent/patentDetails.vue
+2
-0
vue.config.js
+4
-4
No files found.
public/company.docx
View file @
3e74870f
No preview for this file type
src/views/company/companyDetails.vue
View file @
3e74870f
...
...
@@ -1063,11 +1063,13 @@ export default {
display
:
flex
;
margin-left
:
15px
;
div
{
width
:
18%
;
width
:
25%
;
height
:
22px
;
font-size
:
16px
;
text-align
:
center
;
padding-left
:
10px
;
//
text-align
:
center
;
color
:
#c7d8ec
;
border-right
:
1
px
solid
#c7d8ec
;
border-right
:
4
px
solid
#c7d8ec
;
}
div
:last-child
{
border-right
:
transparent
;
...
...
src/views/company/companyProfile.vue
View file @
3e74870f
...
...
@@ -39,7 +39,7 @@
}}
</a-descriptions-item>
<a-descriptions-item
label=
"营业期限"
>
{{
baseinfo
.
from_time
}}
-
{{
baseinfo
.
to_time
?
baseinfo
.
to_time
:
'无固定期限'
baseinfo
.
to_time
?
baseinfo
.
to_time
:
"无固定期限"
}}
</a-descriptions-item
>
<a-descriptions-item
label=
"纳税人资质"
>
{{
...
...
@@ -64,9 +64,14 @@
<a-descriptions-item
label=
"登记机关"
:span=
"2"
>
{{
baseinfo
.
register_org
}}
</a-descriptions-item>
<a-descriptions-item
label=
"曾用名"
:span=
"1"
>
{{
<a-descriptions-item
label=
"曾用名"
:span=
"1"
>
<!--
{{
baseinfo
.
history_name
?
baseinfo
.
history_name
:
"无"
}}
</a-descriptions-item>
}}
-->
<div
v-for=
"item in baseinfo.history_name"
>
{{
item
}}
</div>
</a-descriptions-item>
<a-descriptions-item
label=
"英文名"
:span=
"2"
>
{{
baseinfo
.
en_name
}}
</a-descriptions-item>
...
...
@@ -192,13 +197,11 @@ export default {
title
:
"认缴出资额"
,
dataIndex
:
"amount"
,
key
:
"amount"
,
},
{
title
:
"认缴出资日期"
,
dataIndex
:
""
,
key
:
""
,
},
],
// columns_history: [
...
...
@@ -263,12 +266,8 @@ export default {
// // },
// },
// ],
data_shareholder
:
[
],
history_shareholder
:
[
],
data_shareholder
:
[],
history_shareholder
:
[],
columns_keyperson
:
[
{
title
:
"序号"
,
...
...
@@ -338,7 +337,6 @@ export default {
title
:
"序号"
,
dataIndex
:
"index"
,
key
:
"index"
,
},
{
title
:
"披露日期"
,
...
...
src/views/company/index.vue
View file @
3e74870f
...
...
@@ -21,7 +21,9 @@
</div>
<div
class=
"company"
>
<a-breadcrumb
class=
"nav_bread"
>
<a-breadcrumb-item><router-link
:to=
"'/home'"
>
首页
</router-link></a-breadcrumb-item>
<a-breadcrumb-item
><router-link
:to=
"'/home'"
>
首页
</router-link></a-breadcrumb-item
>
<a-breadcrumb-item>
企业
</a-breadcrumb-item>
</a-breadcrumb>
<div
class=
"company_con"
>
...
...
@@ -209,6 +211,7 @@ import {
}
from
"../../utils/indexApi.js"
;
import
"dayjs/locale/zh-cn"
;
import
zh_CN
from
"ant-design-vue/lib/locale-provider/zh_CN"
;
import
{
message
}
from
"ant-design-vue"
;
dayjs
.
locale
(
"zh-cn"
);
export
default
{
name
:
"company"
,
...
...
@@ -283,6 +286,7 @@ export default {
},
//改变页码
onChange
(
page
)
{
window
.
scrollTo
(
0
,
0
);
//获取当前页码数
this
.
currentPage
=
page
;
//修改省份的格式
...
...
@@ -346,11 +350,33 @@ export default {
rangetime1
:
[],
};
this
.
industryvalue
=
[];
this
.
filter
=
[]
this
.
Filter
()
this
.
filter
=
[]
;
this
.
Filter
()
;
},
//点击筛选
Filter
()
{
if
(
this
.
formState
.
capital_nums_min
==
""
&&
this
.
formState
.
capital_nums_max
!=
""
)
{
message
.
error
(
"请输入完整的注册资本范围"
);
return
false
}
else
if
(
this
.
formState
.
capital_nums_min
!=
""
&&
this
.
formState
.
capital_nums_max
==
""
)
{
message
.
error
(
"请输入完整的注册资本范围"
);
return
false
}
else
if
(
this
.
formState
.
capital_nums_min
&&
this
.
formState
.
capital_nums_max
)
{
if
(
Number
(
this
.
formState
.
capital_nums_min
)
>
Number
(
this
.
formState
.
capital_nums_max
))
{
console
.
log
(
this
.
formState
.
capital_nums_min
,
this
.
formState
.
capital_nums_max
)
message
.
error
(
"注册资本范围无效"
);
return
false
}
}
//修改省份的格式
let
area
=
[];
if
(
this
.
valueArea
.
length
!=
0
)
{
...
...
src/views/patent/patentDetails.vue
View file @
3e74870f
...
...
@@ -452,6 +452,8 @@ export default {
},
//智能推荐翻页
onChange
()
{
window
.
scrollTo
(
0
,
0
);
this
.
currentPage
=
1
this
.
getRecommend
();
},
getRecommend
()
{
...
...
vue.config.js
View file @
3e74870f
...
...
@@ -18,12 +18,12 @@ module.exports = {
// 配置不同的后台API地址
proxy
:
{
'/api'
:
{
target
:
'http://39.100.39.50:5089'
,
target
:
'http://39.100.39.50:5089
/api
'
,
ws
:
false
,
changeOrigin
:
true
,
//
pathRewrite: {
//
'^/api': ''
//
}
pathRewrite
:
{
'^/api'
:
''
}
}
}
},
...
...
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