123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <!-- 教师首页 -->
- <template>
- <view class="teacherHome" :style="{paddingTop:navHeight+'rpx'}">
- <view class="data-board" v-if="pageType == 1">
- </view>
- <view class="home-page" v-if="pageType == 2">
- <nav-bar :title="title"></nav-bar>
- <view class="top-back-img" :style="{top:navHeight+'rpx'}">
- <view class="position-data-button" @click="goPage('dataBoard')"
- v-if="dataPageType">数据看板</view>
- <img class="position-img" :src="rectangleLogo">
- </view>
- <view class="button-one-box">
- <view class="button-min" @click="goPage('securityCheck')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_aqjc@1x.png">
- <view class="button-name">安全检查</view>
- </view>
- <view class="button-min" @click="goPage()">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_aqks@1x.png">
- <view class="button-name">安全考试</view>
- </view>
- <view class="button-min" @click="goPage('securityAdmittance')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_aqzr@1x.png">
- <view class="button-name">安全准入</view>
- </view>
- <view class="button-min" @click="goPage('hierarchicalControl')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_fjgk@1x.png">
- <view class="button-name">分级管控</view>
- </view>
- <view class="button-min" @click="goPage('securityResponsibility')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_aqzrr@1x.png">
- <view class="button-name">安全责任</view>
- </view>
- <view class="button-min" @click="goPage('deviceManagement')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_sbgl@1x.png">
- <view class="button-name">设备管理</view>
- </view>
- <view class="button-min" @click="goPage('emergencyDisposal')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_yjcz@1x.png">
- <view class="button-name">应急处置</view>
- </view>
- <view class="button-min" @click="goPage('cageSiteManagement')">
- <img class="button-img" src="@/pages/images/newImage/icon_sy_lwgl@1x.png">
- <view class="button-name">笼位管理</view>
- </view>
- </view>
- <topWarn></topWarn>
- <view class="button-two-box">
- <view class="button-big-box" @click="goPage('snapshot')"
- style="background-color: #DFF0FF;margin-right:20rpx;">
- <img src="@/pages/images/newImage/icon_sy_ssp@1x.png">
- <view class="button-min-box">
- <view>随手拍</view>
- <view>发现隐患</view>
- </view>
- </view>
- <view class="button-big-box" @click="goPage('remoteDoorOpening')"
- style="background-color: #D6EBDA;">
- <img src="@/pages/images/newImage/img_sy_yckm@1x.png">
- <view class="button-min-box">
- <view>远程开门</view>
- <view>立即开门</view>
- </view>
- </view>
- </view>
- <view class="button-three-box">
- <view class="button-big-box" @click="goPage('chemicalsManagement')">
- <img src="@/pages/images/newImage/img_bg_hxpgk@1x.png">
- <view class="button-min-box">
- <view>化学品智能管控</view>
- <view>申购审批丨使用台账丨实验室库存</view>
- </view>
- </view>
- </view>
- <tab-bar></tab-bar>
- </view>
- </view>
- </template>
- <script>
- import {
- getGentleIdentifier
- } from '@/pages/api/index.js'
- import { pageRestrictVerify } from '@/utils/index'
- import {
- tabBar
- } from '@/pages/component/tabBar.vue'
- import {navBar} from '@/pages/component/navbar.vue'
- import {topWarn} from '@/pages/component/topWarn.vue'
- export default {
- name: "teacherHome",
- components: {
- tabBar,
- navBar,
- topWarn,
- },
- data() {
- return {
- pageType:2,
- navHeight: uni.getStorageSync('navHeight'),
- dataPageType:false,
- title: '实验室安全智慧化管控系统',
- rectangleLogo:uni.getStorageSync('rectangleLogo')
- }
- },
- created() {
- if(pageRestrictVerify('dataBoard')){
- this.dataPageType = true;
- // this.pageType = 1;
- }
- },
- mounted() {
- },
- methods: {
- goPage(type){
- if(!type){
- uni.showToast({
- title: '暂未开放',
- icon: "none",
- mask: true,
- duration: 2000
- });
- return
- }
- if (!pageRestrictVerify(type)) {
- uni.showToast({
- title: '没有相关权限,请联系管理员',
- icon: "none",
- mask: true,
- duration: 2000
- });
- return
- }
- if(type == 'dataBoard'){
- //数据看板
-
- }else if(type == 'securityCheck'){
- //安全检查
- this.getGentleIdentifier();
- }else if(type == 'securityExamination'){
- //安全考试
-
- }else if(type == 'securityAdmittance'){
- //安全准入
- uni.navigateTo({
- url: "/pages_manage/views/accessQualification/accessQualification",
- });
- }else if(type == 'hierarchicalControl'){
- //分级管控
- uni.navigateTo({
- url: "/pages_manage/views/gradingControl/gradingControl",
- });
- }else if(type == 'securityResponsibility'){
- //安全责任
-
- }else if(type == 'deviceManagement'){
- //设备管理
-
- }else if(type == 'emergencyDisposal'){
- //应急处置
- uni.navigateTo({
- url: "/pages_manage/views/emergencyEvacuationBig",
- });
- }else if(type == 'cageSiteManagement'){
- //笼位管理
-
- }else if(type == 'snapshot'){
- //随手拍
- uni.navigateTo({
- url: "/pages_safetyExamine/views/snapshotManage/snapshotAdd",
- });
- }else if(type == 'remoteDoorOpening'){
- //远程开门
- uni.navigateTo({
- url: "/pages_manage/views/accessControl/remoteOpen",
- });
- }else if(type == 'chemicalsManagement'){
- //化学品管控
-
- }
- },//获取用户身份标识"adminGentle": false, 管理员身份 "rectifyGentle": false, 院级管理员collegeGentle 整改身份"applyGentle": false 检查者身份
- async getGentleIdentifier(routeUrl) {
- let self = this;
- const {
- data
- } = await getGentleIdentifier();
- if (data.code == 200) {
- let pageType = null
- // 如果是管理员 检查者和整改者
- let list = [];
- if (data.data.adminGentle || data.data.collegeGentle) { //校级管理员
- 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
- })
- }
- if (!data.data.adminGentle && !data.data.applyGentle && !data.data.myApplyGentle && !data.data
- .rectifyGentle && !data.data.collegeGentle) {
- }
- uni.setStorageSync('gentleIdentifier', list)
- uni.setStorageSync('gentleIdentifierData', data.data)
- if (list.length > 0) {
- uni.navigateTo({
- url: "/pages_safetyExamine/views/safetyExamineWorkbench",
- });
- } else {
- uni.showToast({
- title: '您没有管理员/检查者/整改者身份,请联系管理员',
- icon: "none",
- mask: true,
- duration: 2000
- });
- }
- }
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- .teacherHome {
- flex:1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- .data-board {
- flex:1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- .home-page {
- flex:1;
- display: flex;
- flex-direction: column;
- overflow: scroll;
- .top-page-title{
- text-align: center;
- font-size:28rpx;
- background-color:#0183FA;
- color:#fff;
- }
- .top-back-img{
- position: absolute;
- top:0;
- left:0;
- width:750rpx;
- height:539rpx;
- background: url("@/pages/images/newImage/img_sy_bg@1x.png");
- background-size 100%;
- background-repeat: no-repeat;
- .position-img{
- z-index:5;
- position: absolute;
- left: 0;
- top: 10rpx;
- width: 400rpx;
- height: 88rpx;
- }
- .position-data-button{
- z-index:5;
- position: absolute;
- right:0;
- top:40rpx;
- width:160rpx;
- height:50rpx;
- line-height:50rpx;
- background-color:#0183fa;
- color:#fff;
- font-size:28rpx;
- text-align: center;
- border-top-left-radius: 30rpx;
- border-bottom-left-radius: 30rpx;
- }
- }
- .button-one-box{
- z-index:5;
- background: #fff;
- width: 690rpx;
- border-radius:20rpx;
- padding:13px 0 20px;
- overflow: hidden;
- margin:330rpx 30rpx 0;
- .button-min{
- display: inline-block;
- overflow: hidden;
- width:172rpx;
- height:123rpx;
- margin-top:23rpx;
- .button-img{
- display: block;
- width:80rpx;
- height:80rpx;
- margin:0 auto;
- }
- .button-name{
- margin-top:15rpx;
- height:28rpx;
- line-height:28rpx;
- font-size:28rpx;
- text-align: center;
- color:#333;
- }
- }
- }
- .button-two-box{
- z-index:5;
- width: 690rpx;
- height: 120rpx;
- display: flex;
- margin:20rpx 30rpx 0;
- .button-big-box{
- width:335rpx;
- display: flex;
- border-radius:20rpx;
- img{
- display: block;
- margin:20rpx 31rpx 0 36rpx;
- height:80rpx;
- width:80rpx;
- }
- .button-min-box{
- view:nth-child(1){
- line-height:32rpx;
- height:32rpx;
- font-size:32rpx;
- color:#333;
- margin:20rpx 0 18rpx;
- }
- view:nth-child(2){
- line-height:28rpx;
- height:28rpx;
- font-size:28rpx;
- color:#999;
- }
- }
- }
- }
- .button-three-box{
- z-index:5;
- width: 690rpx;
- height: 150rpx;
- margin:20rpx 30rpx 0;
- .button-big-box{
- border-radius:20rpx;
- background-color: #FFF0DD;
- display: flex;
- img{
- display: block;
- width:134rpx;
- height:104rpx;
- margin:23rpx 34rpx 0 30rpx;
- }
- .button-min-box{
- view:nth-child(1){
- line-height:30rpx;
- height:30rpx;
- font-size:30rpx;
- color:#FF8C00;
- margin:35rpx 0 20rpx;
- }
- view:nth-child(2){
- line-height:26rpx;
- height:26rpx;
- font-size:26rpx;
- color:#666666;
- }
- }
- }
- }
- }
- }
- </style>
|