Sprinkler-app/page_user/kefuxq.vue
2024-10-18 17:59:38 +08:00

62 lines
949 B
Vue

<template>
<view>
<u-navbar :is-back="true" title='问题详情' title-color="#000" :border-bottom="false" :background="bgc"
id="navbar">
</u-navbar>
111111
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
active:1,
flag:false
}
},
// 分享到好友(会话)
onShareAppMessage: function() {
return {
title: '绿小能',
path: '/pages/index/index'
}
},
// 分享到朋友圈
onShareTimeline: function() {
return {
title: '绿小能',
query: '',
path: '/pages/index/index'
}
},
onLoad() {
},
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>