選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

51 行
705 B

  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. data() {
  10. return {}
  11. },
  12. computed: {},
  13. watch: {},
  14. created() {
  15. },
  16. methods: {}
  17. }
  18. </script>
  19. <style lang="scss">
  20. #app {
  21. width: 100%;
  22. height: 100%;
  23. overflow: hidden;
  24. }
  25. .el-tooltip__popper {
  26. max-width: 300px;
  27. }
  28. .nulllist{
  29. width: 100%;
  30. height: 350px;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. .imgboxc{
  35. width: 100%;
  36. text-align: center;
  37. .imgboxc-img{
  38. width: 118px;
  39. height: 118px;
  40. }
  41. .nulltext{
  42. width: 100%;
  43. text-align: center;
  44. color: #999999;
  45. font-size: 14px;
  46. }
  47. }
  48. }
  49. </style>