a1300399510@qq.com 提交于 2023/04/03 -11:00:02
This commit is contained in:
parent
bfc8312b03
commit
a71930c282
@ -38,7 +38,7 @@
|
|||||||
<span class="flexacenter">详情<svg-icon icon-class="arrowsBlackLeft"
|
<span class="flexacenter">详情<svg-icon icon-class="arrowsBlackLeft"
|
||||||
class-name="summary-offer-head-icon"></svg-icon></span>
|
class-name="summary-offer-head-icon"></svg-icon></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="summary-offer-box flexacenter">
|
<div class="summary-offer-box">
|
||||||
<div class="summary-offer-item flexacenter">
|
<div class="summary-offer-item flexacenter">
|
||||||
<div class="summary-offer-key flexacenter">
|
<div class="summary-offer-key flexacenter">
|
||||||
申请学校
|
申请学校
|
||||||
@ -47,13 +47,46 @@
|
|||||||
韦仕敦大学
|
韦仕敦大学
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="summary-offer-item flexacenter">
|
||||||
|
<div class="summary-offer-key flexacenter">
|
||||||
|
学位
|
||||||
|
</div>
|
||||||
|
<div class="summary-offer-value flexacenter">
|
||||||
|
MA
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="summary-offer-item flexacenter">
|
||||||
|
<div class="summary-offer-key flexacenter">
|
||||||
|
专业
|
||||||
|
</div>
|
||||||
|
<div class="summary-offer-value flexacenter">
|
||||||
|
Curriculum study
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="summary-content-item">
|
||||||
|
<div class="summary-offer-head flexacenter">
|
||||||
|
<span class="summary-offer-head-title">总结</span>
|
||||||
|
<span class="flexacenter">详情<svg-icon icon-class="arrowsBlackLeft"
|
||||||
|
class-name="summary-offer-head-icon"></svg-icon></span>
|
||||||
|
</div>
|
||||||
|
<div class="summary-wenzi">
|
||||||
|
guelph教授很好一直在帮忙催offer,现在uvic也出了口头offer,可能要纠结一下...
|
||||||
|
|
||||||
|
mcgill拒了算是意料之中吧
|
||||||
|
|
||||||
|
ottawa没搞懂申请的thesis下来了course...
|
||||||
|
|
||||||
|
calgary突然就来了offer,又陷入纠结了..
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="examine-btn flexcenter">
|
<div class="examine-btn flexcenter">
|
||||||
查看当前捷报详情
|
查看当前总结详情
|
||||||
<div class="examine-btn-outside flexcenter">
|
<div class="examine-btn-outside flexcenter">
|
||||||
<svg-icon icon-class="arrowsRoundBlackLeft" class-name="examine-btn-icon"></svg-icon>
|
<svg-icon icon-class="arrowsRoundBlackLeft" class-name="examine-btn-icon"></svg-icon>
|
||||||
</div>
|
</div>
|
||||||
@ -627,6 +660,7 @@ export default {
|
|||||||
.summary-content-item {
|
.summary-content-item {
|
||||||
border-radius: .16rem;
|
border-radius: .16rem;
|
||||||
border: .0133rem solid rgba(235, 235, 235, 1);
|
border: .0133rem solid rgba(235, 235, 235, 1);
|
||||||
|
margin-bottom: .32rem;
|
||||||
|
|
||||||
.summary-offer-head {
|
.summary-offer-head {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@ -655,10 +689,15 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.summary-offer-box {
|
.summary-offer-box {
|
||||||
|
padding-top: .28rem;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-items: center;
|
||||||
|
|
||||||
.summary-offer-item {
|
.summary-offer-item {
|
||||||
line-height: .6rem;
|
line-height: .6rem;
|
||||||
padding: 0 .24rem;
|
padding: 0 .24rem;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
margin-bottom: .2rem;
|
||||||
|
|
||||||
.summary-offer-key {
|
.summary-offer-key {
|
||||||
width: 1.3rem;
|
width: 1.3rem;
|
||||||
@ -674,6 +713,13 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.summary-wenzi {
|
||||||
|
color: #333;
|
||||||
|
font-size: .32rem;
|
||||||
|
line-height: .6rem;
|
||||||
|
padding: .28rem .24rem;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,12 +91,16 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
console.log("starList", this.starList);
|
||||||
for (var i = 0; i < this.starList.length; i++) {
|
for (var i = 0; i < this.starList.length; i++) {
|
||||||
this.showStar.push(this.starList[i])
|
this.showStar.push({ ...this.starList[i], 'checked': false })
|
||||||
}
|
|
||||||
for (let i in this.showStar) {
|
|
||||||
this.showStar[i].checked = false
|
|
||||||
}
|
}
|
||||||
|
console.log(this.showStar);
|
||||||
|
// for (let i in this.showStar) {
|
||||||
|
// this.showStar[i].checked = false
|
||||||
|
// }
|
||||||
|
|
||||||
|
// https://forum.gter.net
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -174,11 +178,9 @@ export default {
|
|||||||
width: 65%;
|
width: 65%;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 0 0.32rem 0.32rem 0;
|
border-radius: 0 0.32rem 0.32rem 0;
|
||||||
/* box-shadow: 0px 0px 8px rgb(0 0 0 / 20%); */
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
// display: none;
|
|
||||||
padding-bottom: 0.4rem;
|
padding-bottom: 0.4rem;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
@ -228,4 +230,5 @@ export default {
|
|||||||
background-color: #62b1ff;
|
background-color: #62b1ff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}</style>
|
}
|
||||||
|
</style>
|
Loading…
x
Reference in New Issue
Block a user