提交 d9d59595 authored 作者: matian's avatar matian

证书查询系统页面优化

上级 67031005
src/assets/favicon.ico

16.6 KB | W: | H:

src/assets/favicon.ico

4.3 KB | W: | H:

src/assets/favicon.ico
src/assets/favicon.ico
src/assets/favicon.ico
src/assets/favicon.ico
  • 2-up
  • Swipe
  • Onion skin
...@@ -13,14 +13,14 @@ export const shmsLang = { ...@@ -13,14 +13,14 @@ export const shmsLang = {
sexMan: 'Male', sexMan: 'Male',
sexWoMan: 'Female', sexWoMan: 'Female',
sexUnknown: 'Unknown', sexUnknown: 'Unknown',
proTitle: 'PROFILE', proTitle: 'Profile',
mobile: 'Mobile Phone', mobile: 'Mobile Phone',
email: 'Email', email: 'Email',
idNumber: 'ID Number', idNumber: 'ID Number',
state: 'Current State', state: 'Current State',
added: 'Date of Registration', added: 'Date of Registration',
graduated: 'Date of Graduation', graduated: 'Date of Graduation',
degTitle: 'DEGREES', degTitle: 'Degrees',
major: 'Major', major: 'Major',
Level: 'Degree Level', Level: 'Degree Level',
Type: 'Degree Type', Type: 'Degree Type',
...@@ -38,8 +38,8 @@ export const shmsLang = { ...@@ -38,8 +38,8 @@ export const shmsLang = {
program: 'Program', program: 'Program',
idNumber: 'ID Number', idNumber: 'ID Number',
email: 'Email', email: 'Email',
date: 'Announcement date', date: 'Released Date',
title: 'TEST SCORES', title: 'Test Scores',
course: 'Course Name', course: 'Course Name',
semester: 'Semester', semester: 'Semester',
score: 'Offical Score' score: 'Offical Score'
......
export const shmsLang = { export const shmsLang = {
menu: { menu: {
home: 'Home', home: 'Home',
status: 'Student status', status: 'Student Status',
score: 'Test score', score: 'Test Score',
cert: 'Certficate' cert: 'Certficate'
}, },
home: { home: {
...@@ -13,14 +13,14 @@ export const shmsLang = { ...@@ -13,14 +13,14 @@ export const shmsLang = {
sexMan: 'Male', sexMan: 'Male',
sexWoMan: 'Female', sexWoMan: 'Female',
sexUnknown: 'Unknown', sexUnknown: 'Unknown',
proTitle: 'PROFILE', proTitle: 'Profile',
mobile: 'Mobile Phone', mobile: 'Mobile Phone',
email: 'Email', email: 'Email',
idNumber: 'ID Number', idNumber: 'ID Number',
state: 'Current State', state: 'Current State',
added: 'Date of Registration', added: 'Date of Registration',
graduated: 'Date of Graduation', graduated: 'Date of Graduation',
degTitle: 'DEGREES', degTitle: 'Degrees',
major: 'Major', major: 'Major',
Level: 'Degree Level', Level: 'Degree Level',
Type: 'Degree Type', Type: 'Degree Type',
...@@ -38,8 +38,8 @@ export const shmsLang = { ...@@ -38,8 +38,8 @@ export const shmsLang = {
program: 'Program', program: 'Program',
idNumber: 'ID Number', idNumber: 'ID Number',
email: 'Email', email: 'Email',
date: 'Announcement date', date: 'Released Date',
title: 'TEST SCORES', title: 'Test Scores',
course: 'Course Name', course: 'Course Name',
semester: 'Semester', semester: 'Semester',
score: 'Offical Score' score: 'Offical Score'
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<!-- <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> --> <!-- <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> -->
<!-- <meta http-equiv="Pragma" content="no-cache" /> --> <!-- <meta http-equiv="Pragma" content="no-cache" /> -->
<!-- <meta http-equiv="Expires" content="0" /> --> <!-- <meta http-equiv="Expires" content="0" /> -->
<title>Swiss Hotel Management School Cerification Service</title> <title>Swiss Education Group Student Service</title>
<meta name="viewport" id="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no"> <meta name="viewport" id="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no">
</head> </head>
<body> <body>
......
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
<div class="th" v-for="(item, index) in th" :key="index">{{ item }}</div> <div class="th" v-for="(item, index) in th" :key="index">{{ item }}</div>
</div> </div>
<div class="td-box" v-for="(item, index) in data.scores" :key="index"> <div class="td-box" v-for="(item, index) in data.scores" :key="index">
<div class="td">{{ item.course_english_name }}</div>
<div class="td">{{ item.semester }}</div>
<div class="td">{{ item.project_english_name }}</div> <div class="td">{{ item.project_english_name }}</div>
<div class="td">{{ item.semester }}</div>
<div class="td">{{ item.course_english_name }}</div>
<div class="td">{{ (item.score && parseInt(item.score)) || 'None' }}</div> <div class="td">{{ (item.score && parseInt(item.score)) || 'None' }}</div>
<div class="td"> <div class="td">
<div>{{ item.pubdate ? setDate(item.pubdate) : 'None' }}</div> <div>{{ item.pubdate ? setDate(item.pubdate) : 'None' }}</div>
...@@ -47,9 +47,9 @@ export default { ...@@ -47,9 +47,9 @@ export default {
data() { data() {
return { return {
th: [ th: [
this.$t('shmsLang.score.course'),
this.$t('shmsLang.score.semester'),
this.$t('shmsLang.score.program'), this.$t('shmsLang.score.program'),
this.$t('shmsLang.score.semester'),
this.$t('shmsLang.score.course'),
this.$t('shmsLang.score.score'), this.$t('shmsLang.score.score'),
this.$t('shmsLang.score.date') this.$t('shmsLang.score.date')
], ],
...@@ -141,6 +141,8 @@ export default { ...@@ -141,6 +141,8 @@ export default {
font-size: 18px; font-size: 18px;
line-height: 22px; line-height: 22px;
color: #292929; color: #292929;
opacity: 1;
font-weight: 400;
} }
.value { .value {
font-size: 18px; font-size: 18px;
......
...@@ -4,10 +4,12 @@ ...@@ -4,10 +4,12 @@
<div class="padding_lr"> <div class="padding_lr">
<div class="degrees-content"> <div class="degrees-content">
<div class="th-box"> <div class="th-box">
<div class="th" v-for="(item, index) in thItem" :key="index">{{ item }}</div> <div class="th" v-for="(item, index) in thItem" :key="index">
<div>{{item}}</div>
</div>
</div> </div>
<div class="td-box" v-for="(item, index) in degreesItem" :key="index"> <div class="td-box" v-for="(item, index) in degreesItem" :key="index">
<div class="td">&nbsp;&nbsp;{{ item.major }}</div> <div class="td">{{ item.major }}</div>
<div class="td">{{ item.level }}</div> <div class="td">{{ item.level }}</div>
<div class="td">{{ item.type }}</div> <div class="td">{{ item.type }}</div>
</div> </div>
...@@ -34,26 +36,24 @@ export default { ...@@ -34,26 +36,24 @@ export default {
padding: 0 35px; padding: 0 35px;
} }
.degrees-title { .degrees-title {
font-size: 20px; font-size: 18px;
line-height: 24px; line-height: 24px;
color: #292929; color: #292929;
margin: 24px 0; margin: 24px 0;
} }
.degrees-content { .degrees-content {
// width: 857px;
margin: 0 auto; margin: 0 auto;
.th-box { .th-box {
display: flex;
justify-content: space-around;
height: 56px; height: 56px;
background: #f8f8f8; background: #f8f8f8;
display: flex;
align-items: center; align-items: center;
.th { .th {
flex: 1; flex: 1;
font-size: 18px; font-size: 18px;
color: #292929; color: #292929;
&:nth-child(1) { text-align: center;
text-indent: 4em;
}
} }
} }
.td-box { .td-box {
...@@ -66,9 +66,7 @@ export default { ...@@ -66,9 +66,7 @@ export default {
flex: 1; flex: 1;
font-size: 16px; font-size: 16px;
color: #838383; color: #838383;
&:nth-child(1) { text-align: center;
text-indent: 4em;
}
} }
} }
} }
......
...@@ -38,7 +38,8 @@ ...@@ -38,7 +38,8 @@
<div class="value" v-if="info.created_time">{{ setDate(info.created_time) }}</div> <div class="value" v-if="info.created_time">{{ setDate(info.created_time) }}</div>
</div> </div>
<div class="info-temp m-t17"> <div class="info-temp m-t17">
<div class="name w140">{{ $t('shmsLang.status.graduated') }}</div> <div class="name w140">
<div>{{ $t('shmsLang.status.graduated') }}</div></div>
<div class="value" v-if="info.graduation_time"> <div class="value" v-if="info.graduation_time">
{{ setDate(info.graduation_time) }} {{ setDate(info.graduation_time) }}
</div> </div>
...@@ -210,12 +211,14 @@ export default { ...@@ -210,12 +211,14 @@ export default {
width: 135px; width: 135px;
} }
.w140 { .w140 {
width: 140px; width: 180px;
} }
.name { .name {
color: #292929; color: #292929;
font-size: 18px; font-size: 18px;
text-align: right; text-align: right;
opacity: 1;
font-weight: 400;
} }
.value { .value {
font-size: 16px; font-size: 16px;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论