|
@@ -12,7 +12,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="container">
|
|
<div class="hor-head">
|
|
<div class="hor-head">
|
|
- <pageHead />
|
|
|
|
|
|
+ <pageHead @toplay="toplay" @tostop="tostop" @nextpage="nextpage" @lastpage="lastpage"/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
class="hor-content firstScreen flexBetween"
|
|
class="hor-content firstScreen flexBetween"
|
|
@@ -42,6 +42,7 @@
|
|
screenType="hor"
|
|
screenType="hor"
|
|
:showPing="nowPage"
|
|
:showPing="nowPage"
|
|
@donetowpage="doneTowPage"
|
|
@donetowpage="doneTowPage"
|
|
|
|
+ ref="floorSpace"
|
|
></HorFloorSpace>
|
|
></HorFloorSpace>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@@ -64,7 +65,7 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
-import { ref, reactive, toRefs, onMounted, computed } from "vue";
|
|
|
|
|
|
+import { ref, reactive, toRefs, onMounted, computed ,nextTick} from "vue";
|
|
import pageHead from "@/components/pageHead.vue";
|
|
import pageHead from "@/components/pageHead.vue";
|
|
import NowData from "@/components/NowData.vue";
|
|
import NowData from "@/components/NowData.vue";
|
|
import LastMonthData from "@/components/LastMonthData.vue";
|
|
import LastMonthData from "@/components/LastMonthData.vue";
|
|
@@ -93,6 +94,7 @@ export default {
|
|
LastSaveEnergy: LastSaveEnergy,
|
|
LastSaveEnergy: LastSaveEnergy,
|
|
},
|
|
},
|
|
setup() {
|
|
setup() {
|
|
|
|
+ const floorSpace = ref();
|
|
const projectStore = useProjectStore();
|
|
const projectStore = useProjectStore();
|
|
var showAllPage = computed(() => {
|
|
var showAllPage = computed(() => {
|
|
console.log(
|
|
console.log(
|
|
@@ -110,7 +112,7 @@ export default {
|
|
});
|
|
});
|
|
// projectStore.$subscribe((mutation, state) => {
|
|
// projectStore.$subscribe((mutation, state) => {
|
|
// console.log(
|
|
// console.log(
|
|
- // "projectStore--state",
|
|
|
|
|
|
+ // "projectStore--state1",
|
|
// state,
|
|
// state,
|
|
// state.lastAllEnergy.energySaving
|
|
// state.lastAllEnergy.energySaving
|
|
// );
|
|
// );
|
|
@@ -118,36 +120,110 @@ export default {
|
|
|
|
|
|
const allData = reactive({
|
|
const allData = reactive({
|
|
nowPage: 1,
|
|
nowPage: 1,
|
|
|
|
+ timeoutsign:null,
|
|
//showAllPage: 3,
|
|
//showAllPage: 3,
|
|
- doneTowPage() {
|
|
|
|
- //debugger;
|
|
|
|
- //第二屏刷新结束 通知
|
|
|
|
- if (showAllPage.value == 3) {
|
|
|
|
- allData.nowPage = 3;
|
|
|
|
- } else if (showAllPage.value == 2) {
|
|
|
|
|
|
+ toplay(){
|
|
|
|
+ //todo
|
|
|
|
+ // if(allData.nowPage==2){
|
|
|
|
+ // floorSpace.value&&floorSpace.value.toplay();//第二屏动画播放
|
|
|
|
+ // }else{
|
|
|
|
+ // allData.timePageShow(500);
|
|
|
|
+ // }
|
|
|
|
+ allData.timePageShow(500);
|
|
|
|
+ },
|
|
|
|
+ tostop(){
|
|
|
|
+ //todo
|
|
|
|
+ // if(allData.nowPage==2){
|
|
|
|
+ // floorSpace.value&&floorSpace.value.tostop();//第二屏动画暂停
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ clearTimeout(allData.timeoutsign);
|
|
|
|
+ },
|
|
|
|
+ nextpage(){
|
|
|
|
+ //allData.nowPage = allData.nowPage + 1;
|
|
|
|
+ if (allData.nowPage == 3) {
|
|
|
|
+ allData.nowPage = 1;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ if (allData.nowPage == 1) {
|
|
|
|
+ allData.nowPage = 2;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ if (allData.nowPage == 2) {
|
|
|
|
+ if (showAllPage.value == 3) {
|
|
|
|
+ allData.nowPage = 3;
|
|
|
|
+ } else if (showAllPage.value == 2) {
|
|
|
|
+ allData.nowPage = 1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ lastpage(){
|
|
|
|
+ if (allData.nowPage == 3) {
|
|
|
|
+ allData.nowPage = 2;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ if (allData.nowPage == 2) {
|
|
allData.nowPage = 1;
|
|
allData.nowPage = 1;
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
- allData.timePageShow();
|
|
|
|
|
|
+ if (allData.nowPage == 1) {
|
|
|
|
+ if (showAllPage.value == 3) {
|
|
|
|
+ allData.nowPage = 3;
|
|
|
|
+ } else if (showAllPage.value == 2) {
|
|
|
|
+ allData.nowPage = 2;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
},
|
|
},
|
|
- timePageShow() {
|
|
|
|
- var timeoutsign = setTimeout(() => {
|
|
|
|
- allData.nowPage = allData.nowPage + 1;
|
|
|
|
- if (allData.nowPage == 4) {
|
|
|
|
|
|
+ doneTowPage() {
|
|
|
|
+ if(projectStore.stopSign){
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ //第二屏刷新结束 通知
|
|
|
|
+ allData.timePageShow(500);
|
|
|
|
+ },
|
|
|
|
+ timePageShow(time) {
|
|
|
|
+ allData.timeoutsign = setTimeout(() => {
|
|
|
|
+ if(projectStore.stopSign){
|
|
|
|
+ //clearTimeout(allData.timeoutsign);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // allData.nowPage = allData.nowPage + 1;
|
|
|
|
+ if (allData.nowPage == 3) {
|
|
allData.nowPage = 1;
|
|
allData.nowPage = 1;
|
|
|
|
+ console.log('allData.nowPage3',allData.nowPage,time);
|
|
|
|
+ allData.timePageShow(7000);//3屏变1屏时,预订下一次的切屏
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
- if (allData.nowPage == 2) {
|
|
|
|
- clearTimeout(timeoutsign);
|
|
|
|
|
|
+ if (allData.nowPage == 1) {
|
|
|
|
+ allData.nowPage = 2;
|
|
|
|
+ console.log('allData.nowPage1',allData.nowPage,time);
|
|
|
|
+ //clearTimeout(allData.timeoutsign);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- allData.timePageShow();
|
|
|
|
- }, 6000);
|
|
|
|
|
|
+ if (allData.nowPage == 2) {
|
|
|
|
+ if (showAllPage.value == 3) {
|
|
|
|
+ allData.nowPage = 3;
|
|
|
|
+ } else if (showAllPage.value == 2) {
|
|
|
|
+ allData.nowPage = 1;
|
|
|
|
+ }
|
|
|
|
+ console.log('allData.nowPage2',allData.nowPage,time);
|
|
|
|
+ allData.timePageShow(7000);//2屏变3屏 或 2屏变1屏时,预订下一次的切屏
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }, time);
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
});
|
|
});
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
- allData.timePageShow();
|
|
|
|
|
|
+ //console.log("horiscreen-mounted");
|
|
|
|
+ allData.timePageShow(7000);
|
|
|
|
+
|
|
});
|
|
});
|
|
return {
|
|
return {
|
|
- ...toRefs(allData),
|
|
|
|
|
|
+ ...toRefs(allData),floorSpace
|
|
};
|
|
};
|
|
},
|
|
},
|
|
};
|
|
};
|