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,44 @@
<template>
<div class="tip_content" :style="styleCls">
<img class="icon_tip" mode="widthFix" src="@/assets/authentication/icon_tip.png" />
<span>{{title}}</span>
</div>
</template>
<script>
export default {
name: "tipBar",
props: {
title: {
type: String,
default: ''
},
styleCls: {
type: String,
default: ''
}
}
}
</script>
<style lang="scss" scoped>
.tip_content{
width: 100%;
box-sizing: border-box;
padding: 10px 22px;
line-height: 15px;
background: #FFF0EE;
.icon_tip{
width: 13px;
height: 13px;
margin-right: 6px;
position: relative;
margin-bottom: -3px;
}
span{
font-size: 11px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #FF6337;
}
}
</style>