chore: optimize the code of workplace; 🌟

This commit is contained in:
chenghongxing 2020-07-20 18:11:13 +08:00
parent 82e5955c3b
commit d91f3a8661
6 changed files with 42 additions and 71 deletions

View File

@ -6,7 +6,6 @@ import Antd from 'ant-design-vue'
import Viser from 'viser-vue' import Viser from 'viser-vue'
import '@/mock' import '@/mock'
import store from './store' import store from './store'
import PouchDB from 'pouchdb'
import 'animate.css/source/animate.css' import 'animate.css/source/animate.css'
import VueI18n from 'vue-i18n' import VueI18n from 'vue-i18n'
import Plugins from '@/plugins' import Plugins from '@/plugins'
@ -17,6 +16,8 @@ Vue.use(Antd)
Vue.use(VueI18n) Vue.use(VueI18n)
Vue.use(Plugins) Vue.use(Plugins)
const i18n = new VueI18n({ const i18n = new VueI18n({
locale: 'CN', locale: 'CN',
fallbackLocale: 'US', fallbackLocale: 'US',
@ -28,10 +29,4 @@ new Vue({
store, store,
i18n, i18n,
render: h => h(App), render: h => h(App),
mounted () {
let db = new PouchDB('adminDb')
db.get('currUser').then(doc => {
this.$store.commit('account/setUser', doc.user)
})
},
}).$mount('#app') }).$mount('#app')

View File

@ -1,19 +1,11 @@
import Mock from 'mockjs' import Mock from 'mockjs'
import '@/mock/extend' import '@/mock/extend'
const userDB = Mock.mock({ const welcome = Mock.mock({
'list|2-10': [
{
name: '@ADMIN',
avatar: '@AVATAR',
address: '@CITY',
welcome: '@WELCOME',
timeFix: '@TIMEFIX', timeFix: '@TIMEFIX',
position: '@position' message: '@WELCOME'
} })
]
}).list Mock.mock('/user/welcome', 'get', () => {
return welcome
Mock.mock('/user/current', 'get', () => {
return userDB[0]
}) })

View File

@ -5,8 +5,6 @@ const user = Mock.mock({
name: '@ADMIN', name: '@ADMIN',
avatar: '@AVATAR', avatar: '@AVATAR',
address: '@CITY', address: '@CITY',
welcome: '@WELCOME',
timeFix: '@TIMEFIX',
position: '@POSITION' position: '@POSITION'
}) })

View File

@ -1,8 +1,8 @@
<template> <template>
<page-layout :avatar="currUser.avatar"> <page-layout :avatar="currUser.avatar">
<div slot="headerContent"> <div slot="headerContent">
<div class="title">{{$t('timeFix')}}{{currUser.name}}{{$t('welcome')}}</div> <div class="title">{{welcome.timeFix[lang]}}{{currUser.name}}{{welcome.message[lang]}}</div>
<div>{{$t('position')}}</div> <div>{{currUser.position[lang]}}</div>
</div> </div>
<template slot="extra"> <template slot="extra">
<head-info class="split-right" :title="$t('project')" content="56"/> <head-info class="split-right" :title="$t('project')" content="56"/>
@ -79,10 +79,11 @@
</template> </template>
<script> <script>
import PageLayout from '../../../layouts/PageLayout' import PageLayout from '@/layouts/PageLayout'
import HeadInfo from '../../../components/tool/HeadInfo' import HeadInfo from '@/components/tool/HeadInfo'
import Radar from '../../../components/chart/Radar' import Radar from '@/components/chart/Radar'
import {mapState} from 'vuex' import {mapState} from 'vuex'
import {request, METHOD} from '@/utils/request'
export default { export default {
name: 'WorkPlace', name: 'WorkPlace',
@ -94,53 +95,24 @@ export default {
loading: true, loading: true,
activities: [], activities: [],
teams: [], 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: { computed: {
...mapState('account', {currUser: 'user'}) ...mapState('account', {currUser: 'user'}),
...mapState('setting', ['lang'])
}, },
mounted () { beforeCreate() {
this.getProjectList() request('/user/welcome', METHOD.GET).then(res => this.welcome = res.data)
this.getActivites() request('/work/activity', METHOD.GET).then(res => this.activities = res.data)
this.getTeams() request('/work/team', METHOD.GET).then(res => this.teams = res.data)
}, request('/project', METHOD.GET).then(res => {
methods: {
getProjectList () {
this.$axios({
method: 'get',
url: '/project'
}).then(res => {
this.projects = res.data this.projects = res.data
this.loading = false 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> </script>

View File

@ -2,12 +2,21 @@ import Vue from 'vue'
import Vuex from 'vuex' import Vuex from 'vuex'
import account from './modules/account' import account from './modules/account'
import setting from './modules/setting' import setting from './modules/setting'
import PouchDB from 'pouchdb'
const db = new PouchDB('adminDb')
Vue.use(Vuex) Vue.use(Vuex)
export default new Vuex.Store({ const store = new Vuex.Store({
modules: { modules: {
account, account,
setting setting
} }
}) })
// 读取用户信息
db.get('currUser')
.then(doc => store.commit('account/setUser', doc.user))
.catch(() => {})
export default store

View File

@ -5,7 +5,12 @@ let db = new PouchDB('adminDb')
export default { export default {
namespaced: true, namespaced: true,
state: { state: {
user: {} user: {
name: '',
avatar: '',
position: '',
address: ''
}
}, },
mutations: { mutations: {
setUser (state, user) { setUser (state, user) {