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; padding: 0 2rem;
min-height: fit-content; 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; 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>
<div class="again"> <div class="again">
<!-- <div @click="changeModel">Change Model</div> --> <!-- <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> </div>
</div> </div>
@@ -261,8 +261,16 @@ const { isLoading } = toRefs(data);
margin-top: 4.4rem; margin-top: 4.4rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
> div{ > button{
margin-right: 3.9rem; 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{ &:last-child{
margin-right: 0; margin-right: 0;
} }

View File

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