From 4ca4e5271d03989e41bb5c0d6914a1dec380e47b Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 22 八月 2023 11:08:06 +0800
Subject: [PATCH] 平台端新需求
---
screen_standard/src/components/AppLayout.vue | 25 ++++++++++++-------------
1 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/screen_standard/src/components/AppLayout.vue b/screen_standard/src/components/AppLayout.vue
index 117357e..8bfebbd 100644
--- a/screen_standard/src/components/AppLayout.vue
+++ b/screen_standard/src/components/AppLayout.vue
@@ -27,7 +27,7 @@
<div class="time">{{ tempDate.time }}</div>
<div class="day">{{ `${tempDate.date} ${tempDate.day}` }}</div>
</div>
- <img src="@/assets/img/title_line@2x.png" class="right-line" alt="">
+ <!-- <img src="@/assets/img/title_line@2x.png" class="right-line" alt=""> -->
</div>
</div>
<!-- 'background': `url(${getAssets(item.bgImg)})`, -->
@@ -53,7 +53,8 @@
<script setup>
import { getAssets } from '@/utils'
-import { reactive, toRefs, onMounted } from 'vue';
+import { getDepartmentList } from '@/utils/apis.js'
+import { reactive, toRefs, ref, onMounted } from 'vue';
import { RouterView } from 'vue-router'
const layoutList = [
@@ -70,18 +71,11 @@
time: '',
date: '',
day: ''
- }
+ },
+ comList: []
})
-let { tempCom, isFull, tempDate } = toRefs(data)
-
-const comList = [
- {name: '璞嗙背'},
- {name: '澶х背'},
- {name: '灏忕背'},
- {name: '榛勭背'},
-]
-
+let { tempCom, isFull, tempDate, comList } = toRefs(data)
const selectCom = (item, index) => {
data.tempCom = item
@@ -116,7 +110,12 @@
}
onMounted(() => {
-
+ getDepartmentList(8)
+ .then(res => {
+ data.comList = res
+ data.tempCom = res[0]
+ })
+ .catch(err => {})
const week = ['鏄熸湡涓�', '鏄熸湡浜�', '鏄熸湡涓�', '鏄熸湡鍥�', '鏄熸湡浜�', '鏄熸湡鍏�', '鏄熸湡鏃�',]
setInterval(() => {
let date = new Date()
--
Gitblit v1.9.3