|
@@ -128,7 +128,7 @@ export default {
|
|
|
if (col.type === 'content') {
|
|
|
col.path = `/info/detail?id=${col.content_id}`;
|
|
|
} else if (col.type !== 'url') {
|
|
|
- col.path = `/info/list/${col.id}`;
|
|
|
+ col.path = `/newsList/${col.id}`;
|
|
|
}
|
|
|
}
|
|
|
return columns;
|
|
@@ -173,10 +173,10 @@ export default {
|
|
|
let columns = result.data;
|
|
|
for (const col of columns) {
|
|
|
if (col.type === `bugList`) {
|
|
|
- col.path = `/info/list/${col.content_id}`;
|
|
|
+ col.path = `/newsList/${col.content_id}`;
|
|
|
col.children = await this.completeColumn(col);
|
|
|
} else if (col.type === `column`) {
|
|
|
- col.path = `/info/list/${col.id}`;
|
|
|
+ col.path = `/newsList/${col.id}`;
|
|
|
col.children = await this.completeColumn(col);
|
|
|
} else if (col.type === `content`) {
|
|
|
col.path = `/info/detail?id=${col.content_id}`;
|