保存进度!

This commit is contained in:
2022-12-22 15:48:48 +08:00
parent a8c505a63d
commit 787f7dc5f8
6 changed files with 20 additions and 86 deletions

View File

@@ -1,5 +0,0 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>

View File

@@ -1,18 +0,0 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
export default {
name: 'HomeView',
components: {
HelloWorld
}
}
</script>

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2022-12-14 15:23:54
* @LastEditors: Kane
* @LastEditTime: 2022-12-14 22:53:10
* @LastEditTime: 2022-12-21 11:14:57
* @FilePath: \admin_system\src\views\account\Login.vue
* @Description:
*
@@ -37,7 +37,7 @@
<el-input type="text"></el-input>
</el-col>
<el-col :span="10">
<el-button type="danger" class="el-button-block">获取验证码</el-button>
<el-button type="danger" class="el-button-block" @click="getValidateCode()">获取验证码</el-button>
</el-col>
</el-row>
</el-form-item>
@@ -70,6 +70,9 @@ export default {
methods: {
onToggleMenu(type) {
this.current_menu = type;
},
getValidateCode() {
console.log(this.$axios);
}
},
created() {