2 커밋 c3181f6b07 ... 92f08a5de2

작성자 SHA1 메시지 날짜
  imengyu 92f08a5de2 🔧 修改列表搜索不生效问题 3 주 전
  imengyu 1bd544c690 🔧 同级别非遗显示增加地区 3 주 전
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 4 1
      src/components/content/CommonListBlock.vue
  2. 1 4
      src/pages/details/intangible.vue

+ 4 - 1
src/components/content/CommonListBlock.vue

@@ -348,7 +348,10 @@ function loadDropValues() {
 onMounted(() => {
   setTimeout(() => {
     loadDropValues();
-  }, 400);
+  }, 600);
+})
+watch(route, () => {
+  loadDropValues();
 })
 
 defineExpose({

+ 1 - 4
src/pages/details/intangible.vue

@@ -31,10 +31,6 @@
             value: content.unit 
           },
           {
-            label: '保护单位',
-            value: content.unit 
-          },
-          {
             label: '其他级别项目',
             value: content.otherLevel && content.otherLevel.length > 0 ? `${content.otherLevel.length}个` : ''
           },
@@ -54,6 +50,7 @@
               {{ item.levelText }}
             </div>
             <span class="ms-2">{{ item.title }}</span>
+            <span v-if="item.regionText" class="ms-2">({{ item.regionText }})</span>
           </div>
           >
         </NuxtLink>