feat: add footbar for login and register page, add send button for chat page

This commit is contained in:
RockYang
2023-06-16 13:57:05 +08:00
parent 6a2122e1ac
commit 3347b4c990
5 changed files with 93 additions and 34 deletions

View File

@@ -35,6 +35,10 @@
</el-row>
</div>
</div>
<footer class="footer">
<footer-bar />
</footer>
</div>
</div>
</template>
@@ -47,6 +51,7 @@ import {httpPost} from "@/utils/http";
import {ElMessage} from "element-plus";
import {setLoginUser} from "@/utils/storage";
import {useRouter} from "vue-router";
import FooterBar from "@/components/FooterBar.vue";
const router = useRouter();
const title = ref('ChatGPT-PLUS 用户登录');
@@ -151,5 +156,13 @@ const login = function () {
}
}
}
.footer {
color #ffffff;
.container {
padding 20px;
}
}
}
</style>