|
|
@ -57,11 +57,14 @@ |
|
|
|
</el-tabs> |
|
|
|
</el-tabs> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<v-footer class="footer"></v-footer> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
<script> |
|
|
|
import addRoutes from '@/libs/route/addRoutes' |
|
|
|
import addRoutes from '@/libs/route/addRoutes' |
|
|
|
|
|
|
|
import vFooter from '../common/Footer' |
|
|
|
export default { |
|
|
|
export default { |
|
|
|
data: function() { |
|
|
|
data: function() { |
|
|
|
return { |
|
|
|
return { |
|
|
@ -84,6 +87,9 @@ export default { |
|
|
|
activeName: '0' |
|
|
|
activeName: '0' |
|
|
|
}; |
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
components: { |
|
|
|
|
|
|
|
vFooter, |
|
|
|
|
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
submitForm(form) { |
|
|
|
submitForm(form) { |
|
|
|
this.$refs[form].validate(valid => { |
|
|
|
this.$refs[form].validate(valid => { |
|
|
@ -150,6 +156,12 @@ export default { |
|
|
|
box-shadow:0px 0px 79px 0px rgba(11,15,65,0.36); |
|
|
|
box-shadow:0px 0px 79px 0px rgba(11,15,65,0.36); |
|
|
|
overflow: hidden; |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.footer{ |
|
|
|
|
|
|
|
position: absolute; |
|
|
|
|
|
|
|
bottom: 0; |
|
|
|
|
|
|
|
left: 0; |
|
|
|
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
} |
|
|
|
.login-btn { |
|
|
|
.login-btn { |
|
|
|
text-align: center; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
} |
|
|
|