<el-table-column v-for="(item, index) in tableColumns" :key="index" :prop="item.prop" :label="item.label" :min-width="item.width"> <template slot-scope="scope"> <span v-if="index == 2"> {{scope.row.attachment ? scope.row.attachment : scope.row.url}} </span> <span v-else> {{scope.row[item.prop]}} </span> </template> </el-table-column>