CarRental/page_user/tips.vue

33 lines
552 B
Vue
Raw Normal View History

2024-09-30 18:02:38 +08:00
<template>
<view class="page">
2025-01-06 11:51:31 +08:00
<u-navbar title="帮助中心 " :border-bottom="false" :background="background" title-color='#000' title-size='36' height='45' back-icon-color='#000'></u-navbar>
2024-09-30 18:02:38 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uCCHcZsflexApimAoHRS" mode=""></image>
</view>
</template>
<script>
export default {
data() {
return {
background: {
backgroundColor: "#fff",
},
}
},
methods: {
}
}
</script>
2025-01-06 11:51:31 +08:00
2024-09-30 18:02:38 +08:00
<style lang="scss">
.page{
image{
width: 750rpx;
height: 1994rpx;
}
}
</style>