smartswrtch-app/page_fenbao/statulist/about/index.vue

102 lines
1.8 KiB
Vue
Raw Normal View History

2024-05-10 17:37:36 +08:00
<template>
<view class="page">
2024-05-21 18:02:34 +08:00
<u-navbar title="关于我们" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
2024-06-03 16:47:25 +08:00
height='50'></u-navbar>
2024-05-10 17:37:36 +08:00
<view class="box">
<view class="title">
2024-05-11 13:33:17 +08:00
{{obj.title}}
2024-05-10 17:37:36 +08:00
</view>
2024-05-11 13:33:17 +08:00
<view class="js" v-html="obj.content">
2024-05-10 17:37:36 +08:00
</view>
2024-05-11 13:33:17 +08:00
<!--
2024-05-10 17:37:36 +08:00
<view class="nav_bom">
2024-05-11 13:33:17 +08:00
</view> -->
2024-05-10 17:37:36 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
2024-05-11 13:33:17 +08:00
obj:{}
2024-05-10 17:37:36 +08:00
}
},
2024-05-11 13:33:17 +08:00
onLoad() {
this.getabout()
},
2024-05-10 17:37:36 +08:00
methods: {
2024-05-11 13:33:17 +08:00
getabout(){
let type = 'about'
this.$u.get(`/app/article/licence/${type}`).then((res) => {
if (res.code == 200) {
this.obj= res.data
}
})
}
2024-05-10 17:37:36 +08:00
}
}
</script>
<style lang="scss">
2024-05-24 16:48:42 +08:00
/deep/ .u-title{
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
/deep/ .u-icon__icon{
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-05-10 17:37:36 +08:00
page {
background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
}
.page {
width: 750rpx;
2024-07-12 18:13:59 +08:00
// position: fixed;
// top: 0;
// left: 0;
overflow: hidden;
2024-05-10 17:37:36 +08:00
.box{
width: 750rpx;
height: 1440rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
padding: 40rpx 34rpx;
box-sizing: border-box;
2024-07-12 18:13:59 +08:00
overflow: scroll;
2024-05-10 17:37:36 +08:00
.title{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
}
.tit{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
margin-top: 32rpx;
}
.nav_top{
width: 680rpx;
height: 322rpx;
background: #EEEEEE;
border-radius: 0rpx 0rpx 0rpx 0rpx;
margin: auto;
margin-top: 32rpx;
}
.js{
font-size: 28rpx;
color: #3D3D3D;
margin-top: 32rpx;
}
.nav_bom{
width: 680rpx;
height: 322rpx;
background: #EEEEEE;
border-radius: 0rpx 0rpx 0rpx 0rpx;
margin: auto;
margin-top: 32rpx;
}
}
}
</style>