zhuliu 10 mesi fa
parent
commit
4509fcf27f

+ 1 - 1
src/views/project/patentCollection/components/views/Abstract.vue

@@ -60,7 +60,7 @@
                       simpleStatus[patent.simpleStatus] }}</el-tag>
                     <el-tag class="margin-left_10" style="cursor: pointer;" type="primary" effect="plain" size="small" @click="openAddRemark(patent)" v-if="noveltySearch && !noveltyIsRemark(patent)">添加查新标注</el-tag>
                     <el-tag class="margin-left_10" style="cursor: pointer;" type="primary" effect="plain" size="small"  v-if="noveltySearch && noveltyIsRemark(patent)" @click="openAddRemark(patent)">已标注</el-tag>
-                    <div v-if="outside || semanteme" style="display:inline-block;width:300px;margin-left:20px;height:20px" >
+                    <div v-if="(outside&&noveltySearch) || semanteme" style="display:inline-block;width:300px;margin-left:20px;height:20px" >
                       <span v-if="!patent.score || patent.score == 'NaN'" style="font-size:12px;">相关度加载中<i class="el-icon-loading"></i></span>
                       <el-progress v-else style="display:inline-block;width:300px;margin-left:20px;" text-color="#000000" :text-inside="true" :stroke-width="20"  :percentage="patent.score"  :color="customColors" ></el-progress>
                     </div>

+ 1 - 1
src/views/project/patentCollection/components/views/Picture.vue

@@ -28,7 +28,7 @@
           <myTooltip :content="getView(item, 'title')">
             <div class="noWrap" v-html="getView(item, 'title')"></div>
           </myTooltip>
-          <div v-if="outside || semanteme">
+          <div v-if="(outside&&noveltySearch) || semanteme">
             <span>相关度</span><span v-if="!item.score"><i class="el-icon-loading"></i></span><el-progress v-else style="display:inline-block;width:calc(100% - 50px);margin-left:10px;" :text-inside="true" :stroke-width="20"  :percentage="item.score"  :color="customColors" ></el-progress>
           </div>
         </div>

+ 1 - 1
src/views/project/patentCollection/components/views/Table.vue

@@ -99,7 +99,7 @@
           <div v-else v-html="getView(scope.row, item.value, item.type)"></div>
         </template>
       </el-table-column>
-      <el-table-column v-if="outside || semanteme" label="相关度" width="100" fixed="right">
+      <el-table-column v-if="(outside&&noveltySearch) || semanteme" label="相关度" width="100" fixed="right">
         <template slot-scope="scope">
           <el-progress v-if="scope.row.score" :text-inside="true" :stroke-width="20"  :percentage="scope.row.score"  :color="customColors"></el-progress>
           <span v-else style="font-size:12px;">相关度加载中<i class="el-icon-loading"></i></span>