45 lines
630 B
Vue
45 lines
630 B
Vue
<template>
|
|
<view>
|
|
<u-navbar :is-back="true" :title='tit' title-color="#000" :border-bottom="false" :background="bgc"
|
|
id="navbar">
|
|
</u-navbar>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: "#fff",
|
|
},
|
|
tit:''
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
this.tit = option.tit
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
/deep/ .u-title{
|
|
margin-bottom: 22rpx;
|
|
}
|
|
/deep/ .uicon-nav-back{
|
|
margin-bottom: 22rpx;
|
|
}
|
|
page{
|
|
width: 100%;
|
|
padding: 20rpx 30rpx;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
}
|
|
|
|
|
|
</style> |