changed upload to upload-user-bankslip

This commit is contained in:
Jack Goh
2018-06-13 22:17:01 +08:00
parent fde70b744f
commit c0b9e446d5
2 changed files with 9 additions and 3 deletions
@@ -35,7 +35,9 @@
<div align="center">
<el-button type="submit">Submit</el-button>
<el-button type="text">Upload Later</el-button>
<router-link :to="{ name: 'home' }" class="small ml-auto my-auto">
Upload Later
</router-link>
</div>
</el-main>
@@ -72,6 +74,10 @@ export default {
},
startTimer () {
this.start = true
},
uploadLater(){
}
}
}
+2 -2
View File
@@ -6,7 +6,7 @@ const PasswordReset = () => import('~/pages/auth/password/reset').then(m => m.de
const NotFound = () => import('~/pages/errors/404').then(m => m.default || m)
const Home = () => import('~/pages/home').then(m => m.default || m)
const Upload = () => import('~/pages/upload').then(m => m.default || m)
const Upload = () => import('~/pages/bookings/uploadUserBankSlip').then(m => m.default || m)
const Settings = () => import('~/pages/settings/index').then(m => m.default || m)
const SettingsProfile = () => import('~/pages/settings/profile').then(m => m.default || m)
const SettingsPassword = () => import('~/pages/settings/password').then(m => m.default || m)
@@ -22,7 +22,7 @@ export default [
{ path: '/password/reset/:token', name: 'password.reset', component: PasswordReset },
{ path: '/home', name: 'home', component: Home },
{ path: '/upload', name: 'upload', component: Upload },
{ path: '/upload-user-bankslip', name: 'upload', component: Upload },
{ path: '/settings',
component: Settings,
children: [