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
3996c299
Commit
3996c299
authored
Aug 09, 2023
by
liudx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
c5c37576
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
9 deletions
+23
-9
public/~$patent.docx
+0
-0
src/views/company/companyDetails.vue
+2
-1
src/views/company/index.vue
+11
-6
src/views/follow/index.vue
+5
-1
src/views/history/index.vue
+4
-1
src/views/patent/patentDetails.vue
+1
-0
No files found.
public/~$patent.docx
deleted
100644 → 0
View file @
c5c37576
File deleted
src/views/company/companyDetails.vue
View file @
3996c299
...
...
@@ -1238,7 +1238,8 @@ export default {
exportword
({
report_data
:
e
.
target
.
result
,
email
:
email
,
name
:
name
name
:
name
,
f_type
:
'enterprise'
}).
then
((
res
)
=>
{
if
(
res
.
code
==
0
)
{
message
.
success
(
res
.
msg
);
...
...
src/views/company/index.vue
View file @
3996c299
...
...
@@ -209,7 +209,7 @@
<
script
>
import
dayjs
from
"dayjs"
;
import
arealist
from
"../../utils/map.js"
;
import
{
userFollow
,
cancelFollow
}
from
"../../utils/userAPI"
;
import
{
userFollow
,
cancelFollow
}
from
"../../utils/userAPI"
;
import
{
enterpriseList
,
industryType
,
...
...
@@ -262,7 +262,7 @@ export default {
ent_or_pat_id
:
id
,
});
if
(
cancelRes
.
code
==
0
)
{
this
.
$router
.
go
(
0
);
this
.
Filter
(
);
message
.
success
(
cancelRes
.
msg
);
}
else
{
message
.
error
(
cancelRes
.
msg
);
...
...
@@ -276,13 +276,13 @@ export default {
name
:
company_name
,
});
if
(
Follow
.
code
==
0
)
{
this
.
$router
.
go
(
0
)
message
.
success
(
Follow
.
msg
);
this
.
Filter
();
}
else
{
message
.
error
(
Follow
.
msg
);
}
// this.Filter()
},
disabledDate
(
current
)
{
return
current
&&
current
>
dayjs
().
endOf
(
"day"
);
...
...
@@ -386,6 +386,8 @@ export default {
};
this
.
industryvalue
=
[];
this
.
filter
=
[];
this
.
currentPage
=
1
;
this
.
keyword
=
""
;
this
.
Filter
();
},
//点击筛选
...
...
@@ -444,6 +446,7 @@ export default {
//企业结果
this
.
companylist
=
[];
let
params
=
{
page
:
this
.
currentPage
,
size
:
10
,
...
...
@@ -481,7 +484,7 @@ export default {
this
.
filter
=
filter
;
//请求接口
enterpriseSelect
({
...
params
}).
then
((
res
)
=>
{
// console.log(res);
if
(
res
.
code
==
0
)
{
this
.
companylist
=
res
.
data
.
list
;
this
.
total
=
res
.
data
.
total
;
...
...
@@ -548,6 +551,8 @@ export default {
this
.
valueInnovation
=
searchValue
.
valueInnovation
;
this
.
keyword
=
searchValue
.
keyword
;
this
.
Filter
();
}
else
{
this
.
Filter
();
}
},
};
...
...
@@ -655,7 +660,7 @@ export default {
.follow
{
position
:
absolute
;
right
:
30px
;
top
:
30px
;
width
:
112px
;
height
:
32px
;
...
...
src/views/follow/index.vue
View file @
3996c299
...
...
@@ -108,7 +108,7 @@ export default {
this
.
dataHistory
=
res
.
data
;
this
.
total
=
res
.
total
;
this
.
dataHistory
.
forEach
((
item
,
index
)
=>
{
item
.
index
=
index
+
1
;
item
.
index
=
(
this
.
currentPage
-
1
)
*
10
+
index
+
1
;
item
.
follow_time
=
item
.
follow_time
.
replace
(
/T/g
,
" "
);
});
}
else
{
...
...
@@ -200,11 +200,15 @@ export default {
background-color
:
#fff
;
padding
:
20px
;
height
:
92%
;
text-align
:
center
;
}
:deep
(
.ant-modal-footer
)
{
text-align
:
center
!important
;
}
:deep
(
.ant-table-tbody
)
{
cursor
:
pointer
;
}
}
</
style
>
src/views/history/index.vue
View file @
3996c299
...
...
@@ -223,7 +223,7 @@ export default {
this
.
dataHistory
=
res
.
data
.
data
;
this
.
total
=
res
.
data
.
total
;
this
.
dataHistory
.
forEach
((
item
,
index
)
=>
{
item
.
index
=
index
+
1
;
item
.
index
=
(
this
.
currentPage
-
1
)
*
10
+
index
+
1
;
});
}
else
{
message
.
error
(
res
.
msg
);
...
...
@@ -255,5 +255,8 @@ export default {
text-align
:
center
;
//
height
:
600px
;
}
:deep
(
.ant-table-tbody
)
{
cursor
:
pointer
;
}
}
</
style
>
src/views/patent/patentDetails.vue
View file @
3996c299
...
...
@@ -699,6 +699,7 @@ export default {
report_data
:
e
.
target
.
result
,
email
:
email
,
name
:
name
,
f_type
:
'patent'
}).
then
((
res
)
=>
{
if
(
res
.
code
==
0
)
{
message
.
success
(
res
.
msg
);
...
...
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