mSettingScan.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <script setup lang="ts">
  2. import {defineComponent} from "vue";
  3. import {MusicScanSetting} from "@/types/musicType.ts";
  4. import EmptyView from "@/components/public/emptyView.vue";
  5. defineComponent({
  6. name: 'm-setting-scan'
  7. })
  8. const scanSetting: MusicScanSetting[] = [];
  9. scanSetting.push({
  10. name: '默认配置',
  11. isFileRepeat: true,
  12. path: 'D:\\music',
  13. scanSubDir: true,
  14. })
  15. scanSetting.push({
  16. name: '默认配置',
  17. isFileRepeat: true,
  18. path: 'D:\\music',
  19. scanSubDir: true,
  20. })
  21. scanSetting.push({
  22. name: '默认配置',
  23. isFileRepeat: true,
  24. path: 'D:\\music',
  25. scanSubDir: true,
  26. })
  27. scanSetting.push({
  28. name: '默认配置',
  29. isFileRepeat: true,
  30. path: 'D:\\music',
  31. scanSubDir: true,
  32. })
  33. scanSetting.push({
  34. name: '默认配置',
  35. isFileRepeat: true,
  36. path: 'D:\\music',
  37. scanSubDir: true,
  38. })
  39. </script>
  40. <template>
  41. <div class="full scroll">
  42. <div class="btn-group">
  43. <div class="btn">创建扫描配置</div>
  44. </div>
  45. <div class="scan-view scroll">
  46. <empty-view v-if="scanSetting.length === 0"/>
  47. <div class="scan-item" v-for="(item,index) in scanSetting" :key="index">
  48. <div class="scan-title">
  49. {{ item.name }}
  50. </div>
  51. <div class="scan-content">
  52. <div class="scan-item-content">{{ item.path }}</div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </template>
  58. <style scoped>
  59. .btn-group{
  60. width: 100%;
  61. height: 50px;
  62. box-sizing: border-box;
  63. padding: 0 20px;
  64. justify-content: flex-start;
  65. }
  66. .btn{
  67. background-color: var(--color-btn-bg);
  68. color: var(--color-btn-text);
  69. box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  70. }
  71. .btn:hover{
  72. box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  73. background-color: var(--color-btn-bg-hover);
  74. color: var(--color-btn-text-hover);
  75. }
  76. .btn:active{
  77. box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  78. background-color: var(--color-btn-bg-active);
  79. color: var(--color-btn-text-active);
  80. }
  81. .scan-view{
  82. width: 100%;
  83. height: calc(100% - 60px);
  84. }
  85. .scan-item{
  86. width: calc(100% - 40px);
  87. height: 120px;
  88. border-radius: 1rem;
  89. margin: 20px auto 0;
  90. box-sizing: border-box;
  91. padding: 5px 10px;
  92. background-color: var(--color-background-mute);
  93. }
  94. .scan-item .scan-title{
  95. width: 100%;
  96. height: 30px;
  97. font-size: 1.2rem;
  98. font-weight: bold;
  99. }
  100. </style>