Merge branch 'main' of http://18.167.251.121:10003/aidlab/lanecarford_front
All checks were successful
git提交控制 AiDA WEB-Node.js main 分支构建部署 / build (20.19.0) (push) Has been skipped

This commit is contained in:
2025-12-01 15:00:24 +08:00
4 changed files with 25 additions and 46 deletions

View File

@@ -71,21 +71,3 @@ html:root {
padding: 0 2rem;
min-height: fit-content;
}
.general_button {
border-radius: 0.7rem;
border: 3px solid #000;
background-color: #000;
text-align: center;
color: #fff;
font-family: satoshiMedium;
}
.general_button.smail {
font-size: 3.6rem;
width: 24.6rem;
line-height: 6.7rem;
}
.general_button.big {
font-size: 3.8rem;
line-height: 7.4rem;
width: 3.4rem;
}

View File

@@ -83,21 +83,3 @@ html:root {
min-height: fit-content;
}
.general_button{
border-radius: .7rem;
border: 3px solid #000;
background-color: #000;
text-align: center;
color: #fff;
font-family: satoshiMedium;
&.smail{
font-size: 3.6rem;
width: 24.6rem;
line-height: 6.7rem;
}
&.big{
font-size: 3.8rem;
line-height: 7.4rem;
width: 3.4rem;
}
}

View File

@@ -151,7 +151,7 @@ const { isLoading } = toRefs(data);
</div>
<div class="again">
<!-- <div @click="changeModel">Change Model</div> -->
<button @click="onContinue" class="general_button smail" style="margin-left: auto;">Continue</button>
<button @click="onContinue" style="margin-left: auto;">Continue</button>
</div>
</div>
</div>
@@ -261,8 +261,16 @@ const { isLoading } = toRefs(data);
margin-top: 4.4rem;
display: flex;
justify-content: center;
> div{
margin-right: 3.9rem;
> button{
border-radius: .7rem;
border: 3px solid #000;
background-color: #000;
text-align: center;
color: #fff;
font-family: satoshiMedium;
font-size: 3.6rem;
width: 24.6rem;
line-height: 6.7rem;
&:last-child{
margin-right: 0;
}

View File

@@ -121,11 +121,11 @@ const { styleList, select } = toRefs(data);
<div class="selectContent">
<SelectItem :selectList="styleList" v-model:select="select" @selectItem="selectItem" @updateStyle="updateStyle" />
</div>
<div class="footer">
<button @click.stop="toProduct">Continue</button>
</div>
</div>
<!-- <div class="footer placeholder"></div> -->
<div class="footer">
<button class="general_button smail" @click.stop="toProduct">Continue</button>
</div>
<footer-navigation is-placeholder />
</template>
<style lang="less" scoped>
@@ -144,7 +144,7 @@ const { styleList, select } = toRefs(data);
> .text{
text-align: center;
width: 100%;
margin-top: 3.4rem;
margin-top: 3rem;
margin-bottom: 4.9rem;
> .title{
font-family: satoshiBold;
@@ -161,14 +161,12 @@ const { styleList, select } = toRefs(data);
}
.selectContent{
padding: 0 4rem;
flex: 1;
overflow: auto;
}
}
.footer {
// position: fixed;
bottom: 0;
left: 0;
margin-top: 4.4rem;
display: flex;
align-items: center;
justify-content: flex-end;
@@ -178,6 +176,15 @@ const { styleList, select } = toRefs(data);
}
> button {
margin-right: 5rem;
border-radius: .7rem;
border: 3px solid #000;
background-color: #000;
text-align: center;
color: #fff;
font-family: satoshiMedium;
font-size: 3.6rem;
width: 24.6rem;
line-height: 6.7rem;
}
}
</style>