fix: reset-password

This commit is contained in:
wangdan-fit2cloud 2025-02-06 15:33:17 +08:00
parent 1010de5cfb
commit cad2e3c8c5
3 changed files with 8 additions and 3 deletions

View File

@ -14,14 +14,14 @@ export default {
restoreVersion: 'Restore Version', restoreVersion: 'Restore Version',
restoreCurrentVersion: 'Restore This Version', restoreCurrentVersion: 'Restore This Version',
addComponent: 'Add Component', addComponent: 'Add Component',
public: 'Publish', public: 'Release',
releaseHistory: 'Release History', releaseHistory: 'Release History',
autoSave: 'Auto Save', autoSave: 'Auto Save',
latestRelease: 'Latest Release', latestRelease: 'Latest Release',
copyParam: 'Copy Parameter' copyParam: 'Copy Parameter'
}, },
tip: { tip: {
publicSuccess: 'Published successfully', publicSuccess: 'Successfully',
noData: 'No related results found', noData: 'No related results found',
nameMessage: 'Name cannot be empty!', nameMessage: 'Name cannot be empty!',
onlyRight: 'Only allow connections from the right anchor point', onlyRight: 'Only allow connections from the right anchor point',

View File

@ -109,7 +109,7 @@ export default {
} }
}, },
buttons: { buttons: {
publish: 'Save&Publish', publish: 'Save&Release',
addModel: 'Add Model' addModel: 'Add Model'
}, },
dialog: { dialog: {

View File

@ -41,6 +41,11 @@ export const routes: Array<RouteRecordRaw> = [
name: 'forgot_password', name: 'forgot_password',
component: () => import('@/views/login/forgot-password/index.vue') component: () => import('@/views/login/forgot-password/index.vue')
}, },
{
path: '/reset_password/:code/:email',
name: 'reset_password',
component: () => import('@/views/login/reset-password/index.vue')
},
{ {
path: '/:pathMatch(.*)', path: '/:pathMatch(.*)',
name: '404', name: '404',