|
@@ -27,8 +27,8 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="relateCompanyList" :label="$t('basic.assProducer')" sortable>
|
|
<el-table-column prop="relateCompanyList" :label="$t('basic.assProducer')" sortable>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span class="info" v-for="(item, index) in scope.row.relateCompanyList">
|
|
|
|
- {{item.companyName}}
|
|
|
|
|
|
+ <span class="info" v-for="(item1, index) in scope.row.relateCompanyList" :key="index">
|
|
|
|
+ <span v-if="item1 != null">{{item1.companyName}}</span>
|
|
<span v-if="index != scope.row.relateCompanyList.length-1">、</span>
|
|
<span v-if="index != scope.row.relateCompanyList.length-1">、</span>
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</template>
|