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
e412721c
Commit
e412721c
authored
Nov 01, 2024
by
xinzhedeai
Browse files
Options
Browse Files
Download
Plain Diff
merge master
parents
f94c4c3f
abd3e760
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2029 additions
and
2028 deletions
+2029
-2028
httpApi.js
src/assets/js/httpApi.js
+4
-4
index.vue
src/views/Screen/index.vue
+2025
-2024
No files found.
src/assets/js/httpApi.js
View file @
e412721c
...
@@ -566,7 +566,7 @@ var reqApis = function(){
...
@@ -566,7 +566,7 @@ var reqApis = function(){
Dict
:
{
Dict
:
{
baseInfo
:
{
baseInfo
:
{
"
companyName
"
:
{
name
:
"
企业名称
"
,
must
:
true
},
"
companyName
"
:
{
name
:
"
企业名称
"
,
must
:
true
},
"
incubatorId
"
:
{
name
:
"
所属孵化器
"
,
must
:
true
,
'
type
'
:
'
select
'
,
key
:
'
name
'
,
showYN
:
Tools
.
isHighTech
()},
//
"incubatorId": {name:"所属孵化器", must:true, 'type':'select', key:'name', showYN: Tools.isHighTech()},
"
technicalField
"
:
{
name
:
"
所属技术领域
"
,
must
:
true
,
'
type
'
:
'
select
'
,
key
:
'
name
'
,
},
"
technicalField
"
:
{
name
:
"
所属技术领域
"
,
must
:
true
,
'
type
'
:
'
select
'
,
key
:
'
name
'
,
},
"
entryDate
"
:
{
"
entryDate
"
:
{
...
@@ -855,7 +855,7 @@ var reqApis = function(){
...
@@ -855,7 +855,7 @@ var reqApis = function(){
}
}
},
},
{
{
type
:
'
primary
'
,
icon
:
'
el-icon-folder-add
'
,
name
:
'
导入企业经营信息
'
,
showYN
:
!
Tools
.
isHighTech
(),
'
callback
'
:
function
(){
type
:
'
primary
'
,
icon
:
'
el-icon-folder-add
'
,
name
:
'
导入企业经营信息
'
,
'
callback
'
:
function
(){
var
m
=
this
;
var
m
=
this
;
m
.
uploadView
=
qf
.
UI
.
popWindow
({
m
.
uploadView
=
qf
.
UI
.
popWindow
({
cover
:
true
,
cover
:
true
,
...
@@ -1160,7 +1160,7 @@ var reqApis = function(){
...
@@ -1160,7 +1160,7 @@ var reqApis = function(){
Dict
:
{
Dict
:
{
baseInfo
:
{
baseInfo
:
{
"
mentorName
"
:
{
name
:
"
导师姓名
"
,
must
:
true
},
"
mentorName
"
:
{
name
:
"
导师姓名
"
,
must
:
true
},
"
incubatorId
"
:
{
name
:
"
所属孵化器
"
,
must
:
true
,
'
type
'
:
'
select
'
,
key
:
'
name
'
,
showYN
:
Tools
.
isHighTech
()},
//
"incubatorId": {name:"所属孵化器", must:true, 'type':'select', key:'name', showYN: Tools.isHighTech()},
"
education
"
:
{
name
:
"
学历
"
,
must
:
true
},
"
education
"
:
{
name
:
"
学历
"
,
must
:
true
},
"
graduationSchool
"
:
{
name
:
"
毕业学校
"
,
},
"
graduationSchool
"
:
{
name
:
"
毕业学校
"
,
},
"
contactPhone
"
:
{
name
:
"
联系电话
"
,
},
"
contactPhone
"
:
{
name
:
"
联系电话
"
,
},
...
...
src/views/Screen/index.vue
View file @
e412721c
...
@@ -100,37 +100,37 @@
...
@@ -100,37 +100,37 @@
</section>
</section>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
{
Highchart
}
from
"
@/assets/js/chartTemplates.js
"
;
import
{
Highchart
}
from
"
@/assets/js/chartTemplates.js
"
;
import
cuAmap
from
"
@/components/AMap
"
;
import
cuAmap
from
"
@/components/AMap
"
;
import
request
from
"
@/utils/request
"
;
import
request
from
"
@/utils/request
"
;
let
resizeTimeout
;
let
resizeTimeout
;
window
.
addEventListener
(
'
resize
'
,
function
()
{
window
.
addEventListener
(
'
resize
'
,
function
()
{
clearTimeout
(
resizeTimeout
);
clearTimeout
(
resizeTimeout
);
resizeTimeout
=
setTimeout
(
function
()
{
resizeTimeout
=
setTimeout
(
function
()
{
location
.
reload
();
location
.
reload
();
// 执行响应逻辑
// 执行响应逻辑
},
200
);
// 200毫秒后执行
},
200
);
// 200毫秒后执行
});
});
function
getPxByRem
(
remValue
){
// 传入要转换的 rem 值
function
getPxByRem
(
remValue
){
// 传入要转换的 rem 值
// 获取 html 元素
// 获取 html 元素
const
htmlElement
=
document
.
documentElement
;
const
htmlElement
=
document
.
documentElement
;
// 获取 html 元素的 font-size
// 获取 html 元素的 font-size
const
fontSize
=
parseFloat
(
getComputedStyle
(
htmlElement
).
fontSize
);
const
fontSize
=
parseFloat
(
getComputedStyle
(
htmlElement
).
fontSize
);
// 将 rem 转换为 px
// 将 rem 转换为 px
let
pxValue
=
remValue
*
fontSize
;
let
pxValue
=
remValue
*
fontSize
;
return
pxValue
return
pxValue
}
}
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
// isTechUser: localStorage.getItem('groupIdByloginType')*1===2,
// isTechUser: localStorage.getItem('groupIdByloginType')*1===2,
...
@@ -867,39 +867,39 @@ export default {
...
@@ -867,39 +867,39 @@ export default {
});
});
},
},
},
},
};
};
</
script
>
</
script
>
<
style
lang=
"scss"
scope
>
<
style
lang=
"scss"
scope
>
.amap-icon
{
.amap-icon
{
// 高德地图样式覆盖
// 高德地图样式覆盖
img
{
img
{
width
:
0
.52rem
!
important
;
width
:
0
.52rem
!
important
;
height
:
0
.52rem
!
important
;
height
:
0
.52rem
!
important
;
}
}
}
}
#container
{
#container
{
height
:
100%
;
height
:
100%
;
width
:
100%
;
width
:
100%
;
background-color
:
#29557a
;
background-color
:
#29557a
;
}
}
@font-face
{
@font-face
{
font-family
:
"diget year"
;
font-family
:
"diget year"
;
src
:
url("~@/assets/fonts/DS-Digital.ttf")
;
src
:
url("~@/assets/fonts/DS-Digital.ttf")
;
}
}
@font-face
{
@font-face
{
font-family
:
"ShuHei"
;
font-family
:
"ShuHei"
;
src
:
url("~@/assets/fonts/AlimamaShuHeiTi-Bold.ttf")
;
src
:
url("~@/assets/fonts/AlimamaShuHeiTi-Bold.ttf")
;
}
}
.font_digit
{
.font_digit
{
font-family
:
diget
year
;
font-family
:
diget
year
;
}
}
.font_ShuHei
{
.font_ShuHei
{
font-family
:
ShuHei
;
font-family
:
ShuHei
;
}
}
.Screen
{
.Screen
{
position
:
relative
;
position
:
relative
;
height
:
100%
;
height
:
100%
;
width
:
100%
;
width
:
100%
;
...
@@ -1890,10 +1890,10 @@ export default {
...
@@ -1890,10 +1890,10 @@ export default {
//a{text-decoration:none;}
//a{text-decoration:none;}
}
}
}
}
/* 登录 */
/* 登录 */
.login-ctn
{
.login-ctn
{
user-select
:
none
;
user-select
:
none
;
background
:
no-repeat
top
left
url("/static/images/login-min.jpg")
;
background
:
no-repeat
top
left
url("/static/images/login-min.jpg")
;
background-size
:
100%
100%
;
background-size
:
100%
100%
;
...
@@ -2005,18 +2005,18 @@ export default {
...
@@ -2005,18 +2005,18 @@ export default {
}
}
}
}
}
}
}
}
@keyframes
rotate
{
@keyframes
rotate
{
0
%
{
0
%
{
transform
:
rotate
(
0
);
transform
:
rotate
(
0
);
}
}
100
%
{
100
%
{
transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
}
}
}
}
@keyframes
loader-1-outter
{
@keyframes
loader-1-outter
{
0
%
{
0
%
{
-webkit-transform
:
rotate
(
0deg
);
-webkit-transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
...
@@ -2025,8 +2025,8 @@ export default {
...
@@ -2025,8 +2025,8 @@ export default {
-webkit-transform
:
rotate
(
360deg
);
-webkit-transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
}
}
}
}
@keyframes
loader-1-inner
{
@keyframes
loader-1-inner
{
0
%
{
0
%
{
-webkit-transform
:
rotate
(
0deg
);
-webkit-transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
...
@@ -2035,5 +2035,6 @@ export default {
...
@@ -2035,5 +2035,6 @@ export default {
-webkit-transform
:
rotate
(
-360deg
);
-webkit-transform
:
rotate
(
-360deg
);
transform
:
rotate
(
-360deg
);
transform
:
rotate
(
-360deg
);
}
}
}
}
</
style
>
</
style
>
\ No newline at end of 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