From e37485d41550b3e7e22423875d31401a8470e0b7 Mon Sep 17 00:00:00 2001 From: Mr.Zhang <710666463@qq.com> Date: 星期二, 22 八月 2023 11:14:43 +0800 Subject: [PATCH] 公共数据 --- screen_standard/src/components/AppLayout.vue | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/screen_standard/src/components/AppLayout.vue b/screen_standard/src/components/AppLayout.vue index 8bfebbd..bcf8abb 100644 --- a/screen_standard/src/components/AppLayout.vue +++ b/screen_standard/src/components/AppLayout.vue @@ -55,8 +55,9 @@ import { getAssets } from '@/utils' import { getDepartmentList } from '@/utils/apis.js' import { reactive, toRefs, ref, onMounted } from 'vue'; +import { useCounterStore } from '@/stores/counter.js' import { RouterView } from 'vue-router' - +const enterprise = useCounterStore() const layoutList = [ { bgImg: 'bg_zhixingzhong@2x.png', name: '鎵ц涓鍒掓暟(涓�)', logo: 'ic_zhixingzhong@2x.png' }, { bgImg: 'bg_yanqijihua@2x.png', name: '寤舵湡璁″垝鏁�(涓�)', logo: 'ic_yanqijihua@2x.png' }, @@ -64,6 +65,7 @@ { bgImg: 'bg_jinrishebei@2x.png', name: '浠婃棩鐢熶骇璁惧(鍙�)', logo: 'ic_jinrishebei@2x.png' }, { bgImg: 'bg_jinribuliang@2x.png', name: '浠婃棩涓嶈壇鍝佺巼(%)', logo: 'ic_jinribuliang@2x.png' }, ] + const data = reactive({ tempCom: { name: '璞嗙背绉戞妧' }, isFull: false, @@ -78,7 +80,9 @@ let { tempCom, isFull, tempDate, comList } = toRefs(data) const selectCom = (item, index) => { + console.log(item); data.tempCom = item + enterprise.setDepartId(data.tempCom.id) } const fullChange = () => { @@ -110,10 +114,11 @@ } onMounted(() => { - getDepartmentList(8) + getDepartmentList(enterprise.companyId) .then(res => { data.comList = res data.tempCom = res[0] + enterprise.setDepartId(data.tempCom.id) }) .catch(err => {}) const week = ['鏄熸湡涓�', '鏄熸湡浜�', '鏄熸湡涓�', '鏄熸湡鍥�', '鏄熸湡浜�', '鏄熸湡鍏�', '鏄熸湡鏃�',] -- Gitblit v1.9.3