|
@@ -57,7 +57,9 @@
|
|
</el-form>
|
|
</el-form>
|
|
<div class="fiveBtn">提交申请</div>
|
|
<div class="fiveBtn">提交申请</div>
|
|
</div>
|
|
</div>
|
|
- <div class="seven">立 即 咨 询</div>
|
|
|
|
|
|
+ <div class="seven" @click="$router.push('/Recruiting')">
|
|
|
|
+ <div>立 即 咨 询</div>
|
|
|
|
+ </div>
|
|
<!-- 查看上传的图片 -->
|
|
<!-- 查看上传的图片 -->
|
|
<el-dialog :visible="dialogVisible">
|
|
<el-dialog :visible="dialogVisible">
|
|
<img width="100%" :src="dialogImageUrl" alt="" />
|
|
<img width="100%" :src="dialogImageUrl" alt="" />
|
|
@@ -113,7 +115,15 @@ export default {
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
created() {},
|
|
created() {},
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
- mounted() {},
|
|
|
|
|
|
+ mounted() {
|
|
|
|
+ document.title = "实景三维复刻限时免费体验";
|
|
|
|
+ // chrome
|
|
|
|
+ document.body.scrollTop = 0;
|
|
|
|
+ // firefox
|
|
|
|
+ document.documentElement.scrollTop = 0;
|
|
|
|
+ // safari
|
|
|
|
+ window.pageYOffset = 0;
|
|
|
|
+ },
|
|
beforeCreate() {}, //生命周期 - 创建之前
|
|
beforeCreate() {}, //生命周期 - 创建之前
|
|
beforeMount() {}, //生命周期 - 挂载之前
|
|
beforeMount() {}, //生命周期 - 挂载之前
|
|
beforeUpdate() {}, //生命周期 - 更新之前
|
|
beforeUpdate() {}, //生命周期 - 更新之前
|
|
@@ -195,10 +205,10 @@ export default {
|
|
pointer-events: none;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
.row {
|
|
.row {
|
|
- border-bottom: 1px solid #000;
|
|
|
|
|
|
+ border-bottom: 1px solid #999;
|
|
padding-bottom: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
- .fiveBtn{
|
|
|
|
|
|
+ .fiveBtn {
|
|
width: 160px;
|
|
width: 160px;
|
|
height: 34px;
|
|
height: 34px;
|
|
background-color: #65421c;
|
|
background-color: #65421c;
|
|
@@ -207,20 +217,37 @@ export default {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-items: center;
|
|
margin: 55px auto 0;
|
|
margin: 55px auto 0;
|
|
- color: #FFFFFF;
|
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
+ }
|
|
|
|
+ /deep/.el-form-item__error {
|
|
|
|
+ left: -80px !important;
|
|
|
|
+ }
|
|
|
|
+ /deep/.el-form-item.text .el-form-item__error {
|
|
|
|
+ left: 0px !important;
|
|
|
|
+ top: 200% !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.seven {
|
|
.seven {
|
|
- width: 156px;
|
|
|
|
- height: 30px;
|
|
|
|
- margin: 370px auto 0;
|
|
|
|
- background: url("../assets/img/btn.png");
|
|
|
|
- background-size: 100% 100%;
|
|
|
|
- display: flex;
|
|
|
|
- justify-content: center;
|
|
|
|
- align-items: center;
|
|
|
|
- font-weight: 700;
|
|
|
|
- color: #fff;
|
|
|
|
|
|
+ position: relative;
|
|
|
|
+ width: 323px;
|
|
|
|
+ height: 230px;
|
|
|
|
+ margin: 165px auto 0;
|
|
|
|
+ & > div {
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: 50%;
|
|
|
|
+ bottom: 15px;
|
|
|
|
+ transform: translateX(-50%);
|
|
|
|
+ width: 156px;
|
|
|
|
+ height: 30px;
|
|
|
|
+ // margin: 370px auto 0;
|
|
|
|
+ background: url("../assets/img/btn.png");
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ color: #fff;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|