smartswrtch-app/page_fenbao/statulist/about/index.vue
2024-05-10 19:51:14 +08:00

95 lines
2.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page">
<u-navbar title="关于我们" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='38'></u-navbar>
<view class="box">
<view class="title">
微信小程序
</view>
<view class="nav_top">
</view>
<view class="tit">
微信小程序
</view>
<view class="js">
微信小程序微信小程序微信小程序微信小程序微信小 微信小程序微信小程序微信小程序微信小程序微信小程 微信小程序微信小程序微信小程序微信小程序微信小程 序微信小程序微信小程序微信小程序
</view>
<view class="js">
微信小程序微信小程序微信小程序微信小程序微信小 微信小程序微信小程序微信小程
</view>
<view class="js">
微信小程序微信小程序微信小程序微信小程序微信小 微信小程序微信小程序微信小程微信小程序微信小程序 微信小程序微信小程序
</view>
<view class="nav_bom">
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss">
page {
background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
}
.page {
width: 750rpx;
position: fixed;
top: 0;
left: 0;
.box{
width: 750rpx;
height: 1440rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
padding: 40rpx 34rpx;
box-sizing: border-box;
.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>