Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
ufo-app-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
TaoHuang
6 years ago
Commit
650a2941899284c71f8bd34dcffcb02409281a4d
1 parent
63890f79
fix
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
apps/pages/single/invite/detail-list.vue
apps/pages/single/invite/detail/components/record-list.vue
apps/pages/single/invite/index.js
apps/pages/single/invite/detail-list.vue
View file @
650a294
<template>
<div>
</div>
<LayoutApp :title="title">
</LayoutApp>
</template>
<script>
import LayoutApp from '../components/layout/layout-app';
export default {
name: 'DetailListPage'
name: 'DetailListPage',
components: {
LayoutApp
},
data() {
return {
title: '全部佣金'
};
}
};
</script>
...
...
apps/pages/single/invite/detail/components/record-list.vue
View file @
650a294
...
...
@@ -57,7 +57,9 @@ export default {
},
methods: {
goDetail() {
console.log('huangtao');
this.$router.push({
name: 'detailListPage'
});
}
}
};
...
...
apps/pages/single/invite/index.js
View file @
650a294
...
...
@@ -5,6 +5,6 @@ export default [{
component
:
()
=>
import
(
/* webpackChunkName: "invite" */
'./invite'
),
},
{
path
:
'/mapp/invite/detailList.html'
,
name
:
'
D
etailListPage'
,
name
:
'
d
etailListPage'
,
component
:
()
=>
import
(
/* webpackChunkName: "invite" */
'./detail-list'
),
}];
...
...
Please
register
or
login
to post a comment