-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🆕 Added log-in and usr verification module
- Loading branch information
Showing
8 changed files
with
314 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<template> | ||
<div class="floatWin"> | ||
短信发送中,注意查收 | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: "FloatMention" | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.floatWin { | ||
text-align: center; | ||
bottom: -1vh; | ||
position: absolute; | ||
left: 20vw; | ||
width: 44vw; | ||
height: 5vh; | ||
font-size: 1.7vh; | ||
background: rgb(245,245,245); | ||
vertical-align: middle; | ||
line-height: 5vh; | ||
border-radius: 10px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,4 @@ export default { | |
font-weight: normal; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<template> | ||
<div class="check-container"> | ||
<div> | ||
<input @change="agreeTerms" class="checkbox" type="checkbox" id="serve1" name="serve1" v-model="term1"> | ||
<label class="serve1" for="serve1">同意并授权运营商查询本人在疫情期间14天内到访地信息</label><br> | ||
</div> | ||
<div style="position:absolute; top: 2vh"> | ||
<input @change="agreeTerms" class="checkbox" type="checkbox" id="serve2" name="serve2" v-model="term2"> | ||
<label class="serve2" for="serve2">授权系统获取新冠肺炎确诊用户加密ID</label><br> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: "LogInTerms", | ||
data() { | ||
return { | ||
term1: false, | ||
term2: false, | ||
} | ||
}, | ||
methods: { | ||
agreeTerms() { | ||
this.$emit("isAgree", this.term1 && this.term2) | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.check-container { | ||
position: absolute; | ||
top: 16vh; | ||
} | ||
.checkbox { | ||
height: 1.3vh; | ||
width: 1.3vh; | ||
margin-top: 0.3vh; | ||
} | ||
.serve1, .serve2 { | ||
left: 6vw; | ||
position: absolute; | ||
font-size: 1.2vh; | ||
color: #b6afaf; | ||
} | ||
.serve1 { | ||
width: 74vw; | ||
} | ||
.serve2 { | ||
width: 52.5vw; | ||
} | ||
input { | ||
font-size: 1.8vh; | ||
border: none; | ||
/* top: 1vh; */ | ||
padding: 0; | ||
position: absolute; | ||
left: 6vw; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.