old.vue 713 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view>
  3. <view class="content">
  4. <view class="title">
  5. 当前井下人员
  6. </view>
  7. <view class="inner">
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. }
  19. </script>
  20. <style lang="scss">
  21. .content{
  22. margin-top: 16rpx;
  23. background: #FFFFFF;
  24. box-shadow: 0px 3rpx 29rpx 0px rgba(59, 74, 116, 0.14);
  25. border-radius: 20rpx;
  26. .title{
  27. line-height: 96rpx;
  28. text-align: center;
  29. font-size: 30rpx;
  30. font-family: PingFangSC-Regular, PingFang SC;
  31. font-weight: 400;
  32. color: #232627;
  33. border-bottom: 2rpx solid #f3f3f3;
  34. }
  35. .inner{
  36. height: 200rpx;
  37. }
  38. }
  39. </style>