Browse Source

发票明细合计行展示样式

jbb 2 years ago
parent
commit
76287414b4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/reportForms/fabric-loss-table.vue

+ 2 - 1
src/views/reportForms/fabric-loss-table.vue

@@ -230,7 +230,8 @@
         >
           <!-- 发票号码明细  -->
           <span slot="invoiceNum" slot-scope="text">
-            <a>{{ text }}</a>
+            <a v-if="text!=='合计'">{{ text }}</a>
+            <span v-else>{{text}}</span>
           </span>
         </a-table>
       </div>