下导航

This commit is contained in:
2020-09-25 17:30:07 +08:00
parent 5d082ea187
commit 6533e7bbf2
2 changed files with 96 additions and 0 deletions

View File

@@ -172,12 +172,14 @@
</div>
<div class="submit-btn" @click="submitInfo">保存信息</div>
</div>
<nav-bottom></nav-bottom>
</div>
</template>
<script lang="ts">
import { defineComponent, reactive } from "vue";
import { UserOutlined, SmileOutlined, PlaySquareOutlined } from '@ant-design/icons-vue';
import NavBottom from '@/components/NavBottom.vue';
export default defineComponent({
name: "Archives",
@@ -185,6 +187,7 @@ export default defineComponent({
UserOutlined,
SmileOutlined,
PlaySquareOutlined,
NavBottom
},
setup(){
interface SpeakItem{
@@ -215,6 +218,7 @@ export default defineComponent({
const formData = reactive(formBasic);
/**
* 修改用户名
* @return { void }
*/
function updateUserName (): void {
console.log('修改');
@@ -222,6 +226,7 @@ export default defineComponent({
}
/**
* 添加我还会说语言
* @return { void }
*/
function addSpeakLang (): void {
formData.speakLang.push({
@@ -231,6 +236,7 @@ export default defineComponent({
}
/**
* 修改手机号
* @return { void }
*/
function updatePhoneNumber (): void {
console.log('修改手机号');
@@ -238,6 +244,7 @@ export default defineComponent({
}
/**
* 修改密码
* @return { void }
*/
function updateUserPassword(): void {
console.log('修改密码');
@@ -245,6 +252,7 @@ export default defineComponent({
}
/**
* 提交表单
* @return { void }
*/
function submitInfo (): void {
console.log('12');
@@ -265,19 +273,25 @@ export default defineComponent({
<style lang="scss" scoped>
.archives {
width: 100%;
min-width: 700px;
background-color: #ffffff;
padding: 46px;
border-radius: 17px;
.update-btn {
font-size: 11px;
color: #08AE98;
font-weight: 500;
cursor: pointer;
user-select: none;
}
.user-info {
margin-bottom: 42px;
.avatar {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-bottom: 30px;
.user-name {
display: flex;
align-items: flex-end;
@@ -401,6 +415,8 @@ export default defineComponent({
color: #FFFFFF;
text-align: center;
line-height: 23px;
cursor: pointer;
user-select: none;
}
}
}