Przeglądaj źródła

【销售政策列表---选择指定商家的时候建议显示经销商编码,并可以通过经销商编码进行搜索】
https://www.tapd.cn/69216019/prong/stories/view/1169216019001004341

zhouhao 2 lat temu
rodzic
commit
cdfca90b1c

+ 6 - 0
src/views/sales_policy/components/TabelTransfer.vue

@@ -64,6 +64,7 @@
               ><template slot-scope="scope">
                 <CopyButton :copy-text="scope.row.name" />
                 <span>{{ scope.row.name }}</span>
+                <span class="red">{{scope.row.number}}</span>
               </template>
             </el-table-column>
           </el-table>
@@ -113,6 +114,7 @@
               <template slot-scope="scope">
                 <CopyButton :copy-text="scope.row.customerName" />
                 <span>{{ scope.row.customerName }}</span>
+                <span class="red">{{scope.row.customerNumber}}</span>
               </template>
             </el-table-column>
           </el-table>
@@ -745,4 +747,8 @@ export default {
   display: flex;
   align-items: center;
 }
+.red{
+
+  color: #f00;
+}
 </style>