添加导航
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<div class="login">
|
||||
<NavTop :type="0" style="flex-shrink:0"></NavTop>
|
||||
<div class="box">
|
||||
<div class="left">
|
||||
<div class="title">
|
||||
@@ -145,10 +146,13 @@
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import LoginTab from "@/components/login/LoginTab.vue";
|
||||
import NavTop from "@/components/NavTop.vue"
|
||||
|
||||
export default defineComponent({
|
||||
name: "Login",
|
||||
components: {
|
||||
LoginTab,
|
||||
NavTop
|
||||
},
|
||||
setup() {
|
||||
const formLayout = {
|
||||
@@ -220,8 +224,8 @@ export default defineComponent({
|
||||
background: url("../../static/images/loginbg.png");
|
||||
background-size: 100% 130%;
|
||||
background-repeat: no-repeat;
|
||||
padding-top: 145px;
|
||||
.box {
|
||||
padding-top: 145px;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
.left {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<div class="login">
|
||||
<NavTop :type="0" style="flex-shrink:0"></NavTop>
|
||||
<div class="box">
|
||||
<div :class="stepnow != 2 ? 'left' : 'left left1'">
|
||||
<div class="title">
|
||||
@@ -128,9 +129,11 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import NavTop from "@/components/NavTop.vue"
|
||||
|
||||
export default defineComponent({
|
||||
name: "Sign",
|
||||
components: {},
|
||||
components: {NavTop},
|
||||
setup() {
|
||||
const formLayout = {
|
||||
labelCol: 4,
|
||||
@@ -213,8 +216,9 @@ export default defineComponent({
|
||||
background: url("../../static/images/loginbg.png");
|
||||
background-size: 100% 130%;
|
||||
background-repeat: no-repeat;
|
||||
padding-top: 145px;
|
||||
.box {
|
||||
padding-top: 145px;
|
||||
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
.left1 {
|
||||
|
||||
Reference in New Issue
Block a user