|
- <template>
- <view>
- </view>
- </template>
- <script>
- //app.js
- var config = require("./config");
- export default {
- onLaunch: function(options) {},
-
- onShow(options) {
-
- },
- onHide() {},
- methods: {
-
- }
- };
- </script>
-
- <style>
- @import "./app.css";
- </style>
- <style lang="scss">
- @import "uview-ui/index.scss";
- /*每个页面公共css */
- //图表样式等
- .single{
- width: 100%;
- background: #FFFFFF;
- .title{
- width: 100%;
- height: 90rpx;
- border-bottom: 1rpx solid #E0E0E0;
- display: flex;
- .title1{
- flex: 2;
- font-size: 30rpx;
- font-weight: 600;
- color: #333333;
- line-height: 90rpx;
- text-indent: 30rpx;
- }
- .title3{
- flex: 3;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- .title3-box{
- display: flex;
- align-items: center;
- width: 25%;
- justify-content: center;
- .activecltab{
- border-bottom: 2px solid #2671E2;
- }
- }
- }
- .title2{
- flex: 3;
- height: 90rpx;
- display: flex;
- align-items: center;
- .title2-che{
- width: 178rpx;
- height: 48rpx;
- background: #FFFFFF;
- border-radius: 6rpx;
- border: 1px solid #E0E0E0;
- line-height: 48rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #666666;
- text-indent: 12rpx;
- margin-left: 35rpx;
- position: relative;
- .righttochoose{
- width: 18rpx;
- height: 24rpx;
- position: absolute;
- top: 12rpx;
- right: 12rpx;
- }
- }
- }
- }
- .swiper-box{
- width: 97%;
- margin: 0 auto;
- }
- .hejibox{
- width: 100%;
- height: 80rpx;
- display: flex;
- .heji{
- width: 50%;
- height: 100%;
- font-size: 28rpx;
- font-weight: 400;
- color: #666666;
- line-height: 80rpx;
- text-indent: 30rpx;
- }
- }
- .danwei{
- width: 100%;
- height: 40rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 40rpx;
- text-indent: 30rpx;
- }
- .uchaserbox{
- width: 100%;
- height: 470rpx;
- }
- .jindu{
- width: 100%;
- height: 300rpx;
- .jindu-box{
- width: 100%;
- padding-left: 30rpx;
- padding-right: 30rpx;
- .jindu-boxche{
- width: 100%;
- height: 46rpx;
- display: flex;
- align-items: center;
- height: 50rpx;
- .jindu-name{
- width: 120rpx;
- font-size: 28rpx;
- color: #666666;
- }
- .jindu-zxl{
- width: 120rpx;
- font-size: 26rpx;
- margin-left: 16rpx;
- color: #666666;
- text-align: center;
- }
- }
- }
- }
- }
- //时间切换的样式
- .boxtittab {
- width: 100;
- height: 92rpx;
- background: #FFFFFF;
- border: 1px solid #E0E0E0;
- display: flex;
- align-items: center;
-
- .tabbox {
- flex: 1;
- height: 100%;
- text-align: center;
- line-height: 92rpx;
- color: #666666;
- font-size: 28rpx;
- display: flex;
- justify-content: center;
-
- .activecllasscet {
- width: 96rpx;
- border-bottom: 2px solid #2671E2;
- }
- }
- }
- //多个格子的样式
- .boxzonglan {
- width: 100%;
- min-height: 496rpx;
- background: #FFFFFF;
- padding: 30rpx 30rpx 30rpx 30rpx;
- .zonglantit {
- font-size: 30rpx;
- color: #333333;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- }
- .zonglanbox {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- margin-top: 24rpx;
- .grid {
- width: 50%;
- height: 128rpx;
- border: 1px solid #E0E0E0;
- .audonum {
- color: #666666;
- text-indent: 40rpx;
- font-size: 26rpx;
- margin-top: 20rpx;
- }
- .num {
- color: #333333;
- text-indent: 40rpx;
- font-size: 32rpx;
- font-weight: 600;
- margin-top: 10rpx;
- }
- }
- }
- }
- </style>
|