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
Plain Diff
Browse Files
Authored by
TaoHuang
6 years ago
Commit
17f47bbe2e3da4df57a0a687e8fd0465400a2d62
2 parents
23d64f82
b78555e9
Merge remote-tracking branch 'origin/feature/invite' into feature/invite
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
10 deletions
apps/pages/single/mine/bank-card/card-list.vue
apps/pages/single/mine/bank-card/components/cards.vue
apps/pages/single/mine/bank-card/index.js
apps/pages/single/mine/bank-card/card-list.vue
View file @
17f47bb
...
...
@@ -9,9 +9,6 @@ import LayoutApp from '../../components/layout/layout-app';
import Cards from './components/cards';
export default {
asyncData({store}) {
return store.dispatch('mine/bankCard/fetchBankCard');
},
name: 'cardList',
mounted() {
this.$refs.cards.init();
...
...
apps/pages/single/mine/bank-card/components/cards.vue
View file @
17f47bb
...
...
@@ -29,9 +29,6 @@ import {Scroll} from 'cube-ui';
const {mapState, mapActions} = createNamespacedHelpers('mine/bankCard');
export default {
mounted() {
this.init();
},
methods: {
...mapActions(['fetchBankCard']),
init() {
...
...
@@ -92,7 +89,7 @@ export default {
.card-id {
font-size: 32px;
padding-right: 30px;
margin:
46px 0 4
0px;
margin:
60px 0 5
0px;
display: flex;
justify-content: space-between;
letter-spacing: 2px;
...
...
@@ -100,7 +97,7 @@ export default {
.num {
font-size: 40px;
position: relative;
top: -
6
px;
top: -
10
px;
}
}
...
...
apps/pages/single/mine/bank-card/index.js
View file @
17f47bb
export
default
[{
path
:
'/mapp/mine/ufo/bankcard.html'
,
name
:
'bankcard'
,
component
:
()
=>
import
(
/* webpackChunkName: "
bankcard
" */
'./card-list'
)
component
:
()
=>
import
(
/* webpackChunkName: "
invite
" */
'./card-list'
)
},{
path
:
'/mapp/mine/ufo/bankcard/add'
,
name
:
'bankcard.add'
,
component
:
()
=>
import
(
/* webpackChunkName: "
bankcard
" */
'./card-add'
)
component
:
()
=>
import
(
/* webpackChunkName: "
invite
" */
'./card-add'
)
}];
...
...
Please
register
or
login
to post a comment