diff --git a/src/assets/image/qq02.png b/src/assets/image/qq02.png
new file mode 100644
index 0000000..4c4afe3
Binary files /dev/null and b/src/assets/image/qq02.png differ
diff --git a/src/assets/image/wx02.png b/src/assets/image/wx02.png
new file mode 100644
index 0000000..ba97607
Binary files /dev/null and b/src/assets/image/wx02.png differ
diff --git a/src/views/home/notice.vue b/src/views/home/notice.vue
index be39989..19043f9 100644
--- a/src/views/home/notice.vue
+++ b/src/views/home/notice.vue
@@ -13,9 +13,15 @@
@@ -211,8 +199,8 @@ export default {
// });
// window.open(routerJump.href, '_blank');
},
- handlePage() {
- this.$router.push({ path: '/login' });
+ handlePage(flag) {
+ this.$router.push({ path: '/login', query: { status: flag } });
},
handlePath(path) {
this.path = path;
@@ -371,6 +359,7 @@ export default {
}
}
.my_footer {
+ background-color: #eeeeee;
.footer_one {
p {
text-align: center;
@@ -390,14 +379,26 @@ export default {
}
}
.footer_two {
- border-bottom: 1px solid #dcdcdc;
+ // border-bottom: 1px solid #dcdcdc;
display: flex;
justify-content: space-between;
align-items: center;
.footer_left {
- padding: 50px 0;
+ padding: 40px 0;
+ .footer_left_one {
+ width: 392px;
+ height: 63px;
+ background: url(~@/assets/image/02.png) no-repeat left center;
+ background-size: 90% 90%;
+ }
.footer_left_two {
- margin: 20px 0;
+ margin: 10px 0;
+ font-size: 13px;
+ color: #666;
+ }
+ .footer_left_three {
+ font-size: 22px;
+ color: #555;
}
.footer_left_l {
font-size: 18px;
@@ -440,6 +441,20 @@ export default {
}
}
}
+ .hc_bottom {
+ width: 100%;
+ height: 35px;
+ text-align: center;
+ line-height: 35px;
+ background: #ccc;
+ .text {
+ color: #777;
+ font-size: 12px;
+ span {
+ margin-right: 15px;
+ }
+ }
+ }
}
/deep/.el-badge__content.is-fixed {
top: 5px;
diff --git a/src/views/login.vue b/src/views/login.vue
index 02fceab..8f7dc91 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -204,7 +204,7 @@
-
+
{
+ this.$refs.loginForm.validate(valid => {
if (valid) {
if (!this.timer) {
this.count = this.TIME_COUNT;
this.show = false;
- getAuthCode({ phone: this.loginForm.username }).then((res) => {
+ getAuthCode({ phone: this.loginForm.username }).then(res => {
console.log(res);
this.timer = setInterval(() => {
if (this.count > 0 && this.count <= this.TIME_COUNT) {
@@ -456,39 +454,35 @@ export default {
});
},
getCode2() {
- this.$refs.registerForm.validate((valid) => {
- if (valid) {
- if (!this.timer2) {
- this.count2 = this.TIME_COUNT2;
- this.show2 = false;
- getAuthCode({ phone: this.registerForm.username }).then((res) => {
- this.timer2 = setInterval(() => {
- if (this.count2 > 0 && this.count2 <= this.TIME_COUNT2) {
- this.count2--;
- } else {
- this.show2 = true;
- clearInterval(this.timer2); // 清除定时器
- this.timer2 = null;
- }
- }, 1000);
- });
- }
- }
- });
+ if (!this.timer2) {
+ this.count2 = this.TIME_COUNT2;
+ this.show2 = false;
+ getAuthCode({ phone: this.registerForm.username }).then(res => {
+ this.timer2 = setInterval(() => {
+ if (this.count2 > 0 && this.count2 <= this.TIME_COUNT2) {
+ this.count2--;
+ } else {
+ this.show2 = true;
+ clearInterval(this.timer2); // 清除定时器
+ this.timer2 = null;
+ }
+ }, 1000);
+ });
+ }
},
handleLogin() {
if (!this.loginForm.flag)
return this.msgError('请您阅读并同意《用户协议》');
- this.$refs.loginForm.validate((valid) => {
+ this.$refs.loginForm.validate(valid => {
if (valid) {
this.loading = true;
if (this.loginForm.rememberMe) {
Cookies.set('username', this.loginForm.username, { expires: 30 });
Cookies.set('password', encrypt(this.loginForm.password), {
- expires: 30,
+ expires: 30
});
Cookies.set('rememberMe', this.loginForm.rememberMe, {
- expires: 30,
+ expires: 30
});
} else {
Cookies.remove('username');
@@ -525,7 +519,7 @@ export default {
return this.msgError('2次密码输入不一致');
if (!this.registerForm.flag)
return this.msgError('请您阅读并同意《用户协议》');
- this.$refs.registerForm.validate((valid) => {
+ this.$refs.registerForm.validate(valid => {
if (valid) {
this.loading = true;
// 验证码登录
@@ -540,8 +534,12 @@ export default {
});
}
});
- },
+ }
},
+ created() {
+ const { status } = this.$route.query;
+ this.status = status;
+ }
};
diff --git a/src/views/result.vue b/src/views/result.vue
index 654fe28..43289a6 100644
--- a/src/views/result.vue
+++ b/src/views/result.vue
@@ -143,43 +143,41 @@
-
+
+
+
+
+ CopyRight 2020-2021
+ 版权所有 合肥嘉策信息技术服务有限公司
+ 皖ICP备45619723号-1
+ 技术支持:安徽商挈智能科技有限公司
@@ -375,8 +373,7 @@ export default {
}
}
.my_footer {
- margin-top: 30px;
- background-color: #fff;
+ background-color: #eeeeee;
.footer_one {
p {
text-align: center;
@@ -396,14 +393,26 @@ export default {
}
}
.footer_two {
- border-bottom: 1px solid #dcdcdc;
+ // border-bottom: 1px solid #dcdcdc;
display: flex;
justify-content: space-between;
align-items: center;
.footer_left {
- padding: 50px 0;
+ padding: 40px 0;
+ .footer_left_one {
+ width: 392px;
+ height: 63px;
+ background: url(~@/assets/image/02.png) no-repeat left center;
+ background-size: 90% 90%;
+ }
.footer_left_two {
- margin: 20px 0;
+ margin: 10px 0;
+ font-size: 13px;
+ color: #666;
+ }
+ .footer_left_three {
+ font-size: 22px;
+ color: #555;
}
.footer_left_l {
font-size: 18px;
@@ -411,6 +420,8 @@ export default {
margin-right: 30px;
}
.footer_left_r {
+ font-size: 16px;
+ color: #666;
i {
img {
vertical-align: middle;
@@ -444,5 +455,19 @@ export default {
}
}
}
+ .hc_bottom {
+ width: 100%;
+ height: 35px;
+ text-align: center;
+ line-height: 35px;
+ background: #ccc;
+ .text {
+ color: #777;
+ font-size: 12px;
+ span {
+ margin-right: 15px;
+ }
+ }
+ }
}
diff --git a/src/views/startEvaluation.vue b/src/views/startEvaluation.vue
index 68d7f0f..1a93b4f 100644
--- a/src/views/startEvaluation.vue
+++ b/src/views/startEvaluation.vue
@@ -6,121 +6,123 @@
A高企认定门槛
- 一、企业基本情况
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- 二、财务数据(单位:万元)
-
-
-
-
-
-
-
-
-
-
- 三、人力资源
-
-
-
-
-
-
- 四、其他
-
-
-
-
-
-
-
- 提 交
+
+
+
+
+
+
+ 三、人力资源
+
+
+
+
+
+
+ 四、其他
+
-
+
+
+
+
+
+
+ 提 交
+
+
@@ -133,101 +135,105 @@
您的高企认定门槛检查未通过,请点击返回重新填写!
- 未通过项:
-
- {{ index + 1 }}、{{ item }}
-
-
- 返 回
-
+
+ 未通过项:
+
+ {{ index + 1 }}、{{ item }}
+
+
+ 返 回
+
+
B创新指标评分
- 一、知识产权
-
-
-
-
-
-
-
-
-
-
-
-
-
- 二、科技成果转化
-
-
-
- 三、组织管理水平(多选)
-
-
- 制定了企业研究开发的组织管理制度,建立了研发投入核算体系,编制了研发费用辅助账。
-
-
- 设立了内部科学技术研究开发机构并具备相应的科研条件,与国内外研究开发机构开展多种形式产学研合作
-
-
- 建立了科技成果转化的组织实施与激励奖励制度,建立开放式的创新创业平台。
-
-
- 建立了科技人员的培养进修、职工技能培训、优秀人才引进,以及人才绩效评价奖励制度。
-
-
- 四、企业成长性
-
-
+ 一、知识产权
+
-
-
-
-
-
-
-
-
-
-
-
- 提 交
+
+
+
-
+
+
+
+
+
+
+
+
+ 二、科技成果转化
+
+
+
+ 三、组织管理水平(多选)
+
+
+ 制定了企业研究开发的组织管理制度,建立了研发投入核算体系,编制了研发费用辅助账。
+
+
+ 设立了内部科学技术研究开发机构并具备相应的科研条件,与国内外研究开发机构开展多种形式产学研合作
+
+
+ 建立了科技成果转化的组织实施与激励奖励制度,建立开放式的创新创业平台。
+
+
+ 建立了科技人员的培养进修、职工技能培训、优秀人才引进,以及人才绩效评价奖励制度。
+
+
+ 四、企业成长性
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提 交
+
+
@@ -238,13 +244,15 @@
}}
分,不符合高企认定条件!此评分为平台智能估算分,仅供参考,实际评分以政府实际打分为准!
- 平台建议:
-
- {{ index + 1 }}、{{ item }}
-
-
- 重新评估
-
+
+ 平台建议:
+
+ {{ index + 1 }}、{{ item }}
+
+
+ 重新评估
+
+
@@ -417,6 +425,9 @@ export default {
.margin-right-xs {
margin-right: 15px;
}
+ .padding-left {
+ padding-left: 30px;
+ }
.w120 {
max-width: 120px;
}