You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.6 KiB

5 months ago
5 months ago
  1. import { NavBar, SpinLoading } from 'antd-mobile';
  2. import './Bluetooth.scss';
  3. export default function Bluetooth() {
  4. return (
  5. <div>
  6. <NavBar className="bg-white" back={null}>
  7. </NavBar>
  8. <div className="home-page-content overflow-x-hidden overflow-y-auto">
  9. <section>
  10. <div className="h-[42px] px-5">
  11. <h1 className="h-[42px] leading-[42px] text-base text-text font-medium"></h1>
  12. </div>
  13. <div className="bg-white px-5 text-sm text-text">
  14. <div className="h-12 flex justify-between items-center border-b border-[#eee]">
  15. <span></span>
  16. <span></span>
  17. </div>
  18. <div className="h-12 flex justify-between items-center border-b border-[#eee]">
  19. <span></span>
  20. <span></span>
  21. </div>
  22. </div>
  23. </section>
  24. <section>
  25. <div className="h-[42px] px-5 flex items-center justify-between">
  26. <h1 className="h-[42px] leading-[42px] text-base text-text font-medium"></h1>
  27. <SpinLoading />
  28. </div>
  29. <div className="bg-white px-5 text-sm text-text">
  30. <div className="h-12 flex justify-between items-center border-b border-[#eee]">
  31. <span>1</span>
  32. </div>
  33. <div className="h-12 flex justify-between items-center border-b border-[#eee]">
  34. <span>2</span>
  35. </div>
  36. </div>
  37. </section>
  38. </div>
  39. </div>
  40. );
  41. }