| 1234567891011121314151617181920212223242526 |
- <template>
- <div>
- <div class="cont">
- <span>此选择项目没有任何盘口</span>
- </div>
- </div>
- </template>
- <style scoped>
- .cont{
- width: 100%;
- height: 1rem;
- background: #fff;
- line-height: 1rem;
- text-align: center;
- font-size: 0.24rem;
- }
- .cont:hover{
- background: #fff5e9;
- }
- </style>
- <script>
- export default {
-
- }
- </script>
|