1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| /**
| * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
| */
| export default {
| common: {
| title: 'pigx-app',
| },
| nav: {
| home: '工作台',
| user: '用户',
| log: '日志',
| chat: '聊天',
| },
| login: {
| title: '登录',
| placeholderAccount: '请输入账号',
| placeholderMobile: '请输入手机号',
| placeholderPassword: '请输入密码',
| autoLogin: '自动登录',
| loginButton: '登 录',
| vxLoginButton: '微信一键登录',
| logoutButton: '退出登录',
| forget: '忘记密码',
| reg: '注册账号',
| noLogin: '未登录'
| },
| home: {
| title: '工作台'
| },
| user: {
| title: '用户中心'
| },
| log: {
| title: '日志'
| }
| }
|
|