vue+elementui 表格循环遍历,点击模块跳转对应的表格页。其它表格显示数据,有一个表格数据不显示,但接口数据已返还
点击不显示模块弹出
回答
tableList在data里面是数组吗 在模板里面添加v-if="tableList.length"试试
返回的数组里面有name?你是如何使用这个name的?
<el-table-column prop="name" label="图片" width="120"> <template slot-scope="scope">
<div>{{scope.row.xxx.name}}</div>
</template>
</el-table-column>
如果有类似上面的代码请修改为:
<el-table-column prop="name" label="图片" width="120"> <template slot-scope="scope">
<div>{{scope.row.xxx&&scope.row.xxx.name}}</div>
</template>
</el-table-column>
以上是 vue+elementui 表格循环遍历,点击模块跳转对应的表格页。其它表格显示数据,有一个表格数据不显示,但接口数据已返还 的全部内容, 来源链接: utcz.com/a/49213.html