diff --git a/src/assets/hand-o-right.png b/src/assets/hand-o-right.png new file mode 100644 index 000000000..b244bf697 Binary files /dev/null and b/src/assets/hand-o-right.png differ diff --git a/src/scripts/ProjectConfig.js b/src/scripts/ProjectConfig.js index 8f4d4a114..3e2587d12 100644 --- a/src/scripts/ProjectConfig.js +++ b/src/scripts/ProjectConfig.js @@ -45,7 +45,7 @@ export const loginInfo = { systemType: '011' }, drts: { - title: '城市轨道交通行车调度员竞赛练习系统', + title: '行车调度员竞赛练习系统', loginPath: '/login?project=drts', loginParam: 'DRTS', loginTitle: '空串', diff --git a/src/views/login/index.vue b/src/views/login/index.vue index fa1b6dbca..fd8fffe05 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -12,7 +12,7 @@ {{ loginTitle==='空串'?'':loginTitle }}
-
距离全国调度大赛还剩
+
距离2020年“新誉杯”全国城市轨道交通行业职业技能竞赛还剩
{{ days[0] }}
{{ days[1] }}
{{ days[2] }}
@@ -127,6 +127,9 @@
+
+
“新誉杯”竞赛规程
+
@@ -144,6 +147,7 @@ import bgIscsImg from '@/assets/bg_iscs.jpg'; import bgCctvImg from '@/assets/bg_cctv.jpg'; import bgLswImg from '@/assets/bg_lsw.jpg'; import bgPsdImg from '@/assets/bg_psd.png'; +import HandRight from '@/assets/hand-o-right.png'; import wchat from '@/assets/wchat.png'; import { UrlConfig } from '@/scripts/ConstDic'; import { loginInfo, ProjectIcon, ProjectLoginStyleList, VersionBaseNoShow, MainBodyNoShow, NoQrcodeList} from '@/scripts/ProjectConfig'; @@ -208,7 +212,8 @@ export default { countdown: null, days: [0, 0, 0], gameOver: false, - wchatImg: wchat + wchatImg: wchat, + handRight: HandRight }; }, computed: { @@ -572,6 +577,9 @@ export default { this.days.push(Math.floor(day / 100)); this.days.push(Math.floor((day % 100) / 10)); this.days.push(day % 10); + }, + goCompetitionRules() { + window.open('https://mp.weixin.qq.com/s?__biz=MzI3NzMwODY3OQ==&mid=2247506304&idx=1&sn=77708ca228404cee2b28e131cdfb9735&chksm=eb6aade8dc1d24fe6eb9f1334aadda239f47dafc79de7d522e0f3f00e2d3ba1dd213dda6764c&xtrack=1&scene=90&subscene=93&sessionid=1598522875&clicktime=1598523062&enterid=1598523062&ascene=56&devicetype=android-29&version=3.0.27.2701&nettype=WIFI&abtest_cookie=AAACAA%3D%3D&lang=zh_CN&exportkey=AQZ2cTPSob%2B5kBDiWnKw0Js%3D&pass_ticket=12Xyhe%2BbZsC9Vuzfs0iYUUn0i%2Br5JlZiOGCxWoExuthBhnIrpkmUyjVRi6bjyA1I&wx_header=1&platform=win', '_blank'); } } }; @@ -664,6 +672,17 @@ export default { text-align: center; border-radius: 5px; } + .news-box { + color: #409EFF; + width: 100%; + border-bottom: dashed 1px #409EFF; + font-size: 14px; + line-height: 30px; + height: 30px; + } + .news-box:hover { + color: #3943CB; + } .login-container { position: fixed; display: flex;