Commit 085aaf2d authored by 纪泽龙's avatar 纪泽龙

更新

parent 432acbe2
...@@ -2,14 +2,13 @@ ...@@ -2,14 +2,13 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2025-06-11 09:19:41 * @Date: 2025-06-11 09:19:41
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2025-06-11 11:43:22 * @LastEditTime: 2025-06-13 15:50:44
* @FilePath: /fangzhen/devls/src/router/index.js * @FilePath: /fangzhen/devls/src/router/index.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/ */
import Vue from "vue"; import Vue from "vue";
import VueRouter from "vue-router"; import VueRouter from "vue-router";
Vue.use(VueRouter); Vue.use(VueRouter);
const routes = [ const routes = [
...@@ -28,8 +27,12 @@ const routes = [ ...@@ -28,8 +27,12 @@ const routes = [
{ {
path: "/one", path: "/one",
name: "one", name: "one",
component: () => component: () => import(/* webpackChunkName: "about" */ "../views/one.vue"),
import(/* webpackChunkName: "about" */ "../views/one.vue"), },
{
path: "/zzz",
name: "zzz",
component: () => import(/* webpackChunkName: "about" */ "../views/zzz.vue"),
}, },
]; ];
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2025-06-11 09:19:41 * @Date: 2025-06-11 09:19:41
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2025-06-11 11:42:10 * @LastEditTime: 2025-06-13 16:00:16
* @FilePath: /fangzhen/devls/src/views/AboutView.vue * @FilePath: /fangzhen/devls/src/views/AboutView.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -71,6 +71,7 @@ export default { ...@@ -71,6 +71,7 @@ export default {
background: url("~@/assets/bg.png") no-repeat; background: url("~@/assets/bg.png") no-repeat;
box-sizing: border-box; box-sizing: border-box;
padding-top: 263px; padding-top: 263px;
justify-content: space-around;
.t { .t {
width: 395px; width: 395px;
height: 72px; height: 72px;
...@@ -82,15 +83,17 @@ export default { ...@@ -82,15 +83,17 @@ export default {
.l { .l {
width: 761px; width: 761px;
height: 496px; height: 496px;
background: url("~@/assets/loginLeft.png") no-repeat; background: url("~@/assets/loginLeft.png") no-repeat ;
margin-left: 263px; background-size:100% ;
margin-left: 200px;
margin-top: 50px; margin-top: 50px;
margin-right: 170px; margin-right: 100px;
} }
.r { .r {
width: 466px; width: 466px;
height: 556px; height: 556px;
border-radius: 8px; border-radius: 8px;
margin-right: 100px;
background: #ffffff; background: #ffffff;
box-sizing: border-box; box-sizing: border-box;
border: 1px solid #7794f7; border: 1px solid #7794f7;
......
<!--
* @Author: 纪泽龙 jizelong@qq.com
* @Date: 2025-06-13 15:50:49
* @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2025-06-13 15:54:18
* @FilePath: /devls/src/views/zzz.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
<div>
<iframe src="https://duankou.wlphp.com/"></iframe>
</div>
</template>
<script>
export default {
name: '',
data () {
return {}
},
methods: {}
}
</script>
<style lang="scss" scoped>
iframe{
width: 100vw;
height: 100vh;
position:absolute;
top:-70px;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment