Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
GaoQuIncubator
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kimber
GaoQuIncubator
Commits
79a1b887
Commit
79a1b887
authored
Oct 25, 2024
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据概览-孵化器概况
parent
1b5afb1b
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
725 additions
and
920 deletions
+725
-920
overview.js
src/api/system/overview.js
+50
-0
AppMain.vue
src/layout/components/AppMain.vue
+1
-1
overview.vue
src/views/system/home/overview.vue
+669
-915
tech.vue
src/views/system/home/tech.vue
+5
-4
No files found.
src/api/system/overview.js
0 → 100644
View file @
79a1b887
import
request
from
'
@/utils/request
'
export
function
getData4panel0
(
data
)
{
// 孵化器概况信息
return
request
({
url
:
'
api/incubator/profile?incubatorId=
'
+
data
.
incubatorId
,
method
:
'
get
'
,
})
}
export
function
getData4tech
(
data
)
{
return
request
({
url
:
'
api/incubator
'
,
method
:
'
get
'
,
})
}
export
function
del
(
ids
)
{
return
request
({
url
:
'
api/users
'
,
method
:
'
delete
'
,
data
:
ids
})
}
export
function
edit
(
data
)
{
return
request
({
url
:
'
api/incubator
'
,
method
:
'
put
'
,
data
})
}
export
function
add
(
data
)
{
return
request
({
url
:
'
api/incubator
'
,
method
:
'
post
'
,
data
})
}
export
function
editUser
(
data
)
{
return
request
({
url
:
'
api/users/center
'
,
method
:
'
put
'
,
data
})
}
export
default
{
getData4panel0
,
getData4tech
,
add
,
edit
,
del
}
src/layout/components/AppMain.vue
View file @
79a1b887
...
...
@@ -6,7 +6,7 @@
</keep-alive>
</transition>
<footer
v-if=
"$route.path!=='/dashboard'"
class=
"page-footer"
></footer>
<footer
v-if=
"$route.path!=='/dashboard'
&& $route.path!=='/home/overview'
"
class=
"page-footer"
></footer>
<!--
<div
v-if=
"$store.state.settings.showFooter"
id=
"el-main-footer"
>
<span
v-html=
"$store.state.settings.footerTxt"
/>
...
...
src/views/system/home/overview.vue
View file @
79a1b887
This diff is collapsed.
Click to expand it.
src/views/system/home/tech.vue
View file @
79a1b887
...
...
@@ -20,7 +20,7 @@
</li>
<li>
<div
class=
"title"
>
创业导师
</div>
<div
class=
"content"
>
{{
data
.
mentorAllCount
}}
家
</div>
<div
class=
"content"
>
{{
data
.
mentorAllCount
}}
人
</div>
</li>
<li>
<div
class=
"title"
>
孵化面积
</div>
...
...
@@ -38,7 +38,7 @@
<div
class=
"body"
>
<ul
class=
"list"
>
<li
v-for=
"(item) in data.list"
:key=
"item.id"
@
click=
"go2overview"
>
<li
v-for=
"(item) in data.list"
:key=
"item.id"
@
click=
"go2overview
(item)
"
>
<img
:src=
"`$
{baseAPI}file/${item.incubatorImage}`"alt="" />
<div
class=
"introduce"
>
<h2>
{{
item
.
incubatorName
}}
</h2>
...
...
@@ -298,8 +298,9 @@ export default {
this
.
getData
();
},
methods
:
{
go2overview
(){
alert
(
'
数据概览页开发ing~
'
)
go2overview
(
item
){
// alert('数据概览页开发ing~')
this
.
$router
.
push
(
'
/home/overview?id=
'
+
item
.
id
)
},
handleSuccess
(
response
,
file
)
{
// 处理上传成功
...
...
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