2021-12-23 10:00:27 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<!-- 头部导航 start -->
|
|
|
|
|
<div class="header-box">
|
|
|
|
|
<!-- logo -->
|
|
|
|
|
<div class="logo-box">
|
|
|
|
|
<div class="logo">
|
2022-01-08 17:37:07 +08:00
|
|
|
|
<img v-if="logoImg!=''" :src="logoImg" style="object-fit: cover;">
|
|
|
|
|
<div style="display: flex;flex-direction: column;">
|
|
|
|
|
<span style="font-size: 33.8px;">都江堰市机关幼儿园</span>
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<span style="font-size: 18.1px;">DU JANG YAN JI GUAN YOU ER YUAN</span>
|
2022-01-08 17:37:07 +08:00
|
|
|
|
</div>
|
2021-12-23 10:00:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 文本导航 -->
|
|
|
|
|
<div class="title-box">
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<div class="title-item" :class="activeIndex==index?activeTitle:''" v-for="(item,index) in titleArr"
|
2021-12-23 10:00:27 +08:00
|
|
|
|
:key="index" @click="chooseTitle(index)">{{item}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 天气 -->
|
|
|
|
|
<div class="weather-box">
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<img :src="weather || '../../static/weather/5.png'" style="margin-right: 10px;">
|
2021-12-23 10:00:27 +08:00
|
|
|
|
<div>
|
|
|
|
|
<div style="color: #FF9393;">{{date}}</div>
|
|
|
|
|
<div class="weather-three">
|
|
|
|
|
<div>{{temperature}}</div>
|
|
|
|
|
<div>{{time}}</div>
|
|
|
|
|
<div>{{week}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 功能图标 -->
|
2021-12-26 12:04:11 +08:00
|
|
|
|
<div><img @click="clickFun" src="../../static/img/home/icon-set.png"></div>
|
2021-12-23 10:00:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
<!-- 头部导航 end -->
|
2022-02-16 09:32:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-23 10:00:27 +08:00
|
|
|
|
<!-- 首页 -->
|
|
|
|
|
<homepage v-if="activeIndex==0"></homepage>
|
|
|
|
|
<!-- 幼儿园介绍 -->
|
|
|
|
|
<kindIntroduction v-if="activeIndex==1"></kindIntroduction>
|
|
|
|
|
<!-- 宝宝活动 -->
|
|
|
|
|
<babyActivity v-if="activeIndex==2"></babyActivity>
|
|
|
|
|
<!-- 出勤详情 -->
|
|
|
|
|
<attendanceDetail v-if="activeIndex==3"></attendanceDetail>
|
|
|
|
|
<!-- 宝宝相册 -->
|
|
|
|
|
<babyAlbum v-if="activeIndex==4"></babyAlbum>
|
|
|
|
|
<!-- 疫情管理 -->
|
|
|
|
|
<yiqingmanagement v-if="activeIndex==5"></yiqingmanagement>
|
2022-02-16 09:32:13 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-23 10:00:27 +08:00
|
|
|
|
<!-- 底部 -->
|
|
|
|
|
<div class="footer">
|
2021-12-26 12:04:11 +08:00
|
|
|
|
<img src="../../static/img/home/foot-icon.png">
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<img v-if="activeIndex==1" src="../../static/img/kindergartenIntroduce/chahua-01.png">
|
2021-12-26 12:04:11 +08:00
|
|
|
|
<img v-if="activeIndex==2" src="../../static/img/home/baby-foot.png">
|
|
|
|
|
<img v-if="activeIndex==3" src="../../static/img/attendancedetail/chah.png">
|
|
|
|
|
<img v-if="activeIndex==4 || activeIndex==5" src="../../static/img/babyalbum/chah.png">
|
2021-12-23 10:00:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
<!-- 网络弹框 -->
|
|
|
|
|
<div v-if="isNetwork" class="popu-box">
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<div class="item-row">班排设备ID:{{classCardId}}</div>
|
2021-12-23 10:00:27 +08:00
|
|
|
|
<div class="item-row">网络链接状态:网络监测({{onLine?'已连接':'已断开'}})<img v-if="onLine"
|
2021-12-26 12:04:11 +08:00
|
|
|
|
src="../../static/img/home/icon-link.png" style="width: 20px;"></div>
|
2021-12-23 10:00:27 +08:00
|
|
|
|
<div class="item-row">
|
|
|
|
|
<span style="flex-shrink: 0;">班牌显示模式:</span>
|
|
|
|
|
<div class="mode-box">
|
2022-01-03 16:38:59 +08:00
|
|
|
|
<div :class="'new'+index" v-for="(item,index) in modeArr" :key="index" @click="chooseMode(index)">
|
2021-12-23 10:00:27 +08:00
|
|
|
|
<div class="radio-box">
|
|
|
|
|
<span v-if="item.isActive"></span>
|
|
|
|
|
</div>
|
|
|
|
|
{{item.title}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-row">
|
|
|
|
|
控制操作:
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<div class="refresh-btn" @click="refreshEv">刷新</div>
|
2021-12-24 09:56:55 +08:00
|
|
|
|
<div class="back-btn" @click="backHomeEv">返回首页</div>
|
2021-12-23 10:00:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-02-16 09:32:13 +08:00
|
|
|
|
<img v-if="wellcomeFlag" @click="closeWellcome" src="../../static/img/babyalbum/wellcome-baby.png"
|
|
|
|
|
class="wellcome-img">
|
|
|
|
|
<!-- <div style="position: fixed;background-color: rgba(0,0,0,.5);top: 120px;left: 0;right: 0;bottom: 0;z-index: 10000;">
|
|
|
|
|
<img style="width: 100px;height: 100px;object-fit: cover;" src="https://qqbaby-creating.oss-cn-beijing.aliyuncs.com/1.jpg" >
|
|
|
|
|
<img style="width: 100px;height: 100px;object-fit: cover;" src="https://qqbaby-creating.oss-cn-beijing.aliyuncs.com/2.jpg" >
|
|
|
|
|
<img style="width: 100px;height: 100px;object-fit: cover;" src="https://qqbaby-creating.oss-cn-beijing.aliyuncs.com/3.jpg" >
|
|
|
|
|
</div> -->
|
2021-12-23 10:00:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
// 首页
|
|
|
|
|
import homepage from '@/components/homepage.vue';
|
|
|
|
|
// 幼儿园介绍
|
|
|
|
|
import kindIntroduction from '@/components/kindIntroduction.vue';
|
|
|
|
|
// 宝宝活动
|
|
|
|
|
import babyActivity from '@/components/babyActivity.vue';
|
|
|
|
|
// 出勤详情
|
|
|
|
|
import attendanceDetail from '@/components/attendanceDetail.vue';
|
|
|
|
|
// 宝宝相册
|
|
|
|
|
import babyAlbum from '@/components/babyAlbum.vue';
|
|
|
|
|
// 疫情管理
|
|
|
|
|
import yiqingmanagement from '@/components/yiqingmanagement.vue';
|
|
|
|
|
export default {
|
2022-02-16 09:32:13 +08:00
|
|
|
|
components: {
|
2021-12-23 10:00:27 +08:00
|
|
|
|
homepage,
|
|
|
|
|
kindIntroduction,
|
|
|
|
|
babyActivity,
|
|
|
|
|
attendanceDetail,
|
|
|
|
|
babyAlbum,
|
|
|
|
|
yiqingmanagement
|
|
|
|
|
},
|
2021-12-23 14:40:42 +08:00
|
|
|
|
name: 'v-header',
|
2021-12-23 10:00:27 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
titleArr: ['首页', '幼儿园介绍', '宝宝活动', '出勤详情', '宝宝相册', '疫情防控'],
|
2021-12-23 10:00:27 +08:00
|
|
|
|
activeIndex: 0,
|
2022-02-16 09:32:13 +08:00
|
|
|
|
cunIndex: 0,
|
2021-12-23 10:00:27 +08:00
|
|
|
|
modeArr: [{
|
2022-01-03 16:38:59 +08:00
|
|
|
|
isActive: false,
|
2021-12-23 10:00:27 +08:00
|
|
|
|
title: '欢迎模式'
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-01-03 16:38:59 +08:00
|
|
|
|
isActive: true,
|
2021-12-23 10:00:27 +08:00
|
|
|
|
title: '班牌模式'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
isActive: false,
|
|
|
|
|
title: '大数据模式'
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-02-16 09:32:13 +08:00
|
|
|
|
modeIndex: '-1',
|
|
|
|
|
wellcomeFlag: false, //欢迎模式
|
2021-12-23 10:00:27 +08:00
|
|
|
|
onLine: navigator.onLine,
|
|
|
|
|
list: [],
|
|
|
|
|
city: '',
|
|
|
|
|
date: '', //2021-12-19
|
|
|
|
|
week: '', //星期几
|
|
|
|
|
temperature: '', //天气温度
|
|
|
|
|
time: '', //当前时间
|
|
|
|
|
timer: null,
|
2022-02-16 09:32:13 +08:00
|
|
|
|
currentTemper: 1, //
|
2021-12-23 10:00:27 +08:00
|
|
|
|
activeTitle: 'activeTitle',
|
2022-02-16 09:32:13 +08:00
|
|
|
|
isNetwork: false,
|
|
|
|
|
weather: '',
|
|
|
|
|
OrgGuid: '',
|
|
|
|
|
logoImg: '',
|
|
|
|
|
classCardId: '',
|
|
|
|
|
infoObj: '',
|
|
|
|
|
name: '',
|
|
|
|
|
ver: 0,
|
2022-04-02 20:11:25 +08:00
|
|
|
|
s: '',
|
|
|
|
|
newwidth:document.body.clientWidth,
|
|
|
|
|
newheight:document.body.clientHeight
|
2021-12-23 10:00:27 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2022-04-02 20:11:25 +08:00
|
|
|
|
// metaInfo: {
|
|
|
|
|
// title: "页面标题",
|
|
|
|
|
// meta: [
|
|
|
|
|
// { name: "keywords", content: "页面关键字" },
|
|
|
|
|
// { name: "description", content: "页面描述" },
|
|
|
|
|
// ],
|
|
|
|
|
// },
|
2021-12-23 10:00:27 +08:00
|
|
|
|
methods: {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
// 关闭欢迎模式
|
2022-02-16 09:32:13 +08:00
|
|
|
|
closeWellcome() {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.wellcomeFlag = false;
|
|
|
|
|
this.modeIndex = 2;
|
|
|
|
|
this.clearChoose();
|
|
|
|
|
},
|
2021-12-23 10:00:27 +08:00
|
|
|
|
// 选择班牌显示模式
|
|
|
|
|
chooseMode(e) {
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.onLine) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.modeArr.forEach(item => {
|
|
|
|
|
item.isActive = false
|
|
|
|
|
})
|
|
|
|
|
this.modeArr[e].isActive = true;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (e == 0) {
|
|
|
|
|
this.modeIndex = 1;
|
|
|
|
|
this.wellcomeFlag = true;
|
|
|
|
|
}
|
|
|
|
|
if (e == 1) {
|
|
|
|
|
this.modeIndex = 2;
|
|
|
|
|
this.wellcomeFlag = false;
|
|
|
|
|
}
|
|
|
|
|
if (e == 2) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.modeIndex = 4;
|
|
|
|
|
this.wellcomeFlag = false;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
window.open(`http://47.108.248.86:56688/`,'_blank');
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
|
|
|
|
this.isNetwork = false;
|
|
|
|
|
this.updatemodelapiEv();
|
2022-02-16 09:32:13 +08:00
|
|
|
|
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
|
|
|
|
|
var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
|
|
|
|
|
var isEdge = userAgent.indexOf("Edge") > -1 && !isIE; //判断是否IE的Edge浏览器
|
|
|
|
|
var isIE11 = userAgent.indexOf('Trident') > -1 && userAgent.indexOf("rv:11.0") > -1;
|
|
|
|
|
if (isIE) {
|
|
|
|
|
console.log(isIE);
|
|
|
|
|
var reIE = new RegExp("MSIE (\\d+\\.\\d+);");
|
|
|
|
|
reIE.test(userAgent);
|
|
|
|
|
var fIEVersion = parseFloat(RegExp["$1"]);
|
|
|
|
|
if (fIEVersion == 7) {
|
|
|
|
|
return 7;
|
|
|
|
|
} else if (fIEVersion == 8) {
|
|
|
|
|
return 8;
|
|
|
|
|
} else if (fIEVersion == 9) {
|
|
|
|
|
return 9;
|
|
|
|
|
} else if (fIEVersion == 10) {
|
|
|
|
|
return 10;
|
|
|
|
|
} else {
|
|
|
|
|
return 6; //IE版本<=7
|
|
|
|
|
}
|
|
|
|
|
} else if (isEdge) {
|
|
|
|
|
return 'edge'; //edge
|
|
|
|
|
} else if (isIE11) {
|
|
|
|
|
return 11; //IE11
|
|
|
|
|
} else {
|
|
|
|
|
return -1; //不是ie浏览器
|
|
|
|
|
}
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
2021-12-23 10:00:27 +08:00
|
|
|
|
},
|
|
|
|
|
// 导航切换
|
|
|
|
|
chooseTitle(e) {
|
2021-12-24 09:56:55 +08:00
|
|
|
|
this.cunIndex = this.activeIndex = e;
|
2021-12-23 10:00:27 +08:00
|
|
|
|
e == 0 ? this.activeTitle = 'activeTitle' : this.activeTitle = 'activeTitle2';
|
|
|
|
|
},
|
|
|
|
|
// 网络状态
|
2022-01-03 20:35:54 +08:00
|
|
|
|
updateOnlineStatus(e) {
|
|
|
|
|
const {
|
|
|
|
|
type
|
|
|
|
|
} = e;
|
|
|
|
|
this.onLine = type === 'online';
|
|
|
|
|
if (this.onLine) {
|
|
|
|
|
this.refreshEv();
|
|
|
|
|
this.weatherEv();
|
|
|
|
|
this.isNetwork = false;
|
|
|
|
|
} else {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
// this.isNetwork = true;
|
2022-01-03 20:35:54 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2021-12-23 10:00:27 +08:00
|
|
|
|
// 天气
|
2021-12-25 13:09:46 +08:00
|
|
|
|
async weatherEv() {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
// 获取时间
|
|
|
|
|
this.dateEv();
|
|
|
|
|
this.timer = setInterval(() => {
|
2021-12-23 10:00:27 +08:00
|
|
|
|
this.dateEv();
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}, 1000)
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.$storage.get('network')) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
let data = await this.$axios({
|
|
|
|
|
// 调用 serviceAPI
|
|
|
|
|
url: this.$https.weather,
|
|
|
|
|
methods: "get",
|
|
|
|
|
params: {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
EquipmentID: this.$storage.get('EquipmentID'),
|
2022-01-03 16:38:59 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (data.data.code == 200) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
// 星期几
|
|
|
|
|
this.week = data.data.data.week;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.$storage.set('week', this.week);
|
2022-01-03 16:38:59 +08:00
|
|
|
|
let newtempera = data.data.data.weather.result.forecasts[0];
|
|
|
|
|
// 当天气温
|
|
|
|
|
this.temperature = `${newtempera.low}-${newtempera.high}°C`;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.$storage.set('temperature', this.temperature);
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.weather = require(`../../static/img/weather/2.png`);
|
|
|
|
|
let weatherObj = '晴|多云|阴|阵雨|'
|
|
|
|
|
// let text = data.data.data.weather.result.now.text;
|
|
|
|
|
let text = newtempera.text_day;
|
|
|
|
|
if (
|
|
|
|
|
text == "阵雨" ||
|
|
|
|
|
text == "小雨" ||
|
|
|
|
|
text == "中雨" ||
|
|
|
|
|
text == "大雨" ||
|
|
|
|
|
text == "暴雨" ||
|
|
|
|
|
text == "大暴雨" ||
|
|
|
|
|
text == "特大暴雨" ||
|
|
|
|
|
text == "小雨转中雨" ||
|
|
|
|
|
text == "中雨转大雨" ||
|
|
|
|
|
text == "大雨转暴雨" ||
|
|
|
|
|
text == "暴雨转大暴雨" ||
|
|
|
|
|
text == "大暴雨转特大暴雨"
|
|
|
|
|
) {
|
|
|
|
|
this.weather = require(`../../static/img/weather/2.png`); //有雨
|
|
|
|
|
} else if (text == "阴") {
|
|
|
|
|
this.weather = require(`../../static/img/weather/1.png`); //阴天
|
|
|
|
|
} else if (text == "多云") {
|
|
|
|
|
this.weather = require(`../../static/img/weather/3.png`); //多云
|
|
|
|
|
} else if (text == "雷阵雨" || text == "雷阵雨伴有冰雹") {
|
|
|
|
|
this.weather = require(`../../static/img/weather/4.png`); //雷阵雨
|
|
|
|
|
} else if (text == "晴") {
|
|
|
|
|
this.weather = require(`../../static/img/weather/5.png`); //晴
|
|
|
|
|
} else if (
|
2022-02-16 09:32:13 +08:00
|
|
|
|
text == "雨夹雪" ||
|
|
|
|
|
text == "小雪" ||
|
|
|
|
|
text == "中雪" ||
|
|
|
|
|
text == "大雪" ||
|
|
|
|
|
text == "暴雪"
|
2022-01-03 16:38:59 +08:00
|
|
|
|
) {
|
|
|
|
|
this.weather = require(`../../static/img/weather/9.png`); //雨夹雪
|
2022-02-16 09:32:13 +08:00
|
|
|
|
} else {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.weather = require(`../../static/img/weather/1.png`) //晴
|
|
|
|
|
}
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.$storage.set('weather', this.weather);
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.weather = this.$storage.get('weather');
|
|
|
|
|
this.week = this.$storage.get('week');
|
|
|
|
|
this.temperature = this.$storage.get('temperature');
|
|
|
|
|
this.time = this.$storage.get('time');
|
2021-12-25 13:09:46 +08:00
|
|
|
|
}
|
2022-02-16 09:32:13 +08:00
|
|
|
|
|
2021-12-23 10:00:27 +08:00
|
|
|
|
},
|
|
|
|
|
// 当前时间
|
|
|
|
|
dateEv() {
|
|
|
|
|
let date = new Date();
|
|
|
|
|
// 年
|
|
|
|
|
let year = date.getFullYear();
|
|
|
|
|
// 月
|
|
|
|
|
let month = date.getMonth() + 1;
|
|
|
|
|
// 日
|
|
|
|
|
let day = date.getDate();
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.date = `${year}-${month<10?'0'+ month: month}-${day<10?'0'+ day: day}`;
|
2021-12-23 10:00:27 +08:00
|
|
|
|
// 时
|
|
|
|
|
let hour = date.getHours();
|
|
|
|
|
// 分
|
|
|
|
|
let minute = date.getMinutes();
|
|
|
|
|
// 当前时间
|
|
|
|
|
this.time = `${hour < 10 ? '0'+hour : hour}:${minute < 10 ? '0'+minute : minute}`;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.$storage.set('time', this.time);
|
2021-12-23 10:00:27 +08:00
|
|
|
|
},
|
2021-12-24 09:56:55 +08:00
|
|
|
|
// 右上角按钮点击
|
2022-02-16 09:32:13 +08:00
|
|
|
|
clickFun() {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.isNetwork = !this.isNetwork;
|
|
|
|
|
this.clearChoose();
|
|
|
|
|
this.classcardByIdEv();
|
|
|
|
|
},
|
|
|
|
|
// 全部不选中
|
2022-02-16 09:32:13 +08:00
|
|
|
|
clearChoose() {
|
|
|
|
|
this.modeArr.forEach(item => {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
item.isActive = false;
|
|
|
|
|
})
|
2021-12-24 09:56:55 +08:00
|
|
|
|
},
|
2022-01-03 16:38:59 +08:00
|
|
|
|
// 刷新
|
2022-02-16 09:32:13 +08:00
|
|
|
|
refreshEv() {
|
2021-12-24 09:56:55 +08:00
|
|
|
|
this.activeIndex = '-1';
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.onLine) {
|
|
|
|
|
setTimeout(() => {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.isNetwork = false;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
}, 100)
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
2022-02-16 09:32:13 +08:00
|
|
|
|
setTimeout(() => {
|
2021-12-24 09:56:55 +08:00
|
|
|
|
this.activeIndex = this.cunIndex;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
}, 100)
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.clearChoose();
|
2021-12-24 09:56:55 +08:00
|
|
|
|
},
|
2022-01-03 16:38:59 +08:00
|
|
|
|
// 返回首页
|
2022-02-16 09:32:13 +08:00
|
|
|
|
backHomeEv() {
|
2021-12-24 09:56:55 +08:00
|
|
|
|
this.activeIndex = '-1';
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.onLine) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.isNetwork = false;
|
|
|
|
|
}
|
2022-02-16 09:32:13 +08:00
|
|
|
|
setTimeout(() => {
|
2021-12-24 09:56:55 +08:00
|
|
|
|
this.activeIndex = 0;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
}, 100)
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.clearChoose();
|
|
|
|
|
},
|
|
|
|
|
// 获取班牌模式
|
|
|
|
|
async classcardByIdEv() {
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.$storage.get('network')) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
let data = await this.$axios({
|
|
|
|
|
// 调用 serviceAPI
|
|
|
|
|
url: this.$https.classcardById,
|
|
|
|
|
methods: "get",
|
|
|
|
|
params: {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
EquipmentID: this.$storage.get('EquipmentID'),
|
2022-01-03 16:38:59 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
let modeObj = data.data.data;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (modeObj != null) {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
this.clearChoose();
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (modeObj.Mode == 1) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.modeArr[0].isActive = true;
|
|
|
|
|
this.wellcomeFlag = true;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
} else if (modeObj.Mode == 2 || modeObj.Mode == 0) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.modeArr[1].isActive = true;
|
|
|
|
|
this.wellcomeFlag = false;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
} else if (modeObj.Mode == 4) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.modeArr[2].isActive = true;
|
|
|
|
|
this.wellcomeFlag = false;
|
2022-01-08 17:37:07 +08:00
|
|
|
|
window.location.href = `./averydaydata/wisdomMedic.html`;
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.$storage.set('wellcomeFlag', this.wellcomeFlag);
|
|
|
|
|
this.$storage.set('orgGuid', modeObj.OrgGuid);
|
2022-01-03 16:38:59 +08:00
|
|
|
|
} else {
|
|
|
|
|
this.modeArr[1].isActive = true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
this.modeArr[1].isActive = true;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.$storage.get('wellcomeFlag') != undefined) {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
this.wellcomeFlag = this.$storage.get('wellcomeFlag');
|
|
|
|
|
}
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
2022-02-16 09:32:13 +08:00
|
|
|
|
|
2022-01-03 16:38:59 +08:00
|
|
|
|
},
|
|
|
|
|
// 设置班牌模式
|
|
|
|
|
async updatemodelapiEv() {
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.$storage.get('network')) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
let data = await this.$axios({
|
|
|
|
|
// 调用 serviceAPI
|
|
|
|
|
url: this.$https.updatemodelapi,
|
|
|
|
|
methods: "get",
|
|
|
|
|
params: {
|
2022-02-16 09:32:13 +08:00
|
|
|
|
Mode: this.modeIndex,
|
|
|
|
|
OrgGuid: storage.get('orgGuid')
|
2022-01-03 16:38:59 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}
|
2021-12-25 13:09:46 +08:00
|
|
|
|
},
|
2022-01-03 16:38:59 +08:00
|
|
|
|
// 获取设备型号(设备id)
|
2022-02-16 09:32:13 +08:00
|
|
|
|
obtainEv() {
|
2022-03-04 16:42:01 +08:00
|
|
|
|
let Build = plus.android.importClass("android.os.Build");
|
|
|
|
|
let serial = Build.SERIAL;
|
|
|
|
|
this.$storage.set('EquipmentID',Build.SERIAL);
|
|
|
|
|
// this.$storage.set('EquipmentID','B520P2RXM0');
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.classCardId = this.$storage.get('EquipmentID');
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.weatherEv();
|
2022-01-08 17:37:07 +08:00
|
|
|
|
this.introduce();
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.classcardByIdEv();
|
2022-02-16 09:32:13 +08:00
|
|
|
|
setInterval(() => {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
this.classcardByIdEv();
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.introduce();
|
|
|
|
|
}, 1000 * 60)
|
2022-01-03 16:38:59 +08:00
|
|
|
|
},
|
2022-02-16 09:32:13 +08:00
|
|
|
|
plusReady() {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
var that = this;
|
2022-01-08 17:37:07 +08:00
|
|
|
|
// 手机有效
|
|
|
|
|
that.obtainEv();
|
2022-03-04 16:42:01 +08:00
|
|
|
|
if(plus.networkinfo.getCurrentType()!=1){
|
2022-02-16 09:32:13 +08:00
|
|
|
|
that.$storage.set('network', true);
|
2022-01-08 17:37:07 +08:00
|
|
|
|
that.onLine = true;
|
2022-03-04 16:42:01 +08:00
|
|
|
|
} else {
|
|
|
|
|
that.onLine = false;
|
|
|
|
|
}
|
2022-01-03 16:38:59 +08:00
|
|
|
|
//网络更改
|
2022-02-16 09:32:13 +08:00
|
|
|
|
document.addEventListener("netchange", function(res) {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
var network = plus.networkinfo.getCurrentType();
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (network == 1) {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
// that.isNetwork = true;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
that.$storage.set('network', false);
|
2022-01-03 16:38:59 +08:00
|
|
|
|
that.onLine = false;
|
2022-01-08 17:37:07 +08:00
|
|
|
|
// plus.nativeUI.toast('您的网络已断开');
|
2022-02-16 09:32:13 +08:00
|
|
|
|
} else {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
that.activeIndex = '-1';
|
2022-02-16 09:32:13 +08:00
|
|
|
|
setTimeout(() => {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
that.activeIndex = that.cunIndex;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
}, 100)
|
2022-01-03 16:38:59 +08:00
|
|
|
|
that.isNetwork = false;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
that.$storage.set('network', true);
|
2022-01-08 17:37:07 +08:00
|
|
|
|
that.obtainEv();
|
|
|
|
|
that.onLine = true;
|
2022-01-03 16:38:59 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2022-01-08 17:37:07 +08:00
|
|
|
|
// logo图标
|
|
|
|
|
async introduce() {
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (this.$storage.get('network')) {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
this.showError = false;
|
2022-01-10 18:41:59 +08:00
|
|
|
|
this.logoImg = this.$storage.get('logoImg');
|
2022-01-08 17:37:07 +08:00
|
|
|
|
let data = await this.$axios({
|
|
|
|
|
// 调用 serviceAPI
|
|
|
|
|
url: this.$https.mechanism,
|
|
|
|
|
methods: "get",
|
|
|
|
|
params: {
|
|
|
|
|
EquipmentID: this.$storage.get('EquipmentID'),
|
|
|
|
|
},
|
|
|
|
|
});
|
2022-02-16 09:32:13 +08:00
|
|
|
|
if (data.data.data != undefined) {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
this.logoImg = data.data.data.Img_Url;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
this.$storage.set('logoImg', this.logoImg);
|
2022-01-08 17:37:07 +08:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.logoImg = this.$storage.get('logoImg');
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-12-23 10:00:27 +08:00
|
|
|
|
},
|
|
|
|
|
mounted() {
|
2022-01-03 16:38:59 +08:00
|
|
|
|
var that = this;
|
2022-02-16 09:32:13 +08:00
|
|
|
|
setTimeout(() => {
|
2022-01-08 17:37:07 +08:00
|
|
|
|
that.plusReady();
|
2022-02-16 09:32:13 +08:00
|
|
|
|
}, 500)
|
2021-12-23 10:00:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|