mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
chore: optimize the code of workplace; 🌟
This commit is contained in:
parent
82e5955c3b
commit
d91f3a8661
@ -6,7 +6,6 @@ import Antd from 'ant-design-vue'
|
||||
import Viser from 'viser-vue'
|
||||
import '@/mock'
|
||||
import store from './store'
|
||||
import PouchDB from 'pouchdb'
|
||||
import 'animate.css/source/animate.css'
|
||||
import VueI18n from 'vue-i18n'
|
||||
import Plugins from '@/plugins'
|
||||
@ -17,6 +16,8 @@ Vue.use(Antd)
|
||||
Vue.use(VueI18n)
|
||||
Vue.use(Plugins)
|
||||
|
||||
|
||||
|
||||
const i18n = new VueI18n({
|
||||
locale: 'CN',
|
||||
fallbackLocale: 'US',
|
||||
@ -28,10 +29,4 @@ new Vue({
|
||||
store,
|
||||
i18n,
|
||||
render: h => h(App),
|
||||
mounted () {
|
||||
let db = new PouchDB('adminDb')
|
||||
db.get('currUser').then(doc => {
|
||||
this.$store.commit('account/setUser', doc.user)
|
||||
})
|
||||
},
|
||||
}).$mount('#app')
|
||||
|
@ -1,19 +1,11 @@
|
||||
import Mock from 'mockjs'
|
||||
import '@/mock/extend'
|
||||
|
||||
const userDB = Mock.mock({
|
||||
'list|2-10': [
|
||||
{
|
||||
name: '@ADMIN',
|
||||
avatar: '@AVATAR',
|
||||
address: '@CITY',
|
||||
welcome: '@WELCOME',
|
||||
timeFix: '@TIMEFIX',
|
||||
position: '@position'
|
||||
}
|
||||
]
|
||||
}).list
|
||||
|
||||
Mock.mock('/user/current', 'get', () => {
|
||||
return userDB[0]
|
||||
const welcome = Mock.mock({
|
||||
timeFix: '@TIMEFIX',
|
||||
message: '@WELCOME'
|
||||
})
|
||||
|
||||
Mock.mock('/user/welcome', 'get', () => {
|
||||
return welcome
|
||||
})
|
||||
|
@ -5,8 +5,6 @@ const user = Mock.mock({
|
||||
name: '@ADMIN',
|
||||
avatar: '@AVATAR',
|
||||
address: '@CITY',
|
||||
welcome: '@WELCOME',
|
||||
timeFix: '@TIMEFIX',
|
||||
position: '@POSITION'
|
||||
})
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<page-layout :avatar="currUser.avatar">
|
||||
<div slot="headerContent">
|
||||
<div class="title">{{$t('timeFix')}},{{currUser.name}},{{$t('welcome')}}</div>
|
||||
<div>{{$t('position')}}</div>
|
||||
<div class="title">{{welcome.timeFix[lang]}},{{currUser.name}},{{welcome.message[lang]}}</div>
|
||||
<div>{{currUser.position[lang]}}</div>
|
||||
</div>
|
||||
<template slot="extra">
|
||||
<head-info class="split-right" :title="$t('project')" content="56"/>
|
||||
@ -79,10 +79,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PageLayout from '../../../layouts/PageLayout'
|
||||
import HeadInfo from '../../../components/tool/HeadInfo'
|
||||
import Radar from '../../../components/chart/Radar'
|
||||
import PageLayout from '@/layouts/PageLayout'
|
||||
import HeadInfo from '@/components/tool/HeadInfo'
|
||||
import Radar from '@/components/chart/Radar'
|
||||
import {mapState} from 'vuex'
|
||||
import {request, METHOD} from '@/utils/request'
|
||||
|
||||
export default {
|
||||
name: 'WorkPlace',
|
||||
@ -94,53 +95,24 @@ export default {
|
||||
loading: true,
|
||||
activities: [],
|
||||
teams: [],
|
||||
welcome: {
|
||||
timeFix: '',
|
||||
message: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
let user = this.currUser
|
||||
let langList = ['CN', 'HK', 'US']
|
||||
langList.forEach(lang => {
|
||||
this.$i18n.mergeLocaleMessage(lang, {
|
||||
timeFix: user.timeFix[lang],
|
||||
welcome: user.welcome[lang],
|
||||
position: user.position[lang]
|
||||
})
|
||||
})
|
||||
},
|
||||
computed: {
|
||||
...mapState('account', {currUser: 'user'})
|
||||
...mapState('account', {currUser: 'user'}),
|
||||
...mapState('setting', ['lang'])
|
||||
},
|
||||
mounted () {
|
||||
this.getProjectList()
|
||||
this.getActivites()
|
||||
this.getTeams()
|
||||
},
|
||||
methods: {
|
||||
getProjectList () {
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/project'
|
||||
}).then(res => {
|
||||
beforeCreate() {
|
||||
request('/user/welcome', METHOD.GET).then(res => this.welcome = res.data)
|
||||
request('/work/activity', METHOD.GET).then(res => this.activities = res.data)
|
||||
request('/work/team', METHOD.GET).then(res => this.teams = res.data)
|
||||
request('/project', METHOD.GET).then(res => {
|
||||
this.projects = res.data
|
||||
this.loading = false
|
||||
})
|
||||
},
|
||||
getActivites () {
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/work/activity'
|
||||
}).then(res => {
|
||||
this.activities = res.data
|
||||
})
|
||||
},
|
||||
getTeams () {
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/work/team'
|
||||
}).then(res => {
|
||||
this.teams = res.data
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -2,12 +2,21 @@ import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import account from './modules/account'
|
||||
import setting from './modules/setting'
|
||||
import PouchDB from 'pouchdb'
|
||||
|
||||
const db = new PouchDB('adminDb')
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
||||
export default new Vuex.Store({
|
||||
const store = new Vuex.Store({
|
||||
modules: {
|
||||
account,
|
||||
setting
|
||||
}
|
||||
})
|
||||
// 读取用户信息
|
||||
db.get('currUser')
|
||||
.then(doc => store.commit('account/setUser', doc.user))
|
||||
.catch(() => {})
|
||||
|
||||
export default store
|
||||
|
@ -5,7 +5,12 @@ let db = new PouchDB('adminDb')
|
||||
export default {
|
||||
namespaced: true,
|
||||
state: {
|
||||
user: {}
|
||||
user: {
|
||||
name: '',
|
||||
avatar: '',
|
||||
position: '',
|
||||
address: ''
|
||||
}
|
||||
},
|
||||
mutations: {
|
||||
setUser (state, user) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user