123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011 |
- <!-- 管理端工作台 -->
- <template>
- <view class="manage-workbench" :style="{paddingTop:navHeight+'rpx'}">
- <nav-bar :title="title"></nav-bar>
- <img class="top-big-img" :src="homepageBanner">
- <top-warn></top-warn>
-
- <homeConfigurationSlot v-for="(item,index) in homeConfigData" :key="index" :homeConfig="item"></homeConfigurationSlot>
-
- <view class="for-max-box-one" v-if="alarmList[0]">
- <view class="for-box" v-for="(item,index) in alarmList" :key="index">
- <view class="title-box">
- <view :style="'border:1rpx solid '+item.subDiyVo.fiedColor+';background:#fff;color:'+item.subDiyVo.fiedColor+';'">{{item.subDiyVo.levelName}}</view>
- <view>{{item.subDiyVo.name}}</view>
- </view>
- <view class="address-box"><span>{{item.subDiyVo.typeName}}</span>{{item.subDiyVo.deptName}}</view>
- <view class="address-box-two">
- <img src="@/images/basicsModules/icon_14.png">
- <view>{{item.subDiyVo.subAddrrStr}}</view>
- </view>
- <view class="for-img-box">
- <view class="for-img-min-box" v-for="(minItem,index) in item.sensorSet" :key="index">
- <img src="@/images/basicsModules/icon_15.png">
- <view>{{minItem}}</view>
- </view>
- </view>
- <view class="button-view" @click="laboratoryInfo(item)">查看详情</view>
- </view>
- </view>
- <view class="for-title-p" v-if="dataList[0]">
- <img class="left-img" src="@/images/basicsModules/icon_sy_wdsys.png">
- <view class="name-view">我的实验室</view>
- </view>
- <view class="for-max-box" v-if="dataList[0]">
- <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="laboratoryInfoOne(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" v-if='item.subAddrrStr!=" "'>
- <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>
- <tab-bar></tab-bar>
- </view>
- </template>
- <script>
- import $mqtt from '@/utils/mqtt.min.js';
- import { config } from '@/api/request/config.js'
- import { appReceivePhotoNote,getApprovalCount,subject_class,getSafeWarnList,
- laboratoryInfo,laboratoryList,getLoginUserInfo,outSubjectPhoto,
- gradingControl,listData,getGentleIdentifier,systemAppletLayoutSelect} from '@/api/basicsModules/index.js'
- import { tabBar } from '@/component/tabBar.vue'
- import { topWarn } from '@/component/topWarn.vue'
- import { navBar } from '@/component/navbar.vue'
- import { homeConfigurationSlot } from '@/component/homeConfigurationSlot'
- import { getHomeConfig } from '@/utils/homeConfig'
- export default {
- components: {
- tabBar,
- topWarn,
- navBar,
- homeConfigurationSlot,
- },
- data() {
- return {
- homeConfigData: [],
- navHeight: uni.getStorageSync('navHeight'),
- title:'实验室安全智能监测与控制系统',
- //随手拍数量
- appReceivePhotoNoteNum:0,
- //准入数量
- passedNum:"",
- subject_classData:[],
- securityAlertNum:"",
- //MQTT请求参数
- mtopic:"lab/bigview",
- mtopicOne:"lab/function/data",
- msg:"",
- client:{},
- //报警数据
- alarmList:[],
- //实验室数据
- dataList:[],
- //用户信息数据(用来决定是否可以跳转检查项)
- userInfo:{
- isadmin:null,
- ischeck:null,
- list:null,
- },
- buttonArray:[],
- gradingCount:0,//分级管控未完成总数
- homepageBanner:uni.getStorageSync('homepageBanner'),
- fanList:[],//控制记录触发方式
- }
- },
- created() {
- },
- mounted(){
- this.systemAppletLayoutSelect();
- this.appReceivePhotoNote();
- this.getApprovalCount();
- this.subject_class();
- this.laboratoryList();
- this.getSafeWarnList();
- this.getLoginUserInfo();
- this.getGrading();
- this.getListData();
- //监听报警信息
- getApp().watch(this.getSafeWarnList,'mqttAlarmData');
- },
- methods: {
- //获取菜单配置
- async systemAppletLayoutSelect() {
- const {data} = await systemAppletLayoutSelect({module:'home'})
- if(data.code == 200){
- let list = JSON.parse(JSON.stringify(data.data))
- for(let i=0;i<list.length;i++){
- list[i].layout = JSON.parse(list[i].layout);
- }
- this.$set(this,'homeConfigData',getHomeConfig(list));
- }
- },
- //查询控制记录触发方式
- async getListData() {
- let _this = this;
- let obj={
- pageNum:1,
- pageSize:20,
- dictType:'trigger_modes'
- }
- const {data} = await listData(obj)
- if (data.code == 200) {
- this.fanList=data.rows
- }
- },
- //暂无提示
- goCheckPage(){
- if(this.userInfo.isadmin){
- uni.navigateTo({
- url: '/pages_manage/workbench/problemRectification/rectifyList'
- });
- }else if(this.userInfo.ischeck == 1){
- uni.navigateTo({
- url: '/pages_manage/workbench/securityCheck/inspectionRecords'
- });
- }else{
- uni.showToast({
- title: '您没有该权限',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }
- },
- //监听传感器信息
- getMqttSensorData(val){
- let self = this;
- 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 getGrading(){
- let obj = {
- }
- const {data} = await gradingControl(obj)
- if(data.code==200){
- this.gradingCount=data.data.length;
- }
- },
- async getLoginUserInfo(){
- const {data} = await getLoginUserInfo();
- if(data.code == 200){
- this.userInfo = data.data;
- let list = [];
- if(data.data.isadmin){
- //实验室负责人
- let obj = {
- id:"1",
- name:"检查记录",
- }
- list.push(obj)
- }
- if(data.data.ischeck == 1){
- //检查者
- let obj = {
- id:"2",
- name:"问题整改",
- }
- list.push(obj)
- }
- this.$set(this,'buttonArray',list);
- }
- },
- //获取报警信息详情
- async laboratoryInfo(item){
- let self=this;
- const {data} = await laboratoryInfo(item.subDiyVo.id);
- if(data.code == 200){
- let obj = data.data[0];
- obj.subClassVO = item.subDiyVo.subClassVO;
- obj.name = item.subDiyVo.name;
- obj.subTypeLable = item.subDiyVo.subTypeLable;
- obj.deptName = item.subDiyVo.deptName;
- obj.subAddrrStr = item.subDiyVo.subAddrrStr;
- //循环判断如果是排风扇的话,启动的时候是人工还是预案还是定时
- for(let i=0;i<obj.labHardwareVOList.length;i++){
- if(obj.labHardwareVOList[i].hardwareTypeEnum.hardwareTypeCode == '2'){
- for(let b=0;b<self.fanList.length;b++){
- if(self.fanList[b].dictValue==obj.labHardwareVOList[i].triggerModes){
- obj.labHardwareVOList[i].dictLabel=self.fanList[b].dictLabel
- }
- }
- }
- }
- uni.navigateTo({
- url: '/pages_manage/workbench/laboratory/laboratoryInfo?item='+encodeURIComponent(JSON.stringify(obj))+'&deptId='+obj.deptId
- });
- }
- },
- //获取实验室详情
- async laboratoryInfoOne(item){
- let self=this;
- 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;
- //循环判断如果是排风扇的话,启动的时候是人工还是预案还是定时
- for(let i=0;i<obj.labHardwareVOList.length;i++){
- if(obj.labHardwareVOList[i].hardwareTypeEnum.hardwareTypeCode == '2'){
- for(let b=0;b<self.fanList.length;b++){
- if(self.fanList[b].dictValue==obj.labHardwareVOList[i].triggerModes){
- obj.labHardwareVOList[i].dictLabel=self.fanList[b].dictLabel
- }
- }
- }
- }
- uni.navigateTo({
- url: '/pages_manage/workbench/laboratory/laboratoryInfo?item='+encodeURIComponent(JSON.stringify(obj))+'&deptId='+item.deptId
- });
- }
- },
- //获取报警信息列表
- async getSafeWarnList(){
- let obj = {
- pageNum:1,
- pageSize:1,
- count:0,
- groupStatus:1,
- };
- const {data} = await getSafeWarnList(obj);
- if(data.code == 200){
- this.alarmList = data.rows;
- if(data.rows[0]){
- this.securityAlertNum = data.rows[0].todayHappenCount;
- }else{
- this.securityAlertNum = 0;
- }
- }
- },
- //获取实验室列表
- async laboratoryList(){
- 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 laboratoryList(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:[],
- }
- 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)
- }
- }
- list.push({type:"lab/riskPlan/trigger/notice",});
- getApp().appMqttOn(1,list);
- }
- },
- //获取输入数量
- async getApprovalCount(){
- const {data} = await getApprovalCount()
- if(data.code == 200){
- this.passedNum = data.data.passed + '人已获得';
- }
- },
- //获取管理员工作台随手拍数量数据
- async appReceivePhotoNote(){
- const {data} = await appReceivePhotoNote();
- if(data.code == 200){
- this.appReceivePhotoNoteNum = data.data.photoCount;
- }
- },
- //获取学科字典
- async subject_class(){
- const {data} = await subject_class();
- if(data.code == 200){
- this.subject_classData = data.data;
- }
- },
- //去安全警报
- goSecurityAlertList(){
- uni.navigateTo({
- url: '/pages_manage/workbench/securityAlert/securityAlertList',//安全警报
- });
- },
- //页面跳转
- goPage(type){
- if(type=='casuallyPat'){
- uni.navigateTo({
- url: '/pages/casuallyPat',//随手拍
- });
- }else if(type=='receiveCasuallyPat'){//收到随手拍
- uni.navigateTo({
- url: '/pages_manage/workbench/receiveCasuallyPat/receiveCasuallyPat',
- });
- }else if(type=='accessQualification'){//收到随手拍
- uni.navigateTo({
- url: '/pages_manage/workbench/accessQualification/accessQualification',
- });
- }else if(type == 'safetyInspect'){//安全检查
- this.getGentleIdentifier();
- // uni.navigateTo({
- // url: '/pages_manage/workbench/securityCheck/inspectionRecords',//安全检查
- // });
- }
- else if(type == 'alarm'){
- uni.navigateTo({
- url: '/pages/earlyWarningManage/earlyWarningList',//安全警报
- });
- }else if(type == 'emergencyEvacuation'){
- uni.navigateTo({
- url: '/pages_manage/emergencyEvacuationBig',//安全警报
- });
- }else if(type == 'photoInspection'){
- this.outSubjectPhoto();
- }else if(type == 'grading'){
- uni.navigateTo({
- url: '/pages_manage/gradingControl/gradingControl',//分级管控
- });
- }else if(type == 'gas'){//气瓶管理
- uni.navigateTo({
- url: '/pages_manage/gasManage/gasManage',
- });
- }else if(type == 'none'){
- uni.showToast({
- title: '暂未开放',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }
- },//获取拍照检查配置
- async outSubjectPhoto(){
- const {data} = await outSubjectPhoto();
- if(data.code == 200){
- if(data.data == null){
- //需要检查(重新填写)
- let obj = {
- sub:"实验室照片",
- subUrl:"",
- garbage:"垃圾桶清理后照片",
- garbageUrl:"",
- dangerous:"使用危险设备照片(选填)",
- dangerousUrl:"",
- sourceRisk:"危险源设备使用登记本照片(选填)",
- sourceRiskUrl:"",
- };
- uni.navigateTo({
- url: '/pages_student/workbench/photoInspection?newData='+encodeURIComponent(JSON.stringify(obj)),
- });
- }else if(data.data == false){
- //不需要检查
- uni.showToast({
- title: '暂无检查数据',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }else{
- //需要检查(修改内容)
- let obj = {
- id:data.data.id,
- sub:"实验室照片",
- subUrl:data.data.subUrl,
- garbage:"垃圾桶清理后照片",
- garbageUrl:data.data.garbageUrl,
- dangerous:"使用危险设备照片(选填)",
- dangerousUrl:data.data.dangerousUrl,
- sourceRisk:"危险源设备使用登记本照片(选填)",
- sourceRiskUrl:data.data.sourceRiskUrl,
- };
- uni.navigateTo({
- url: '/pages_student/workbench/photoInspection?newData='+encodeURIComponent(JSON.stringify(obj)),
- });
- }
- }
- },
- //获取用户身份标识"adminGentle": false, 管理员身份 "rectifyGentle": false, 整改身份"applyGentle": false 检查者身份
- async getGentleIdentifier(){
- let self = this;
- const {data} = await getGentleIdentifier();
- if(data.code==200){
- let pageType = null
- // 如果是管理员 检查者和整改者
- let list=[];
- if(data.data.adminGentle){
- list.push({name:'管理员',pageType:1})
- }
- if(data.data.applyGentle ||data.data.myApplyGentle){
- list.push({name:'检查者',pageType:2})
- }
- if(data.data.rectifyGentle){
- list.push({name:'整改者',pageType:3})
- }
- uni.setStorageSync('gentleIdentifier',list)
- uni.setStorageSync('gentleIdentifierData',data.data)
- if(list.length>0){
- uni.navigateTo({
- url: '/pages/safetyExamineWorkbench',
- });
- }else{
- uni.showToast({
- title: '没有相关权限',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }
- }
- },
- },
- beforeDestroy(){
- //断开mqtt连接
- getApp().offMQTT();
- //删除报警监听
- getApp().deleteAlarmWatch();
- //删除传感器监听
- getApp().deleteSensorWatch();
- }
- }
- </script>
- <style lang="stylus" scoped>
- .manage-workbench{
- height:100%;
- width:100%;
- overflow-y:scroll;
- box-sizing: border-box;
- .top-big-img{
- height:342rpx;
- width:750rpx;
- }
- .min-icon-button-box{
- display flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- width:710rpx;
- margin:20rpx;
- background :#ffffff;
- border-radius:20rpx;
- padding-bottom: 20rpx;
- view{
- width: 176rpx;
- img{
- height:75rpx;
- width:75rpx;
- margin:30rpx auto 10rpx;
- }
- view{
- text-align center
- font-size:24rpx;
- }
- }
- }
- .big-icon-button-box{
- display flex;
- margin:20rpx;
- img{
- width:350rpx;
- height:150rpx;
- }
- img:nth-child(2){
- margin-left:10rpx;
- }
- }
- /* 分级管控 */
- .grading{
- width :712rpx;
- height :80rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-left:20rpx;
- margin-bottom :20rpx;
- display:flex;
- justify-content :flex-start;
- align-items :center;
- .grading_l{
- width :34rpx;
- height :34rpx;
- margin-left:16rpx;
- }
- .grading_c{
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- margin-left:16rpx;
- }
- .grading_r{
- width :504rpx;
- height :80rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #EE3A3A;
- display :flex;
- justify-content :flex-end;
- align-items: center;
- >img{
- width: 20rpx;
- height: 20rpx;
- margin-left :20rpx;
- margin-top :8rpx;
- }
- }
- }
- .top-max-box{
- height:300rpx;
- .top-min-box{
- display: flex
- margin:20rpx;
- .left-box{
- background #fff
- height:130rpx;
- width:345rpx;
- border-radius: 10px;
- display flex
- .left-img{
- height:80rpx;
- width:80rpx;
- margin:25rpx 30rpx;
- }
- view{
- line-height:130rpx;
- font-size: 28rpx;
- color:#333;
- flex:1;
- }
- .right-img{
- width:20rpx;
- height:20rpx;
- margin:55rpx 30rpx 0 0;
- }
- }
- .right-box{
- background #fff
- height:130rpx;
- width:345rpx;
- margin-left:20rpx;
- border-radius: 10rpx;
- display flex
- .left-img{
- height:80rpx;
- width:80rpx;
- margin:25rpx 30rpx;
- }
- .right-min-view{
- flex:1;
- .right-min-title{
- line-height:28rpx;
- font-size: 28rpx;
- margin-top:32rpx;
- color: #333333;
- }
- .right-bottom-min-box{
- display flex
- view{
- flex:1;
- text-align right
- margin:25rpx 14rpx 0 0;
- font-size: 22rpx;
- color: #999999;
- line-height: 22rpx;
- }
- img{
- width:20rpx;
- height:20rpx;
- margin:27rpx 80rpx 0 0;
- }
- }
- }
- }
- }
- .bottom-min-box{
- background #fff
- height:130rpx;
- width:710rpx;
- border-radius: 10px;
- margin:0 20rpx;
- display flex
- .left-img{
- height:80rpx;
- width:80rpx;
- margin:25rpx 30rpx;
- }
- view{
- flex:1;
- line-height:130rpx;
- }
- view:nth-child(2){
- font-size: 28rpx;
- color:#333;
- }
- view:nth-child(3){
- text-align right
- font-size: 22rpx;
- color:#999;
- margin-right:12rpx;
- }
- .right-img{
- width:20rpx;
- height:20rpx;
- margin:55rpx 30rpx 0 0;
- }
- }
- }
- .for-title-p{
- border-top-left-radius 20rpx
- border-top-right-radius 20rpx
- background #fff
- padding-left:25rpx;
- display flex
- margin:0 20rpx;
- border-bottom:1rpx solid #e0e0e0;
- .left-img{
- height:34rpx;
- width:34rpx;
- margin:22rpx 10rpx 0 0;
- }
- .name-view{
- line-height:77rpx;
- font-size:30rpx;
- color:#333;
- }
- .num-view{
- width:28rpx;
- height:28rpx;
- font-size:20rpx;
- background:#EE3A3A;
- border-radius:50%;
- text-align :center;
- line-height:24rpx;
- color:#fff;
- margin:26rpx 0 0 10rpx;
- }
- .null-view{
- flex:1;
- }
- .right-img{
- height:20rpx;
- width:10rpx;
- margin:28rpx 19rpx 0 0;
- }
- }
- .for-max-box-one{
- margin:0 20rpx;
- border-bottom-left-radius 20rpx
- border-bottom-right-radius 20rpx
- .for-box:nth-child(1){
- border-top:none;
- }
- .for-box{
- border-top:4rpx solid #dedede;
- background #fff
- margin-bottom:20rpx;
- overflow: hidden
- .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;
- }
- .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;
- }
- }
- .for-img-box{
- border-top:1rpx solid #e0e0e0;
- margin:0 20rpx;
- .for-img-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:#EE3A3A;
- }
- }
- }
- .button-view{
- margin:0 20rpx;
- border-top:1rpx dashed #e0e0e0;
- line-height:90rpx;
- text-align :center;
- font-size:26rpx;
- color:#333;
- }
- }
- .get-null-box{
- height:100rpx;
- line-height:100rpx;
- color:#999;
- text-align center
- }
- }
- .for-max-box{
- margin:0 20rpx 120rpx;
- background: #fff
- overflow: hidden
- border-bottom-left-radius 20rpx
- border-bottom-right-radius 20rpx
- .null-img{
- display block
- width:276rpx;
- height:321rpx;
- margin:40rpx auto;
- }
- .for-box:nth-child(1){
- border-top:none;
- }
- .for-box{
- border-top:4rpx solid #dedede;
- 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 0;
- /*
- 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>
|