d98a8767 by 杨威

错误日志

1 parent 1c138e2d
......@@ -25,9 +25,9 @@
</div>
<el-dialog title="错误日志" :visible.sync="outerVisible">
<div v-for="item in errorLog">
{{item.name}}
{{item.value}}
<div v-for="(item,index) in errorLog" :key="index">
<span> {{item.name}}</span> <br/>
<span> {{item.value}}</span>
</div>
</el-dialog>
......