Commit 688e51cb authored by April's avatar April

344

parent cc234c72
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
} }
.el-progress-circle { .el-progress-circle {
width: 75px !important; width: 50px !important;
height: 75px !important; height: 50px !important;
/* 自定义高度 */ /* 自定义高度 */
} }
</style> </style>
\ No newline at end of file
...@@ -5,7 +5,7 @@ import ElementUI from "element-ui"; ...@@ -5,7 +5,7 @@ import ElementUI from "element-ui";
import VCalendar from "v-calendar"; import VCalendar from "v-calendar";
import "element-ui/lib/theme-chalk/index.css"; import "element-ui/lib/theme-chalk/index.css";
import "./utils/fixle"; // import "./utils/fixle";
import VIscroll from "./utils/vIscroll"; import VIscroll from "./utils/vIscroll";
......
...@@ -27,6 +27,7 @@ import Phone from "../views/sim/phone.vue"; ...@@ -27,6 +27,7 @@ import Phone from "../views/sim/phone.vue";
import Choose from "../views/sim/choose.vue"; import Choose from "../views/sim/choose.vue";
import Authentify2 from "../views/sim/authentify.vue"; import Authentify2 from "../views/sim/authentify.vue";
import AuthSuccess2 from "../views/sim/authSuccess.vue"; import AuthSuccess2 from "../views/sim/authSuccess.vue";
import hotelIdcardPhotograph from "../views/hotels/real/photograph.vue"
Vue.use(VueRouter); Vue.use(VueRouter);
...@@ -127,6 +128,15 @@ const routes = [ ...@@ -127,6 +128,15 @@ const routes = [
index: 2, index: 2,
}, },
}, },
{
path: "/hotel/identity/photograph",
name: "hotelIdcardPhotograph",
component: hotelIdcardPhotograph,
meta: {
title: "抓拍人脸",
index: 2,
},
},
{ {
path: "/hotel/identity/success", path: "/hotel/identity/success",
name: "hotelIdentitySuccess", name: "hotelIdentitySuccess",
......
...@@ -127,86 +127,86 @@ export default { ...@@ -127,86 +127,86 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
} }
.bookroom_top { .bookroom_top {
height: 132px; height: 88px;
width: 100%; width: 100%;
} }
.bookroom_title { .bookroom_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height:88px;
} }
.bookroom_room { .bookroom_room {
height: 729px; height: 486px;
padding-top: 60px; padding-top: 40px;
padding-left: 45px; padding-left: 30px;
overflow: hidden; overflow: hidden;
box-sizing: border-box; box-sizing: border-box;
background: white; background: white;
} }
.room_single { .room_single {
width: 368px; width: 245px;
height: 454px; height: 303px;
position: relative; position: relative;
margin-right: 45px; margin-right: 30px;
flex-grow: 0; flex-grow: 0;
flex-shrink: 0; flex-shrink: 0;
border-radius: 15px 15px 15px 15px; border-radius:10px;
border: 3px solid #e0e0e0; border: 2px solid #e0e0e0;
} }
.room_all { .room_all {
display: flex; display: flex;
width: 100%; width: 100%;
height: 460px; height: 303px;
} }
.room_img { .room_img {
width: 100%; width: 100%;
height: 315px; height: 210px;
border-radius: 15px 15px 0 0; border-radius: 10px 10px 0 0;
} }
.room_single_bottom { .room_single_bottom {
display: flex; display: flex;
width: 100%; width: 100%;
padding: 0 24px; padding: 0 16px;
margin-top: 27px; margin-top: 18px;
box-sizing: border-box; box-sizing: border-box;
align-items: flex-end; align-items: flex-end;
justify-content: space-between; justify-content: space-between;
} }
.room_single_name { .room_single_name {
font-size: 30px; font-size: 20px;
color: #333333; color: #333333;
} }
.room_single_people { .room_single_people {
color: #999999; color: #999999;
margin-top: 5px; margin-top: 3px;
font-size: 21px; font-size: 14px;
} }
.room_single_price { .room_single_price {
font-size: 26px; font-size: 17px;
color: #f29736; color: #f29736;
} }
.room_single_price span { .room_single_price span {
font-size: 48px; font-size: 32px;
} }
.bookroom_bto { .bookroom_bto {
width: 198px; width: 132px;
cursor: pointer; cursor: pointer;
height: 75px; height: 50px;
text-align: center; text-align: center;
line-height: 75px; line-height: 50px;
font-size: 27px; font-size: 18px;
color: white; color: white;
background: #eb9c4e; background: #eb9c4e;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
margin: 69px auto 0; margin: 46px auto 0;
} }
.room_single_select { .room_single_select {
border: 3px solid #5a8ff6 !important; border: 2px solid #5a8ff6 !important;
} }
.room_single_success { .room_single_success {
position: absolute; position: absolute;
......
...@@ -103,14 +103,14 @@ export default { ...@@ -103,14 +103,14 @@ export default {
this.decrease(); this.decrease();
var type = this.$root.hotelType; // var type = this.$root.hotelType;
if (type == 0) { // if (type == 0) {
this.step.splice(0, 1); // this.step.splice(0, 1);
} else { // } else {
this.$router.replace({ // this.$router.replace({
name: "hotelOrderCheck", // name: "hotelOrderCheck",
}); // });
} // }
this.currentIndex = this.$route.meta.index; this.currentIndex = this.$route.meta.index;
}, },
...@@ -149,14 +149,13 @@ export default { ...@@ -149,14 +149,13 @@ export default {
var that = this; var that = this;
that.timer = setInterval(() => { that.timer = setInterval(() => {
that.time--; that.time--;
console.log(123)
// 计算进度百分比 // 计算进度百分比
that.percentage = (that.time / 120) * 100; that.percentage = (that.time / 120) * 100;
// 检查是否倒计时结束 // 检查是否倒计时结束
if (that.time <= 0) { if (that.time <= 0) {
that.gohome(); // that.gohome();
} }
}, 1000); // 每1000毫秒(1秒)更新一次 }, 1000); // 每1000毫秒(1秒)更新一次
}, },
...@@ -175,13 +174,12 @@ export default { ...@@ -175,13 +174,12 @@ export default {
<style scoped> <style scoped>
.hotel_common { .hotel_common {
width: 100%; width: 100%;
height: 100%; height: 800px;
padding-bottom: 69px;
background: linear-gradient(to bottom, #07122f, #2e246d); background: linear-gradient(to bottom, #07122f, #2e246d);
} }
.hotel_header { .hotel_header {
width: 100%; width: 100%;
background: #17204b; background: #13182f;
display: flex; display: flex;
cursor: pointer; cursor: pointer;
align-items: center; align-items: center;
...@@ -191,22 +189,22 @@ export default { ...@@ -191,22 +189,22 @@ export default {
height: 70px; height: 70px;
} }
.hotel_header_title { .hotel_header_title {
font-size: 33px; font-size: 22px;
color: white; color: white;
} }
.hotel_header_time { .hotel_header_time {
font-size: 27px; font-size: 18px;
color: white; color: white;
} }
.home { .home {
width: 18px; width: 19px;
height: 20px; height: 20px;
margin-right: 7px; margin-right: 7px;
} }
.go_home { .go_home {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 24px; font-size: 16px;
color: white; color: white;
} }
.hotel_step { .hotel_step {
...@@ -216,7 +214,7 @@ export default { ...@@ -216,7 +214,7 @@ export default {
align-items: center; align-items: center;
} }
.hotel_step_index { .hotel_step_index {
font-size: 23px; font-size: 15px;
color: #797f90; color: #797f90;
} }
.hotel_step_single { .hotel_step_single {
...@@ -224,28 +222,28 @@ export default { ...@@ -224,28 +222,28 @@ export default {
align-items: center; align-items: center;
} }
.hotel_step_num { .hotel_step_num {
width: 24px; width: 16px;
height: 24px; height: 16px;
margin-right: 10px; margin-right: 10px;
border-radius: 50%; border-radius: 50%;
background: #797f90; background: #797f90;
color: white; color: white;
font-size: 20px; font-size: 13px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.hotel_step_right { .hotel_step_right {
width: 29x; width: 19x;
height: 7px; height: 4px;
margin: 0 21px; margin: 0 21px;
} }
.hotel_content { .hotel_content {
width: 100%; width: 100%;
padding: 0 36px; padding: 0 24px;
box-sizing: border-box; box-sizing: border-box;
border-radius: 21px; border-radius: 21px;
height: 906px; height: 604px;
} }
.hotel_content_frame { .hotel_content_frame {
width: 100%; width: 100%;
...@@ -256,8 +254,8 @@ export default { ...@@ -256,8 +254,8 @@ export default {
} }
.hotel_content_frame_countdown { .hotel_content_frame_countdown {
position: absolute; position: absolute;
top: 36px; top: 24px;
right: 45px; right: 30px;
} }
.hotel_step_index_s { .hotel_step_index_s {
color: #f29736; color: #f29736;
......
...@@ -45,55 +45,55 @@ export default { ...@@ -45,55 +45,55 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
}
.order_top {
height: 132px;
width: 100%;
position: relative;
} }
.goback { .goback {
width: 141px; width: 94px;
height: 51px; height: 34px;
position: absolute; position: absolute;
top: 45px; top: 30px;
left: 0; left: 0;
cursor: pointer; cursor: pointer;
font-size: 21px; font-size: 14px;
color: #666666; color: #666666;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 2px solid #707070; border: 1px solid #707070;
text-align: center; text-align: center;
line-height: 51px; line-height: 34px;
}
.order_top {
height: 88px;
width: 100%;
position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; height: 486px;
padding-top: 60px; padding-top: 40px;
box-sizing: border-box; box-sizing: border-box;
} }
.price_title { .price_title {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
text-align: center; text-align: center;
} }
.price { .price {
color: #333333; color: #333333;
font-size: 33px; font-size: 22px;
margin-top: 27px; margin-top: 18px;
text-align: center; text-align: center;
} }
.price span { .price span {
font-size: 72px; font-size: 48px;
} }
.price_type { .price_type {
display: flex; display: flex;
...@@ -102,14 +102,14 @@ export default { ...@@ -102,14 +102,14 @@ export default {
margin-top: 44px; margin-top: 44px;
} }
.price_img { .price_img {
width: 342px; width: 196px;
height: 342px; height: 196px;
} }
.price_wechat { .price_wechat {
margin-right: 210px; margin-right: 172px;
} }
.price_tips { .price_tips {
font-size: 24px; font-size: 16px;
color: #999999; color: #999999;
text-align: center; text-align: center;
} }
......
...@@ -74,95 +74,95 @@ export default { ...@@ -74,95 +74,95 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
}
.order_top {
height: 132px;
width: 100%;
position: relative;
} }
.goback { .goback {
width: 141px; width: 94px;
height: 51px; height: 34px;
position: absolute; position: absolute;
top: 45px; top: 30px;
left: 0; left: 0;
cursor: pointer; cursor: pointer;
font-size: 21px; font-size: 14px;
color: #666666; color: #666666;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 2px solid #707070; border: 1px solid #707070;
text-align: center; text-align: center;
line-height: 51px; line-height: 34px;
}
.order_top {
height: 88px;
width: 100%;
position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; height: 486px;
display: flex; display: flex;
align-items: center; align-items: center;
box-sizing: border-box; box-sizing: border-box;
} }
.roominfo { .roominfo {
width: 467px; width: 311px;
height: 100%; height: 100%;
padding: 51px 0 0 53px; padding: 34px 0 0 35px;
box-sizing: border-box; box-sizing: border-box;
background: url("~@/assets/hotel/room.png"); background: url("~@/assets/hotel/room.png");
background-size: 100% 100%; background-size: 100% 100%;
} }
.roominfo_name { .roominfo_name {
font-size: 30px; font-size: 20px;
color: #a28263; color: #a28263;
} }
.roominfo_num { .roominfo_num {
font-size: 90px; font-size: 60px;
color: #7f5321; color: #7f5321;
margin: 12px 0 15px; margin: 18px 0 10px;
} }
.roominfo_type { .roominfo_type {
width: 141px; width: 94px;
height: 54px; height: 36px;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
text-align: center; text-align: center;
line-height: 54px; line-height: 36px;
color: #7f5321; color: #7f5321;
font-size: 21px; font-size: 14px;
border: 1px solid #7f5321; border: 1px solid #7f5321;
} }
.roomcheck { .roomcheck {
width: 636px; width: 424px;
height: 100%; height: 100%;
padding: 0 60px 0 45px; padding: 0 40px 0 30px;
box-sizing: border-box; box-sizing: border-box;
} }
.roomcheck_sin { .roomcheck_sin {
width: 531px; width: 354px;
height: 156px; height: 103px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
border-bottom: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
} }
.roomcheck_sin_name { .roomcheck_sin_name {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
} }
.roomcheck_sin_people { .roomcheck_sin_people {
font-size: 27px; font-size: 18px;
color: #333333; color: #333333;
} }
.roomcheck_sin_time { .roomcheck_sin_time {
font-size: 24px; font-size:16px;
margin-top: 45px; margin-top: 30px;
color: #000000; color: #000000;
} }
.roomcheck_sin_bottom { .roomcheck_sin_bottom {
...@@ -176,7 +176,7 @@ export default { ...@@ -176,7 +176,7 @@ export default {
.roomprice { .roomprice {
flex: 1; flex: 1;
height: 100%; height: 100%;
padding: 60px 77px 0; padding: 40px 51px 0;
box-sizing: content-box; box-sizing: content-box;
} }
.roomprice_tips { .roomprice_tips {
...@@ -186,47 +186,47 @@ export default { ...@@ -186,47 +186,47 @@ export default {
justify-content: space-between; justify-content: space-between;
} }
.heng { .heng {
width: 168px; width: 112px;
height: 1px; height: 1px;
background: #e0e0e0; background: #e0e0e0;
} }
.roomprice_title { .roomprice_title {
font-size: 24px; font-size: 14px;
color: #666666; color: #666666;
text-align: center; text-align: center;
} }
.roomprice_num { .roomprice_num {
color: #333333; color: #333333;
font-size: 33px; font-size: 22px;
text-align: center; text-align: center;
margin: 27px 0 84px; margin: 18px 0 56px;
} }
.roomprice_num span { .roomprice_num span {
font-size: 72px; font-size: 48px;
} }
.roomprice_specific { .roomprice_specific {
display: flex; display: flex;
margin-top: 42px; margin-top: 24px;
justify-content: space-between; justify-content: space-between;
} }
.roomprice_specific_name { .roomprice_specific_name {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
} }
.roomprice_specific_num { .roomprice_specific_num {
color: #000000; color: #000000;
font-size: 30px; font-size: 20px;
} }
.roomprice_bto { .roomprice_bto {
width: 198px; width: 132px;
height: 75px; height: 50px;
text-align: center; text-align: center;
line-height: 75px; line-height: 50px;
font-size: 27px; font-size: 18px;
cursor: pointer; cursor: pointer;
color: #ffffff; color: #ffffff;
margin: 150px auto 0; margin: 102px auto 0;
background: #eb9c4e; background: #eb9c4e;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
} }
</style> </style>
\ No newline at end of file
...@@ -38,24 +38,24 @@ export default { ...@@ -38,24 +38,24 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
} }
.order_top { .order_top {
height: 132px; height: 88px;
width: 100%; width: 100%;
position: relative; position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; height: 486px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
...@@ -63,20 +63,20 @@ export default { ...@@ -63,20 +63,20 @@ export default {
box-sizing: border-box; box-sizing: border-box;
} }
.grant { .grant {
width: 168px; width: 112px;
height: 137px; height: 92px;
} }
.waiting { .waiting {
font-size: 39px; font-size: 26px;
color: #333333; color: #333333;
margin: 80px 0 45px; margin: 53px 0 30px;
} }
.progress { .progress {
width: 827px; width: 551px;
margin-bottom: 26px; margin-bottom: 17px;
} }
.progress_schedule { .progress_schedule {
font-size: 33px; font-size: 22px;
color: #333333; color: #333333;
} }
</style> </style>
\ No newline at end of file
...@@ -35,24 +35,24 @@ export default { ...@@ -35,24 +35,24 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
} }
.order_top { .order_top {
height: 132px; height: 88px;
width: 100%; width: 100%;
position: relative; position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; height: 486px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
...@@ -60,24 +60,24 @@ export default { ...@@ -60,24 +60,24 @@ export default {
box-sizing: border-box; box-sizing: border-box;
} }
.success_icon { .success_icon {
width: 119px; width: 79px;
height: 119px; height: 79px;
margin-bottom: 69px; margin-bottom: 46px;
} }
.success_text { .success_text {
font-size: 39px; font-size: 26px;
color: #333333; color: #333333;
} }
.success_back { .success_back {
width: 312px; width: 208px;
height: 105px; height: 70px;
background: #eb9c4e; background: #eb9c4e;
text-align: center; text-align: center;
line-height: 105px; line-height: 70px;
color: white; color: white;
font-size: 36px; font-size: 24px;
cursor: pointer; cursor: pointer;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
margin-top: 98px; margin-top: 65px;
} }
</style> </style>
\ No newline at end of file
...@@ -73,9 +73,9 @@ export default { ...@@ -73,9 +73,9 @@ export default {
<style scoped> <style scoped>
.reserved { .reserved {
width: 100%; width: 100%;
padding-top: 150px; padding-top: 106px;
background: #f6f7fb; background: #f6f7fb;
height: 906px; height: 100%;
box-sizing: border-box; box-sizing: border-box;
} }
...@@ -84,31 +84,19 @@ export default { ...@@ -84,31 +84,19 @@ export default {
box-sizing: border-box; box-sizing: border-box;
} }
.content_time {
width: 50px;
height: 50px;
background: #ffffff;
opacity: 1;
border: 3px solid #5a8ff6;
margin: 0 30px 0 auto;
border-radius: 50%;
text-align: center;
line-height: 50px;
}
.content_card { .content_card {
display: flex; display: flex;
padding: 0 105px; padding: 0 70px;
box-sizing: border-box; box-sizing: border-box;
} }
.card_tip { .card_tip {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
} }
::v-deep .content_card .el-input__inner { ::v-deep .content_card .el-input__inner {
width: 377px; width: 482px;
height: 78px; height: 78px;
background: none; background: none;
opacity: 1; opacity: 1;
...@@ -118,10 +106,10 @@ export default { ...@@ -118,10 +106,10 @@ export default {
} }
::v-deep .content_card .el-input { ::v-deep .content_card .el-input {
width: 723px; width: 482px;
height: 117px; height: 78px;
background: #ffffff; background: #ffffff;
border-radius: 10px 10px 10px 10px; border-radius: 10px;
opacity: 1; opacity: 1;
border: 1px solid #cbc7c7; border: 1px solid #cbc7c7;
margin: 40px 0 120px 0; margin: 40px 0 120px 0;
...@@ -130,28 +118,28 @@ export default { ...@@ -130,28 +118,28 @@ export default {
::v-deep .content_card .el-input-group__prepend { ::v-deep .content_card .el-input-group__prepend {
background-color: white; background-color: white;
border: 0; border: 0;
line-height: 117px; line-height: 78px;
border-radius: 50%; border-radius: 50%;
} }
::v-deep .content_card .el-input.is-disabled .el-input__inner { ::v-deep .content_card .el-input.is-disabled .el-input__inner {
border-color: white; border-color: white;
height: 100%; height: 100%;
font-size: 36px; font-size: 24px;
background-color: white; background-color: white;
border-radius: 10%; border-radius: 10px !important;
cursor: default; cursor: default;
color: #000000; color: #000000;
} }
.card_pre { .card_pre {
color: #000000; color: #000000;
font-size: 36px; font-size: 24px;
} }
.card_center { .card_center {
width: 2px; width: 2px;
height: 117px; height: 78px;
background: #d6d6d6; background: #d6d6d6;
margin-left: 30px; margin-left: 30px;
} }
...@@ -162,13 +150,13 @@ export default { ...@@ -162,13 +150,13 @@ export default {
} }
.card_right { .card_right {
width: 674px; width: 449px;
height: 587px; height:391px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
align-content: flex-start; align-content: flex-start;
padding: 45px; padding: 30px;
background: white; background: white;
margin-right: 0; margin-right: 0;
margin-left: auto; margin-left: auto;
...@@ -176,38 +164,41 @@ export default { ...@@ -176,38 +164,41 @@ export default {
} }
::v-deep .card_right .el-button { ::v-deep .card_right .el-button {
width: 170px; width: 113px;
height: 96px; height: 64px;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 6px;
margin-bottom: 45px; margin-bottom: 25px;
border: 1px solid #cbc7c7; border: 1px solid #cbc7c7;
font-weight: bold; font-weight: bold;
color: #000000; color: #000000;
font-size: 54px; font-size: 24px;
} }
.comfin { .comfin {
background: #eb9c4e; background: #eb9c4e;
width: 312px; width: 208px;
height: 105px; height: 70px;
text-align: center; text-align: center;
line-height: 105px; line-height: 70px;
color: white; color: white;
font-size: 36px; font-size: 24px;
background: #eb9c4e; background: #eb9c4e;
cursor: pointer; cursor: pointer;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
} }
.reset { .reset {
width: 312px; width: 208px;
height: 105px; height:70px;
text-align: center; text-align: center;
line-height: 105px; line-height: 70px;
color: #717171; color: #717171;
font-size: 36px; font-size: 24px;
background: #dcdcdc; background: #dcdcdc;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
margin-right: 60px; margin-right: 40px;
cursor: pointer; cursor: pointer;
} }
::v-deep .el-button+.el-button, .el-checkbox.is-bordered+.el-checkbox.is-bordered{
margin-left: 0;
}
</style> </style>
\ No newline at end of file
...@@ -108,81 +108,81 @@ export default { ...@@ -108,81 +108,81 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
}
.order_top {
height: 132px;
position: relative;
width: 100%;
} }
.goback { .goback {
width: 141px; width: 94px;
height: 51px; height: 34px;
position: absolute; position: absolute;
top: 45px; top: 30px;
left: 0; left: 0;
cursor: pointer; cursor: pointer;
font-size: 21px; font-size: 14px;
color: #666666; color: #666666;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 2px solid #707070; border: 1px solid #707070;
text-align: center; text-align: center;
line-height: 51px; line-height: 34px;
}
.order_top {
height: 88px;
width: 100%;
position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.order_info { .order_info {
width: 100%; width: 100%;
height: 729px; height: 486px;
background: white; background: white;
} }
.order_info_head { .order_info_head {
width: 100%; width: 100%;
height: 174px; height: 116px;
display: flex; display: flex;
padding: 45px 0 0 0; padding: 30px 0 0 0;
box-sizing: border-box; box-sizing: border-box;
align-items: flex-start; align-items: flex-start;
border-bottom: 2px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
} }
.order_info_head_left { .order_info_head_left {
width: 50%; width: 50%;
padding-left: 60px; padding-left: 40px;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
align-items: flex-start; align-items: flex-start;
} }
.order_info_tip { .order_info_tip {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
} }
.order_info_text { .order_info_text {
font-size: 33px; font-size: 24px;
color: #333333; color: #333333;
margin-top: 24px; margin-top: 16px;
} }
.order_info_prompt { .order_info_prompt {
font-size: 21px; font-size: 14px;
margin-top: 21px; margin-top: 14px;
width: 672px; width: 448px;
color: #666666; color: #666666;
} }
.order_info_head_phone { .order_info_head_phone {
margin-left: 195px; margin-left: 130px;
} }
.order_info_head_tips { .order_info_head_tips {
margin-left: 42px; margin-left: 28px;
} }
.order_info_room { .order_info_room {
width: 100%; width: 100%;
height: 275px; height: 183px;
padding: 0 60px; padding: 0 30px;
box-sizing: border-box; box-sizing: border-box;
} }
.order_info_room_conten { .order_info_room_conten {
...@@ -190,36 +190,36 @@ export default { ...@@ -190,36 +190,36 @@ export default {
height: 100%; height: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
border-bottom: 2px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
} }
.order_info_room_img { .order_info_room_img {
width: 251px; width: 167px;
height: 185px; height: 123px;
border-radius: 6px; border-radius: 4px;
margin-right: 45px; margin-right: 30px;
} }
.order_info_room_conten_left { .order_info_room_conten_left {
width: 50%; width: 50%;
display: flex; display: flex;
border-right: 2px solid #e0e0e0; border-right: 1px solid #e0e0e0;
align-items: flex-end; align-items: flex-end;
} }
.order_info_room_price { .order_info_room_price {
color: #666666; color: #666666;
margin-top: 36px; margin-top: 24px;
} }
.order_info_room_price span { .order_info_room_price span {
font-size: 42px; font-size: 28px;
line-height: 22px; line-height: 22px;
color: #000000; color: #000000;
} }
.order_info_room_time { .order_info_room_time {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
margin-top: 18px; margin-top: 12px;
} }
.order_info_room_name { .order_info_room_name {
font-size: 33px; font-size: 22px;
color: #333333; color: #333333;
} }
.order_info_room_conten_right { .order_info_room_conten_right {
...@@ -228,51 +228,51 @@ export default { ...@@ -228,51 +228,51 @@ export default {
box-sizing: border-box; box-sizing: border-box;
} }
.order_people { .order_people {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
} }
.order_info_room_conten_people { .order_info_room_conten_people {
display: flex; display: flex;
align-items: center; align-items: center;
margin-top: 23px; margin-top: 15px;
} }
.order_info_room_conten_people_li { .order_info_room_conten_people_li {
width: 123px; width: 82px;
height: 56px; height: 37px;
margin-right: 30px; margin-right: 20px;
background: #eaeaea; background: #eaeaea;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
text-align: center; text-align: center;
line-height: 56px; line-height: 37px;
color: #717171; color: #717171;
cursor: pointer; cursor: pointer;
font-size: 24px; font-size: 16px;
} }
.order_info_room_conten_people_li_select { .order_info_room_conten_people_li_select {
background: #eb9c4e; background: #eb9c4e;
color: white; color: white;
} }
.order_info_room_conten_bto { .order_info_room_conten_bto {
width: 198px; width: 132px;
height: 75px; height: 50px;
background: #eb9c4e; background: #eb9c4e;
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
line-height: 75px; line-height: 50px;
color: white; color: white;
font-size: 27px; font-size: 18px;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
} }
.order_info_checkin { .order_info_checkin {
margin-left: 105px; margin-left: 70px;
position: relative; position: relative;
} }
.order_info_room_conten_btotios { .order_info_room_conten_btotios {
position: absolute; position: absolute;
width: 140px; width: 140px;
bottom: -37px; bottom: -25px;
left: 50%; left: 50%;
font-size: 20px; font-size: 13px;
color: #666666; color: #666666;
transform: translateX(-50%); transform: translateX(-50%);
text-align: center; text-align: center;
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</div> </div>
</div> </div>
</div> </div>
<div style="margin-top: 70px"> <div style="margin-top: 30px">
<el-button type="primary" @click="verify">身份证</el-button> <el-button type="primary" @click="verify">身份证</el-button>
<el-button type="primary">粤居码</el-button> <el-button type="primary">粤居码</el-button>
...@@ -80,7 +80,10 @@ export default { ...@@ -80,7 +80,10 @@ export default {
this.$router.go(-1); this.$router.go(-1);
}, },
verify() { verify() {
this.$router.push({ name: "hotelIdentitySuccess" }); this.$router.push({
name: "hotelIdcardPhotograph",
});
// alert(JSON.stringify(res))
}, },
}, },
}; };
...@@ -89,59 +92,42 @@ export default { ...@@ -89,59 +92,42 @@ export default {
.order { .order {
width: 100%; width: 100%;
height: 100%; height: 100%;
padding: 0 45px; padding: 0 30px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
} }
.goback { .goback {
width: 141px; width: 94px;
height: 51px; height: 34px;
position: absolute; position: absolute;
top: 45px; top: 30px;
left: 0; left: 0;
cursor: pointer; cursor: pointer;
font-size: 21px; font-size: 14px;
color: #666666; color: #666666;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 2px solid #707070; border: 1px solid #707070;
text-align: center; text-align: center;
line-height: 51px; line-height: 34px;
} }
.order_top { .order_top {
height: 132px; height: 88px;
width: 100%; width: 100%;
position: relative; position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; height: 486px;
}
.auth_content {
width: 100%;
background: #ffffff;
border-radius: 14px;
height: 100%;
padding: 30px;
box-sizing: border-box;
}
.auth_top {
width: 100%;
display: flex;
height: 50px;
align-items: center;
justify-content: space-between !important;
} }
.auth_title { .auth_title {
...@@ -152,7 +138,7 @@ export default { ...@@ -152,7 +138,7 @@ export default {
.auth_body { .auth_body {
width: 100%; width: 100%;
height: 100%; height: 100%;
padding-top: 36px; padding-top: 24px;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -164,14 +150,14 @@ export default { ...@@ -164,14 +150,14 @@ export default {
} }
.auth_img { .auth_img {
width: 580px; width: 387px;
height: 431px; height: 287px;
} }
.auth_center_right { .auth_center_right {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-top: 60px; margin-top: 30px;
} }
.auth_img_left { .auth_img_left {
...@@ -183,17 +169,17 @@ export default { ...@@ -183,17 +169,17 @@ export default {
.auth_right { .auth_right {
display: flex; display: flex;
margin-bottom: 62px; margin-bottom: 49px;
} }
.auth_span { .auth_span {
font-size: 30px; font-size: 20px;
} }
.auth_span_a { .auth_span_a {
color: #666666; color: #666666;
font-size: 24px; font-size: 16px;
margin-top: 15px; margin-top: 10px;
} }
.content_time { .content_time {
...@@ -218,9 +204,9 @@ export default { ...@@ -218,9 +204,9 @@ export default {
height: 50px; height: 50px;
} }
.collection_title { .collection_title {
font-size: 27px; font-size: 18px;
color: #666666; color: #666666;
margin-bottom: 69px; margin-bottom: 46px;
} }
.collection_title span { .collection_title span {
color: #437ae5; color: #437ae5;
......
<template>
<div class="order">
<div class="order_top">
<div class="goback" @click="toBack">返回上一步</div>
<div class="order_title">抓拍人像</div>
</div>
<div class="collection">
<div class="auth_body">
<div class="camer"></div>
<div style="margin-top: 20px">
<el-button type="primary" @click="takephoto">拍照</el-button>
</div>
</div>
<!-- <el-button type="primary" @click="toNext">下一步</el-button> -->
</div>
</div>
</template>
<script>
export default {
data() {
return {
type: 1,
phone: "",
vform: {},
options: [
{
value: "选项1",
label: "黄金糕",
},
{
value: "选项2",
label: "双皮奶",
},
{
value: "选项3",
label: "蚵仔煎",
},
{
value: "选项4",
label: "龙须面",
},
{
value: "选项5",
label: "北京烤鸭",
},
],
};
},
created() {
AppInterface.readIdCard();
},
methods: {
toBack() {
this.$router.go(-1);
},
takephoto() {
AppInterface.openCamera(1);
},
},
};
</script>
<style scoped>
.order {
width: 100%;
height: 100%;
padding: 0 30px;
box-sizing: border-box;
background: #f6f7fb;
border-radius: 14px;
}
.goback {
width: 94px;
height: 34px;
position: absolute;
top: 30px;
left: 0;
cursor: pointer;
font-size: 14px;
color: #666666;
background: #ffffff;
border-radius: 4px;
border: 1px solid #707070;
text-align: center;
line-height: 34px;
}
.order_top {
height: 88px;
width: 100%;
position: relative;
}
.order_title {
font-size: 28px;
color: #000000;
width: 100%;
text-align: center;
line-height: 88px;
}
.collection {
width: 100%;
background: white;
height: 486px;
}
.auth_title {
color: #666666;
font-size: 18px;
}
.auth_body {
width: 100%;
height: 100%;
padding-top: 24px;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
}
.auth_center {
display: flex;
}
.auth_img {
width: 387px;
height: 287px;
}
.auth_center_right {
display: flex;
flex-direction: column;
margin-top: 30px;
}
.auth_img_left {
width: 64px;
height: 12px;
margin-right: 9px;
margin-top: 15px;
}
.auth_right {
display: flex;
margin-bottom: 49px;
}
.auth_span {
font-size: 20px;
}
.auth_span_a {
color: #666666;
font-size: 16px;
margin-top: 10px;
}
.content_time {
width: 50px;
height: 50px;
background: #ffffff;
opacity: 1;
border: 3px solid #5a8ff6;
border-radius: 50%;
text-align: center;
line-height: 50px;
}
::v-deep .el-button {
width: 94px;
height: 34px;
padding: 0;
font-size: 14px;
}
::v-deep .el-button--primary {
height: 50px;
}
.collection_title {
font-size: 18px;
color: #666666;
margin-bottom: 46px;
}
.collection_title span {
color: #437ae5;
}
.camer {
width: 500px;
height: 400px;
background: red;
}
</style>
\ No newline at end of file
...@@ -61,44 +61,44 @@ export default { ...@@ -61,44 +61,44 @@ export default {
.order { .order {
width: 100%; width: 100%;
height: 100%; height: 100%;
padding: 0 45px; padding: 0 30px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
}
.order_top {
height: 132px;
width: 100%;
position: relative;
} }
.goback { .goback {
width: 141px; width: 94px;
height: 51px; height: 34px;
position: absolute; position: absolute;
top: 45px; top: 30px;
left: 0; left: 0;
cursor: pointer; cursor: pointer;
font-size: 21px; font-size: 14px;
color: #666666; color: #666666;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 2px solid #707070; border: 1px solid #707070;
text-align: center; text-align: center;
line-height: 51px; line-height: 34px;
}
.order_top {
height: 88px;
width: 100%;
position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; padding-top: 100px;
padding-top: 150px;
box-sizing: border-box; box-sizing: border-box;
height: 486px;
} }
.collection_info { .collection_info {
display: flex; display: flex;
...@@ -106,34 +106,34 @@ export default { ...@@ -106,34 +106,34 @@ export default {
justify-content: center; justify-content: center;
} }
.collection_info_head { .collection_info_head {
width: 251px; width: 167px;
height: 291px; height: 194px;
margin-right: 60px; margin-right: 40px;
} }
.collection_info_single { .collection_info_single {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 18px; margin-bottom: 12px;
} }
.collection_info_single_title { .collection_info_single_title {
font-size: 30px; font-size: 20px;
color: #333333; color: #333333;
margin-right: 10px; margin-right: 10px;
} }
.collection_info_single_text { .collection_info_single_text {
font-size: 30px; font-size: 20px;
color: #666666; color: #666666;
} }
.collection_bto { .collection_bto {
width: 198px; width: 132px;
height: 75px; height: 50px;
background: #eb9c4e; background: #eb9c4e;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
text-align: center; text-align: center;
line-height: 75px; line-height: 50px;
cursor: pointer; cursor: pointer;
font-size: 27px; font-size: 18px;
color: white; color: white;
margin: 50px auto 0; margin: 56px auto 0;
} }
</style> </style>
\ No newline at end of file
...@@ -35,8 +35,8 @@ ...@@ -35,8 +35,8 @@
v-for="item in peopleList" v-for="item in peopleList"
:key="item.people" :key="item.people"
> >
<img :src="item.selectimg" v-if="select == item.people" /> <img :src="item.selectimg" v-if="select == item.people" class="rooom_left_people_sin_img"/>
<img :src="item.img" v-else /> <img :src="item.img" v-else class="rooom_left_people_sin_img"/>
<div class="rooom_left_people_sin_text"> <div class="rooom_left_people_sin_text">
{{ item.people }} {{ item.people }}
</div> </div>
...@@ -145,39 +145,39 @@ export default { ...@@ -145,39 +145,39 @@ export default {
padding: 0 45px; padding: 0 45px;
box-sizing: border-box; box-sizing: border-box;
background: #f6f7fb; background: #f6f7fb;
border-radius: 21px; border-radius: 14px;
} }
.goback { .goback {
width: 141px; width: 94px;
height: 51px; height: 34px;
position: absolute; position: absolute;
top: 45px; top: 30px;
left: 0; left: 0;
cursor: pointer; cursor: pointer;
font-size: 21px; font-size: 14px;
color: #666666; color: #666666;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 2px solid #707070; border: 1px solid #707070;
text-align: center; text-align: center;
line-height: 51px; line-height: 34px;
} }
.order_top { .order_top {
height: 132px; height: 88px;
width: 100%; width: 100%;
position: relative; position: relative;
} }
.order_title { .order_title {
font-size: 42px; font-size: 28px;
color: #000000; color: #000000;
width: 100%; width: 100%;
text-align: center; text-align: center;
line-height: 132px; line-height: 88px;
} }
.collection { .collection {
width: 100%; width: 100%;
background: white; background: white;
height: 729px; height: 486px;
} }
.collection_top { .collection_top {
width: 100%; width: 100%;
...@@ -188,32 +188,32 @@ export default { ...@@ -188,32 +188,32 @@ export default {
} }
.rooom_left { .rooom_left {
width: 50%; width: 50%;
height: 519px; height: 346px;
padding-left: 45px; padding-left: 30px;
box-sizing: border-box; box-sizing: border-box;
border-right: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0;
} }
.rooom_right { .rooom_right {
flex: 1; flex: 1;
padding: 0 55px; padding: 0 40px;
box-sizing: border-box; box-sizing: border-box;
height: 519px; height: 346px;
} }
.rooom_left_title { .rooom_left_title {
font-size: 24px; font-size: 16px;
color: #666666; color: #666666;
margin-bottom: 25px; margin-bottom: 18px;
} }
.rooom_left_text { .rooom_left_text {
width: 302px; width: 201px;
height: 75px; height: 50px;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 1px solid #e0e0e0; border: 1px solid #e0e0e0;
color: #000; color: #000;
font-size: 27px; font-size: 18px;
padding-left: 24px; padding-left: 16px;
line-height: 75px; line-height: 50px;
box-sizing: border-box; box-sizing: border-box;
} }
.rooom_left_date { .rooom_left_date {
...@@ -221,9 +221,9 @@ export default { ...@@ -221,9 +221,9 @@ export default {
align-items: center; align-items: center;
} }
.rooom_left_img { .rooom_left_img {
width: 75px; width: 50px;
height: 17px; height: 11px;
margin: 0 35px; margin: 0 25px;
} }
.rooom_left_sing { .rooom_left_sing {
margin-bottom: 30px; margin-bottom: 30px;
...@@ -233,20 +233,20 @@ export default { ...@@ -233,20 +233,20 @@ export default {
align-items: center; align-items: center;
} }
.rooom_left_people_sin { .rooom_left_people_sin {
width: 132px; width: 88px;
height: 132px; height: 88px;
display: flex; display: flex;
margin-right: 60px; margin-right: 40px;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background: #ffffff; background: #ffffff;
color: #999999; color: #999999;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 1px solid #e0e0e0; border: 1px solid #e0e0e0;
} }
.rooom_left_people_sin_text { .rooom_left_people_sin_text {
font-size: 21px; font-size: 14px;
margin-top: 10px; margin-top: 10px;
} }
.rooom_right_date { .rooom_right_date {
...@@ -258,8 +258,7 @@ export default { ...@@ -258,8 +258,7 @@ export default {
border: 2px solid #e0e0e0; border: 2px solid #e0e0e0;
} }
::v-deep .vc-day-box-center-center { ::v-deep .vc-day-box-center-center {
width: 107px; height: 50px;
height: 70px;
} }
.rooom_left_people_sin_select { .rooom_left_people_sin_select {
background: #eb9c4e; background: #eb9c4e;
...@@ -267,27 +266,31 @@ export default { ...@@ -267,27 +266,31 @@ export default {
border: none; border: none;
} }
.collection_bto { .collection_bto {
margin: 45px auto 0; margin: 30px auto 0;
width: 198px; width: 132px;
height: 75px; height: 50px;
background: #eb9c4e; background: #eb9c4e;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
text-align: center; text-align: center;
color: white; color: white;
line-height: 75px; line-height: 50px;
font-size: 27px; font-size: 18px;
cursor: pointer; cursor: pointer;
} }
.rooom_left_text_plase { .rooom_left_text_plase {
font-size: 27px; font-size: 18px;
color: #b7b7b7; color: #b7b7b7;
width: 302px; width: 201px;
height: 75px; height:50px;
line-height: 75px; line-height: 50px;
padding-left: 24px; padding-left: 16px;
box-sizing: border-box; box-sizing: border-box;
background: #ffffff; background: #ffffff;
border-radius: 6px 6px 6px 6px; border-radius: 4px;
border: 1px solid #e0e0e0; border: 1px solid #e0e0e0;
} }
.rooom_left_people_sin_img{
width: 16px;
height: 37px;
}
</style> </style>
\ No newline at end of file
...@@ -116,7 +116,7 @@ export default { ...@@ -116,7 +116,7 @@ export default {
.hotel_left { .hotel_left {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 24px; font-size: 16px;
color: white; color: white;
} }
.hotel_right_l { .hotel_right_l {
...@@ -127,15 +127,15 @@ export default { ...@@ -127,15 +127,15 @@ export default {
margin: 0 16px 0 18px; margin: 0 16px 0 18px;
} }
.hotel_right_date { .hotel_right_date {
font-size: 20px; font-size: 13px;
font-weight: 400; font-weight: 400;
} }
.hotel_right_time { .hotel_right_time {
font-size: 45px; font-size: 30px;
font-weight: bold; font-weight: bold;
} }
.hotel_welcome { .hotel_welcome {
margin-top: 83px; margin-top: 68px;
} }
.hotel_welcome_tips1 { .hotel_welcome_tips1 {
font-size: 34px; font-size: 34px;
...@@ -190,7 +190,7 @@ export default { ...@@ -190,7 +190,7 @@ export default {
bottom: 0; bottom: 0;
} }
.hotel_option_icon_h { .hotel_option_icon_h {
height: 111px; height: 71px;
width: 260px; width: 260px;
object-fit: cover; object-fit: cover;
} }
......
const { defineConfig } = require('@vue/cli-service') const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({ module.exports = defineConfig({
transpileDependencies: true transpileDependencies: true,
}) });
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