123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <!-- 我的实验室 -->
- <template>
- <view id="meLaboratory">
- <view class="top-picker-max-box">
- <view class="top-picker-box">
- <picker @change="facultyChange" :value="facultyIndex" :range="facultyArray">
- <view class="picker-view">
- <view>{{!facultyIndex?'学院':facultyArray[facultyIndex]}}</view>
- <img class="picker-img" src="@/images/basicsModules/icon_06.png" alt="">
- </view>
- </picker>
- </view>
- <view class="top-picker-box">
- <picker @change="subjectChange" :value="subjectIndex" :range="subjectArray">
- <view class="picker-view">
- <view>{{!subjectIndex?'分类':subjectArray[subjectIndex]}}</view>
- <img class="picker-img" src="@/images/basicsModules/icon_06.png" alt="">
- </view>
- </picker>
- </view>
- <view class="top-picker-box">
- <picker @change="levelChange" :value="levelIndex" :range="levelArray">
- <view class="picker-view">
- <view>{{!levelIndex?'分级':levelArray[levelIndex]}}</view>
- <img class="picker-img" src="@/images/basicsModules/icon_06.png" alt="">
- </view>
- </picker>
- </view>
- </view>
- <view class="for-max-box">
- <img class="null-img" v-if="!dataList[0]" src="@/images/basicsModules/null-data-1.png">
- <view class="for-box" v-for="(item,index) in dataList" :key="index" @click="laboratoryInfo(item)">
- <view class="title-box">
- <view :style="'border:1rpx solid '+item.fiedColor+';background:#fff;color:'+item.fiedColor+';'">{{item.levelName}}</view>
- <view>{{item.name}}</view>
- <img src="@/images/basicsModules/icon_04.png">
- </view>
- <view class="address-box"><span>{{item.typeName}}</span>{{item.deptName}}</view>
- <view class="address-box-two">
- <img src="@/images/basicsModules/icon_14.png">
- <view>{{item.subAddrrStr}}</view>
- </view>
- <view class="text-box" v-if="item.sensorFunctionList[0]">
- <view class="min-box" v-for="(minItem,index2) in item.sensorFunctionList" :key="index2">
- <view class="min-min-box">
- <img v-show="minItem.hasWarn" src="@/images/basicsModules/icon_15.png">
- <view :class="{'colorA':minItem.hasWarn}">{{minItem.funcName}}:{{minItem.formatVal?minItem.formatVal:'-'}}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $mqtt from '@/utils/mqtt.min.js';
- import { config } from '@/api/request/config.js'
- import { laboratoryList,subject_class,listDepartments,mangerControl,laboratoryInfo } from '@/api/apiDemo/index.js'
- import { systemAppletSubjectList } from '@/api/basicsModules/index.js'
- export default {
- data() {
- return {
- dataList:[],
- subject_classData:[],
- //MQTT请求参数-传感器
- client:{},
- mqttIdList:[],
- //院系选择器数据
- facultyList:[],
- facultyArray:[],
- facultyIndex:"",
- //学科选择器数据
- subjectList:[],
- subjectArray:[],
- subjectIndex:"",
- //级别选择器数据
- levelList:[
- {dictLabel:"全部级别", dictValue:""},
- {dictLabel:"一级", dictValue:"1"},
- {dictLabel:"二级", dictValue:"2"},
- {dictLabel:"三级", dictValue:"3"},
- {dictLabel:"四级", dictValue:"4"},
- ],
- levelArray:['全部级别','一级','二级','三级','四级'],
- levelIndex:"",
- }
- },
- onLoad() {
- },
- onShow(){
- this.listDepartments();
- this.subject_class();
- // mqtt订阅因为返回数据频率问题 暂时取消列表的MQTT刷新
- //监听传感器信息
- // getApp().watch(this.getMqttSensorData,'mqttSensorData')
- },
- methods: {
- //监听传感器信息
- getMqttSensorData(val){
- let self = this;
- // console.log('页面获取的-传感器信息',val)
- if(val.subId){
- for(let i=0;i<self.dataList.length;i++){
- if(self.dataList[i].id == val.subId){
- self.$set(self.dataList[i],'sensorFunctionList',val.functionStatuses);
- }
- }
- }
- },
- async laboratoryInfo(item){
- const {data} = await laboratoryInfo(item.id);
- if(data.code == 200){
- let obj = data.data[0];
- obj.subClassVO = item.subClassVO;
- obj.name = item.name;
- obj.subTypeLable = item.subTypeLable;
- obj.deptName = item.deptName;
- obj.subAddrrStr = item.subAddrrStr;
- obj.sensorFunctionList = item.sensorFunctionList;
- uni.navigateTo({
- url: '/pages_manage/laboratory/laboratoryInfo?item='+encodeURIComponent(JSON.stringify(obj))+'&deptId='+item.deptId
- });
- }
- },
- //滚动选择器
- facultyChange: function(e) {
- if(this.facultyArray[0]){
- this.facultyIndex = parseInt(e.target.value);
- this.systemAppletSubjectList();
- }
- },
- subjectChange: function(e) {
- if(this.subjectArray[0]){
- this.subjectIndex = parseInt(e.target.value);
- this.systemAppletSubjectList();
- }
- },
- levelChange: function(e) {
- if(this.levelArray[0]){
- this.levelIndex = parseInt(e.target.value);
- this.systemAppletSubjectList();
- }
- },
- //设备开关按钮
- hardwareButton(minItem,command){
- let self = this;
- let text = '';
- if(command == 'close'){
- text = '关闭';
- }else if(command == 'open'){
- text = '开启';
- }
- uni.showModal({
- content: '确认要'+text+'吗?',
- cancelColor:"#999",
- confirmColor:"#0183FA",
- success: function (res) {
- if (res.confirm) {
- self.mangerControl(minItem,command);
- console.log('用户点击确定');
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- },
- //设备开关
- async mangerControl(minItem,command){
- let obj = {
- id:minItem.id,
- command:command,
- };
- const {data} = await mangerControl(obj);
- if(data.code == 200){
- if(command == 'open'){
- minItem.type = 3;
- }else if(command == 'close'){
- minItem.type = 4;
- }
- uni.showToast({
- title: '操作成功',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }
- },
- //获取院系
- async listDepartments(){
- const {data} = await listDepartments();
- if(data.code == 200){
- let list = [];
- for(let i=0;i<data.data.length;i++){
- list.push(data.data[i].deptName)
- }
- this.facultyArray = list;
- list.unshift('全部院系');
- this.facultyList = data.data;
- this.facultyList.unshift({deptName:"全部院系", deptId:""})
- }
- },
- //获取学科字典
- async subject_class(){
- const {data} = await subject_class();
- if(data.code == 200){
- this.subject_classData = data.data;
- let list = [];
- for(let i=0;i<data.data.length;i++){
- list.push(data.data[i].dictLabel)
- }
- this.subjectArray = list;
- list.unshift('全部分类');
- this.subjectList = data.data;
- this.subjectList.unshift({dictLabel:"全部分类", dictValue:""})
- this.systemAppletSubjectList()
- }
- },
- //获取实验室列表
- async systemAppletSubjectList(){
- let self = this;
- let obj = {
- deptId:this.facultyIndex?this.facultyList[this.facultyIndex].deptId:'',
- subDept:this.subjectIndex?this.subjectList[this.subjectIndex].dictValue:'',
- level:this.levelIndex?this.levelList[this.levelIndex].dictValue:'',
- };
- const {data} = await systemAppletSubjectList(obj);
- if(data.code == 200){
- for(let o=0;o<data.data.length;o++){
- if(data.data[o].labHardwareVOList){
- data.data[o].hardwareList = [];
- for(let i=0;i<data.data[o].labHardwareVOList.length;i++){
- if(data.data[o].labHardwareVOList[i].hardwareTypeEnum.code == 4 &&data.data[o].labHardwareVOList[i].hardwareNUM){
- if(data.data[o].hardwareNUM){
- data.data[o].hardwareNUM = data.data[o].hardwareNUM + ',' + data.data[o].labHardwareVOList[i].hardwareNUM
- }else{
- data.data[o].hardwareNUM = data.data[o].labHardwareVOList[i].hardwareNUM
- }
- }else{
- let obj = {
- name:"",
- type:"",
- };
- obj.name = data.data[o].labHardwareVOList[i].hardwareTypeEnum.hardwareTypeName
- obj.type = data.data[o].labHardwareVOList[i].state.code;
- obj.id = data.data[o].labHardwareVOList[i].id;
- data.data[o].hardwareList.push(obj);
- }
- }
- }
- }
- this.dataList = data.data;
- let list = [];
- let obj = {
- type:"lab/function/data",
- idList:[],
- }
- let objOne = {
- type:"lab/hardware/data",
- idList:[],
- }
- for(let i=0;i<self.dataList.length;i++){
- let num = 0;
- for(let o=0;o<obj.idList.length;o++){
- if(obj.idList[o] == self.dataList[i].id){
- num++
- }
- }
- if(num == 0){
- obj.idList.push(self.dataList[i].id)
- objOne.idList.push(self.dataList[i].id)
- }
- }
- list.push(obj);
- list.push(objOne);
- this.$set(self,'mqttIdList',list);
- // mqtt订阅因为返回数据频率问题 暂时取消列表的MQTT刷新
- // getApp().appMqttOn(1,list);
- }
- },
- },
- onHide(){
- // this.offMQTT();
- // //删除传感器监听
- // getApp().appMqttOn(2);
- getApp().deleteSensorWatch();
- console.log("onHide",this.mtopic);
- },
- beforeDestroy(){
- // this.offMQTT();
- // //删除传感器监听
- getApp().offMQTT();
- getApp().deleteSensorWatch();
- console.log("beforeDestroy",this.mtopic);
- }
- }
- </script>
- <style lang="stylus" scoped>
- #meLaboratory{
- height:100%;
- display flex
- flex-direction column
- .top-picker-max-box{
- display:flex;
- padding:0 20rpx;
- background #fff
- border-bottom:1rpx solid #E0E0E0;
- .top-picker-box{
- line-height:80rpx;
- height:80rpx;
- .picker-view{
- display flex
- view{
- display:block;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- font-size:28rpx;
- }
- .picker-img{
- width:24rpx;
- height:13rpx;
- margin-top:36rpx;
- margin-left:13rpx;
- }
- }
- }
- .top-picker-box:nth-child(1){
- text-align left
- width:320rpx;
- .picker-view{
- view{
- max-width:260rpx;
- }
- }
- }
- .top-picker-box:nth-child(2){
- text-align left
- width:215rpx;
- .picker-view{
- view{
- max-width:156rpx;
- }
- }
- }
- .top-picker-box:nth-child(3){
- text-align right
- width:195rpx;
- .picker-view{
- view{
- flex:1;
- }
- }
- }
- }
- .for-max-box{
- flex:1;
- overflow-y scroll
- .null-img{
- display block
- width:276rpx;
- height:321rpx;
- position absolute
- top:200rpx;
- left:274rpx;
- }
- .for-box{
- overflow hidden
- background #ffffff
- margin-bottom:20rpx;
- .title-box{
- margin:20rpx 20rpx 0;
- display flex
- view:nth-child(1){
- height:40rpx;
- line-height:40rpx;
- font-size:20rpx;
- border-radius:10rpx;
- padding:0 20rpx;
- color:#fff;
- margin-right:20rpx;
- }
- view:nth-child(2){
- line-height:42rpx;
- font-size:30rpx;
- color:#333;
- max-width:600rpx;
- flex:1;
- }
- img{
- width:12rpx;
- height:20rpx;
- margin-top:11rpx;
- }
- .colorA{
- background:#aa2315;
- }
- .colorB{
- background:#ff9b09;
- }
- .colorC{
- background:#3ea3e9;
- }
- .colorD{
- background:#3ea34c;
- }
- }
- .address-box{
- margin:20rpx 20rpx;
- font-size:26rpx;
- color:#999999;
- span{
- margin-right:60rpx;
- }
- }
- .address-box-two{
- display flex
- margin:0 20rpx 20rpx 20rpx;
- img{
- width:28rpx;
- height:30rpx;
- margin-right:18rpx;
- }
- view{
- line-height:30rpx;
- font-size:24rpx;
- color:#999999;
- }
- }
- .text-box{
- /*border-top:1rpx dashed #e0e0e0;*/
- border-top:1rpx solid #E0E0E0;
- padding:20rpx 20rpx;
- /*
- overflow-x:scroll;
- overflow-y:hidden;
- white-space: nowrap;
- */
- .min-box{
- display inline-block
- /*padding:0 30rpx 0 10rpx;*/
- width:335rpx;
- .min-min-box{
- display: flex
- img{
- width:30rpx;
- height:27rpx;
- margin-top:24rpx;
- margin-right:10rpx;
- }
- view{
- line-height:74rpx;
- text-align center
- font-size:28rpx;
- color:#333;
- }
- .colorA{
- color:#EE3A3A;
- }
- }
- }
- }
- .sensor-max-box{
- margin:0 20rpx;
- border-top:1rpx solid #e0e0e0;
- border-bottom:1rpx solid #e0e0e0;
- display flex
- .for-sensor-box{
- flex:1;
- display flex
- font-size:28rpx;
- line-height:94rpx;
- view{
- margin-left:20rpx;
- font-size:25rpx;
- line-height:94rpx;
- color:#0183FA;
- }
- }
- }
- .button-max-box{
- .button-box{
- display flex
- view:nth-child(1){
- flex:1;
- line-height:90rpx;
- color:#333333;
- margin-left:30rpx;
- font-size:28rpx;
- }
- view:nth-child(2){
- width:142rpx;
- line-height:42rpx;
- border:4rpx solid #0183FA;
- border-radius:25rpx;
- color: #0183FA;
- font-size: 30rpx;
- text-align center;
- margin:20rpx 20rpx 20rpx 0;
- }
- }
- .for-button-box{
- display flex
- view{
- flex:1;
- line-height:90rpx;
- color:#333333;
- margin-left:30rpx;
- font-size:28rpx;
- }
- img{
- height:50rpx;
- width:100rpx;
- margin:20rpx 20rpx 20rpx 0;
- }
- view:nth-child(2){
- text-align right
- color:#999;
- margin-right:30rpx;
- }
- }
- }
- }
- }
- }
- </style>
|