9030dbdaff8fdcc46509f8515e32d725b8066593.svn-base 458 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div>
  3. <div class="cont">
  4. <span>此选择项目没有任何盘口</span>
  5. </div>
  6. </div>
  7. </template>
  8. <style scoped>
  9. .cont{
  10. width: 100%;
  11. height: 1rem;
  12. background: #fff;
  13. line-height: 1rem;
  14. text-align: center;
  15. font-size: 0.24rem;
  16. }
  17. .cont:hover{
  18. background: #fff5e9;
  19. }
  20. </style>
  21. <script>
  22. export default {
  23. }
  24. </script>