wangfumin 2 дней назад
Родитель
Сommit
f49c3c97ce
1 измененных файлов с 4 добавлено и 3 удалено
  1. 4 3
      src/views/tagging/index.vue

+ 4 - 3
src/views/tagging/index.vue

@@ -114,7 +114,7 @@ const exposeTagging = async () => {
       tagging.audioName = item.name;
     }
 
-    console.log(item);
+    console.log('item11111111', item);
     if (item.dictId && item.useType === "trace_evidence") {
       const typeId = getStyleTypeId(item.dictId);
       const styles = taggingStyles.value.filter((item) => item.typeId === typeId);
@@ -125,9 +125,10 @@ const exposeTagging = async () => {
       const styles = taggingStyles.value.filter(
         (item) => item.typeId === defStyleType.id
       );
-      console.log(defStyleType);
       if (styles.length) {
-        tagging.styleId = styles[0].id;
+        // 火调这里特殊,默认图片是11
+        // tagging.styleId = styles[0].id;
+        tagging.styleId = styles[11].id;
       }
     }
     return tagging;