123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view>
- <view class="content">
- <view class="title">
- 当前井下人员
- </view>
- <view class="inner">
-
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
-
- }
- </script>
- <style lang="scss">
- .content{
- margin-top: 16rpx;
- background: #FFFFFF;
- box-shadow: 0px 3rpx 29rpx 0px rgba(59, 74, 116, 0.14);
- border-radius: 20rpx;
- .title{
- line-height: 96rpx;
- text-align: center;
-
-
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #232627;
-
- border-bottom: 2rpx solid #f3f3f3;
- }
- .inner{
- height: 200rpx;
- }
- }
- </style>
|