| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- <template>
- <view class="container">
- <!-- 头部学生信息区域 -->
- <view class="header">
- <view class="img">
- <img :src="userInfo.headImage||'../static/imgs/headImage.png'">
- </view>
- <view class="msg">
- <view class="name">
- {{userInfo.name||"用户"}}
- </view>
- <view class="major">
- {{userInfo.college||"南昌交通学院"}}
- </view>
- </view>
- </view>
- <!-- 主体打卡区域 -->
- <view class="body">
- <!-- 卡片区域 -->
- <view class="card" v-if="list.length">
- <!-- 每一个卡片区域 -->
- <view :class="activeid ==item.id?'active_box':'item'" v-for="item in list" :key="item.id"
- @click="handleClick(item)">
- <view class="item_box">
- <view class="title">
- {{item.ruleName}}
- </view>
- <view class="time">
- {{item.timeRange}}
- </view>
- <view class="type">
- <img v-if="item.status==4" src="./imgs/success.png">
- <span v-if="item.status==4">
- {{format_time(item.updateTime)}}
- </span>
- <span v-if="item.status==4"> 已打卡</span>
- <span v-if="item.status==3">已超时</span>
- <span v-if="item.status==1||item.status==2">未打卡</span>
- </view>
- </view>
- </view>
- </view>
- <!-- list数组为空时的占位盒子 -->
- <view class="card" v-else></view>
- <!-- 打卡区域 -->
- <view :class="{clock:flags,active:!flags}" @click="handlePunch(contrastObj)">
- <view class="info" v-if="flags">
- 打卡
- </view>
- <view class="info" v-else>
- 无法打卡
- </view>
- <view class="time">
- {{nowTime}}
- </view>
- </view>
- <!-- 提示信息位置 -->
- <view class="address" v-if="flags">
- {{address}}
- </view>
- <view class="address" v-else>
- {{notes}}
- </view>
- </view>
- <!-- 底部导航栏区域 -->
- <view class="tab_bar">
- <navigator open-type="redirect" url="/pagesClockIn/home/home" class="tab_box">
- <img v-if="pageUrl=='pagesClockIn/home/home'" src="../static/imgs/home_active.png">
- <img v-else src="../static/imgs/home.png">
- <view v-if="pageUrl=='pagesClockIn/home/home'" class="tab_title_active">
- 首页
- </view>
- <view v-else class="tab_title">
- 首页
- </view>
- </navigator>
- <navigator open-type="redirect" url="/pagesClockIn/stat/stat" class="tab_box">
- <img v-if="pageUrl=='pagesClockIn/stat/stat'" src="../static/imgs/stat_active.png">
- <img v-else src="../static/imgs/stat.png">
- <view v-if="pageUrl=='pagesClockIn/stat/stat'" class="tab_title_active">
- 统计
- </view>
- <view v-else class="tab_title">
- 统计
- </view>
- </navigator>
- <navigator open-type="redirect" v-if="showTab" url="/pagesClockIn/my/my" class="tab_box">
- <img v-if="pageUrl=='pagesClockIn/my/my'" src="../static/imgs/my_active.png">
- <img v-else src="../static/imgs/my.png">
- <view v-if="pageUrl=='pagesClockIn/my/my'" class="tab_title_active">
- 我的
- </view>
- <view v-else class="tab_title">
- 我的
- </view>
- </navigator>
- </view>
- </view>
- </template>
- <script>
- var QQMapWX = require('../util/qqmap-wx-jssdk1.1/qqmap-wx-jssdk');
- var qqmapsdk;
- export default {
- data() {
- return {
- // 用户信息
- userInfo: {},
- // 打卡规则列表
- list: [],
- // 当前时间
- nowTime: "",
- // 当前定位位置信息
- address: "",
- // 定时器标识
- timer: null,
- // 提示信息
- notes: "",
- // 当前显示的是哪个规则id
- activeid: null,
- // 当前时间的时间戳
- timestamp: null,
- // 当前显示的规则具体信息
- contrastObj: {},
- // 当前用户定位经度
- myLng: 0,
- // 当前用户定位纬度
- myLat: 0,
- // 签到点中心经度
- centerLng: 0,
- // 签到点中心纬度
- centerLat: 0,
- // 签到半径
- radius: 0,
- // 距离签到点的距离
- distance: 0,
- // 是否可以打卡的标识
- flags: true,
- // 当前页面的路由地址
- pageUrl: "",
- // 是否显示底部 我的 导航栏
- showTab: false
- };
- },
- onLoad() {
- // 获取用户的个人信息数据
- this.getUserInfo()
- // 实例化API核心类
- qqmapsdk = new QQMapWX({
- // 申请的key
- key: 'R43BZ-2XROX-L7T45-T5OQI-IBDFT-GNBOI'
- });
- // 获取当前系统时间
- this.getNowTime()
- },
- onShow() {
- this.getPageUrl()
- // 获取当前位置的详细信息
- this.getLocationData()
- // 获取当前时间的时间戳
- this.getTimestamp()
- },
- onUnload() {
- if (this.timer) {
- clearInterval(this.timer)
- }
- },
- // 下拉刷新
- onPullDownRefresh() {
- uni.removeStorageSync("manager")
- uni.removeStorageSync("sub-administrator")
- qqmapsdk = new QQMapWX({
- // 申请的key
- key: 'R43BZ-2XROX-L7T45-T5OQI-IBDFT-GNBOI'
- });
- this.getNowTime()
- this.getTimestamp()
- this.getUserInfo()
- this.getLocationData()
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 1500)
- },
- methods: {
- getPageUrl() {
- // 获取当前打开过的页面路由数组
- let routes = getCurrentPages();
- // 获取当前页面路由,也就是最后一个打开的页面路由
- let curRoute = routes[routes.length - 1].route
- this.pageUrl = curRoute
- },
- // 获取当前时间
- getNowTime() {
- if (this.timer) {
- clearInterval(this.timer)
- }
- this.timer = setInterval(() => {
- let date = new Date()
- let hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
- let minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
- let seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
- this.nowTime = hours + ':' + minutes + ':' + seconds
- }, 1000)
- },
- // 获取当前时间的时间戳
- getTimestamp() {
- let dates = new Date()
- let times = dates.getTime()
- this.timestamp = times
- },
- // 获取用户详细信息
- async getUserInfo() {
- // let userId = uni.getStorageSync("userInfo").id
- let res = await this.$myRequest_clockIn({
- // url: `/attendance/api/system/user/detail/${userId}`,
- url: `/attendance/api/system/user/detail`,
- })
- // console.log(res);
- if (res.code == 200) {
- this.userInfo = res.data
- uni.setStorageSync("userInfo", this.userInfo)
- if (this.userInfo.roles) {
- let temList = []
- this.userInfo.roles.forEach((ele) => {
- temList.push(ele.id)
- })
- let flag = temList.includes(2)
- let flag2 = temList.includes(3)
- if (flag) {
- uni.setStorageSync("manager", flag)
- } else {
- uni.removeStorageSync("manager")
- }
- if (flag2) {
- uni.setStorageSync("sub-administrator", flag2)
- } else {
- uni.removeStorageSync("sub-administrator")
- }
- let flag_show = uni.getStorageSync("manager")
- let flag_show2 = uni.getStorageSync("sub-administrator")
- if (flag_show || flag_show2) {
- this.showTab = true
- } else {
- this.showTab = false
- }
- }
- }
- },
- // 获取当前定位位置信息
- getLocationData() {
- qqmapsdk.reverseGeocoder({
- success: (res) => {
- // console.log(res);
- if (res.status == 0) {
- // 获取详细地址信息 经纬度
- this.address = res.result.address
- this.myLat = res.result.location.lat
- this.myLng = res.result.location.lng
- // 获取当天的打卡列表数组
- this.getRulesList()
- } else {
- uni.showToast({
- title: "请求定位失败",
- icon: 'none'
- })
- }
- }
- })
- },
- // 获取打卡规则列表
- async getRulesList() {
- let res = await this.$myRequest_clockIn({
- url: "/attendance/api/sign/check/in/list/today",
- })
- // console.log(res);
- if (res.code == 200) {
- if (res.data.length == 0) {
- this.flags = false
- this.notes = "无打卡任务无需打卡"
- } else {
- this.list = res.data.reverse()
- this.activeid = this.list[0].id
- this.contrastObj = this.list[0]
- this.changeType()
- }
- }
- },
- // 对比信息改变打卡的状态显示
- changeType() {
- if (this.contrastObj.status == 4) {
- this.flags = false
- this.notes = "已打卡,无需再次打卡"
- } else {
- // 没有到打卡时间 或者 超过打卡时间 的状态
- if (this.timestamp < this.contrastObj.beginTime || this.timestamp > this.contrastObj.endTime) {
- this.flags = false
- this.notes = "未到打卡时间无法打卡"
- }
- // 到了打卡时间,判断是否在打卡范围内
- else {
- if (this.contrastObj.locations.length) {
- let temList = []
- temList = this.contrastObj.locations.map((ele) => {
- this.centerLat = ele.lat
- this.centerLng = ele.lng
- this.radius = ele.radius
- let red1 = this.myLat * Math.PI / 180.0;
- let red2 = this.centerLat * Math.PI / 180.0;
- let a = red1 - red2;
- let b = this.myLng * Math.PI / 180.0 - this.centerLng * Math.PI / 180.0;
- let R = 6378137;
- let distance = R * 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(
- red1) *
- Math.cos(red2) *
- Math.pow(Math.sin(b / 2), 2)));
- this.distance = distance.toFixed(2) * 1;
- // console.log(this.distance);
- // console.log(this.radius);
- if (this.distance <= this.radius) {
- return 1
- } else {
- return 2
- }
- })
- let temFlag = temList.indexOf(1)
- if (temFlag == -1) {
- this.flags = false
- this.notes = "不在管理员设定范围内,无法打卡"
- } else {
- this.flags = true
- }
- }
- }
- }
- },
- // 点击每一个打卡规则回调
- handleClick(item) {
- // console.log(item);
- this.getTimestamp()
- this.contrastObj = item
- this.activeid = item.id
- this.changeType()
- },
- // 点击打卡按钮回调
- handlePunch(info) {
- if (this.flags) {
- let obj = JSON.stringify(info)
- // 获取用户位置权限
- uni.authorize({
- scope: 'scope.userLocation',
- success() {
- uni.navigateTo({
- url: `/pagesClockIn/location/location?obj=${obj}`
- })
- },
- fail() {
- uni.showModal({
- title: '提示',
- content: '请先开启定位权限,否则将无法使用定位功能',
- cancelText: '不授权',
- confirmText: '授权',
- success: function(res) {
- if (res.confirm) {
- uni.openSetting({
- success(res) {}
- })
- }
- }
- });
- }
- })
- }
- },
- // 格式化时间
- format_time(timestamp) {
- //时间戳为10位需*1000,时间戳为13位的话不需乘1000
- var date = new Date(timestamp);
- var h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
- var m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
- let strDate = h + m;
- return strDate;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- padding-top: 20rpx;
- background-color: #F2F2F2;
- .header {
- display: flex;
- margin: 0 30rpx 30rpx 30rpx;
- width: 690rpx;
- height: 130rpx;
- background-color: #fff;
- .img {
- margin: 30rpx;
- width: 70rpx;
- height: 70rpx;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .msg {
- margin: 30rpx 0;
- height: 70rpx;
- line-height: 36rpx;
- .name {
- font-size: 32rpx;
- font-weight: 400;
- }
- .major {
- font-size: 24rpx;
- font-weight: 400;
- color: #A6A6A6;
- }
- }
- }
- .body {
- margin: 0 30rpx;
- width: 690rpx;
- height: 919rpx;
- background-color: #fff;
- .card {
- padding-top: 30rpx;
- white-space: nowrap;
- height: 160rpx;
- overflow-x: auto;
- .active_box {
- display: inline-block;
- margin: 0 15rpx;
- width: 300rpx;
- height: 130rpx;
- line-height: 12rpx;
- border-radius: 8rpx;
- font-weight: 400;
- background-color: #E6E6E6;
- border: 1rpx solid #0094FC;
- .item_box {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- height: 130rpx;
- padding-left: 30rpx;
- .title {
- font-size: 28rpx;
- }
- .time {
- font-size: 24rpx;
- }
- .type {
- font-size: 24rpx;
- color: #808080;
- img {
- margin-right: 10rpx;
- width: 20rpx;
- height: 20rpx;
- }
- }
- }
- }
- .item {
- display: inline-block;
- margin: 0 15rpx;
- width: 300rpx;
- height: 130rpx;
- line-height: 12rpx;
- border-radius: 8rpx;
- font-weight: 400;
- background-color: #E6E6E6;
- .item_box {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- height: 130rpx;
- padding-left: 30rpx;
- .title {
- font-size: 28rpx;
- }
- .time {
- font-size: 24rpx;
- }
- .type {
- font-size: 24rpx;
- color: #808080;
- img {
- margin-right: 10rpx;
- width: 20rpx;
- height: 20rpx;
- }
- }
- }
- }
- }
- .clock {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin: auto;
- margin-top: 145rpx;
- width: 300rpx;
- height: 300rpx;
- border-radius: 150rpx;
- text-align: center;
- color: #fff;
- background: linear-gradient(180deg, #00ACFC 0%, #0082FC 100%);
- .info {
- height: 58rpx;
- font-size: 40rpx;
- font-weight: 700;
- }
- .time {
- height: 41rpx;
- font-size: 28rpx;
- font-weight: 400;
- }
- }
- .active {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin: auto;
- margin-top: 145rpx;
- width: 300rpx;
- height: 300rpx;
- border-radius: 150rpx;
- text-align: center;
- color: #fff;
- background: linear-gradient(180deg, #CCCCCC 0%, #B3B3B3 100%);
- .info {
- height: 58rpx;
- font-size: 40rpx;
- font-weight: 700;
- }
- .time {
- height: 41rpx;
- font-size: 28rpx;
- font-weight: 400;
- }
- }
- .address {
- margin-top: 34rpx;
- height: 35rpx;
- line-height: 35rpx;
- text-align: center;
- font-size: 24rpx;
- font-weight: 400;
- color: #808080;
- }
- }
- .tab_bar {
- position: fixed;
- left: 0;
- bottom: 0;
- display: flex;
- width: 750rpx;
- height: 128rpx;
- border-top: 1rpx solid #CCC;
- background-color: #fff;
- .tab_box {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- img {
- margin-bottom: 10rpx;
- width: 54rpx;
- height: 48rpx;
- }
- .tab_title {
- font-size: 20rpx;
- }
- .tab_title_active {
- font-size: 20rpx;
- color: #0082FC;
- }
- }
- }
- }
- </style>
|