| | |
| | | <template> |
| | | <div id="homeL"> |
| | | <div class="homeL-up"> |
| | | <span class="h1">保安服务企业管理平台</span> |
| | | <span class="h2">Security service enterprise management platform</span> |
| | | <span class="h1">{{titleCh}}</span> |
| | | <span class="h2">{{ titleEn }}</span> |
| | | <img class="img" :src="img" v-if="isImg"/> |
| | | </div> |
| | | <div class="homeL-bar"> |
| | |
| | | usedata: {}, |
| | | img:"", |
| | | isImg:false, |
| | | titleCh:"", |
| | | titleEn:"", |
| | | }; |
| | | }, |
| | | mounted() { |
| | |
| | | ...mapGetters(["userInfo"]), |
| | | }, |
| | | created(){ |
| | | |
| | | if (this.userInfo.role_name.indexOf("考勤管理员")>-1){ |
| | | this.titleCh = "保安员定点考勤系统" |
| | | this.titleEn = "Security Officer Designated Attendance System" |
| | | }else { |
| | | this.titleCh = "保安员分级统筹管理系统" |
| | | this.titleEn="Security Officer Grading and Coordination Management System" |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | //获取二维码图片 |
| | | if(this.userInfo.role_name == "公安管理员" || |
| | | this.userInfo.role_name == "administrator" || |
| | | if(this.userInfo.role_name == "公安管理员" || |
| | | this.userInfo.role_name == "administrator" || |
| | | this.userInfo.role_name == "admin" || |
| | | this.userInfo.role_name == "民警"){ |
| | | this.isImg = true; |
| | |
| | | // } |
| | | } |
| | | } |
| | | </style> |
| | | </style> |