33 lines
554 B
Vue
33 lines
554 B
Vue
|
<template>
|
||
|
<view class="page">
|
||
|
<u-navbar title="温馨提示 " :border-bottom="false" :background="background" title-color='#000' title-size='36'
|
||
|
height='45' back-icon-color='#000'></u-navbar>
|
||
|
<image src="https://lxnapi.ccttiot.com/bike/img/static/uCCHcZsflexApimAoHRS" mode=""></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
background: {
|
||
|
backgroundColor: "#fff",
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
.page{
|
||
|
image{
|
||
|
width: 750rpx;
|
||
|
height: 1994rpx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|