fix row key duplicate

This commit is contained in:
Revantant 2019-07-17 16:55:08 +08:00
parent 40e6ec5b6a
commit ea153c1a54
2 changed files with 11 additions and 2 deletions

View File

@ -19,6 +19,14 @@ const mapAsyncRoutes = asyncRoutes => {
return tmp return tmp
}) })
} }
const mapRouteId = routes => {
return routes.map(route => {
const tmp = { ...route }
tmp.id = Math.random()
tmp.children && tmp.children.length && (tmp.children = mapRouteId(tmp.children))
return tmp
})
}
const asyncRoutesMap = mapAsyncRoutes(asyncRoutes) const asyncRoutesMap = mapAsyncRoutes(asyncRoutes)
export { asyncRoutesMap as routes } export { asyncRoutesMap as routes }
@ -30,7 +38,7 @@ export default [
response: _ => { response: _ => {
return { return {
code: 20000, code: 20000,
data: asyncRoutesMap data: mapRouteId(asyncRoutesMap)
} }
} }
}, },

View File

@ -2,7 +2,7 @@
<div class="app-container"> <div class="app-container">
<el-button type="primary" style="margin:0 0 20px 0;" @click="handleImport">Import Routes</el-button> <el-button type="primary" style="margin:0 0 20px 0;" @click="handleImport">Import Routes</el-button>
<el-table :data="routes" style="width: 100%;margin-bottom: 20px;" border row-key="path"> <el-table :data="routes" style="width: 100%;margin-bottom: 20px;" border row-key="id">
<el-table-column v-for="key in keys" :key="key" :prop="key" :label="key" sortable> <el-table-column v-for="key in keys" :key="key" :prop="key" :label="key" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row[key] }}</span> <span>{{ scope.row[key] }}</span>
@ -35,6 +35,7 @@ export default {
}) })
}, },
handleImport() { handleImport() {
console.log(JSON.stringify(routes))
Route.importRoutes({ routes }).then(res => { Route.importRoutes({ routes }).then(res => {
this.$message({ this.$message({
type: 'success', type: 'success',