story#7189,回程车小程序司机端-迁移认证页面

This commit is contained in:
2025-09-09 11:00:58 +08:00
parent cebb173ec4
commit 990db65d25
45 changed files with 2377 additions and 2 deletions

View File

@@ -0,0 +1,56 @@
<template>
<div class="button_fixed" :class="{ 'noBg': noBg }">
<div class="button_wrap" @click="clickHandler">
{{title}}
</div>
</div>
</template>
<script>
export default {
name: "fixedButton",
props: {
title: {
type: String,
default: '下一步'
},
noBg: {
type: Boolean,
default: false
}
},
methods: {
clickHandler() {
this.$emit('myClick')
}
}
}
</script>
<style lang="scss" scoped>
.button_fixed {
width: 100%;
background: #F4F5F7;
padding: 20px 0;
box-sizing: border-box;
position: fixed;
bottom: 0;
left: 0;
z-index: 1111;
.button_wrap {
width: calc(100% - 80px);
height: 46px;
background: #354D93;
border-radius: 23px;
margin: 0 auto;
line-height: 46px;
color: #fff;
font-size: 15px;
text-align: center;
}
}
.noBg {
background: none
}
</style>