601 lines
16 KiB
Vue
601 lines
16 KiB
Vue
<template>
|
||
<view class="page">
|
||
<u-navbar
|
||
class="u-navbar"
|
||
title="人员暂退"
|
||
placeholder
|
||
@leftClick="leftClick"
|
||
leftIconColor="#fff"
|
||
bgColor="#00337A"
|
||
:titleStyle="{ color: '#FFF', fontSize: '32rpx' }"
|
||
></u-navbar>
|
||
|
||
<scroll-view class="content" scroll-y="true">
|
||
<view class="view-box">
|
||
<view style="width: 96%; padding: 10rpx; margin: 0 auto; margin-bottom: 20rpx">{{ proName }}</view>
|
||
<view class="form-box">
|
||
<view class="form-input-box">
|
||
<view class="submitBtn" @click="handleSelect">添加暂退人员</view>
|
||
<view class="submitBtn" @click="handleOut">人员退场</view>
|
||
<view class="submitBtn" @click="handleBack">人员返场</view>
|
||
</view>
|
||
</view>
|
||
<view
|
||
style="width: 100%; height: 72vh; display: flex; align-items: center; justify-content: center"
|
||
v-if="isLoading"
|
||
>
|
||
<u-loading-icon :show="true" mode="circle" text="加载中" :vertical="true"></u-loading-icon>
|
||
</view>
|
||
<view
|
||
v-if="!isLoading && listData.length == 0"
|
||
style="
|
||
width: 96%;
|
||
height: 60vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
"
|
||
>
|
||
<image src="../../../../static/realName/noData.png" style="width: 100rpx; height: 120rpx" mode=""></image>
|
||
<view>暂无数据</view>
|
||
</view>
|
||
<u-list height="72vh" v-if="!isLoading && listData.length > 0">
|
||
<u-list-item v-for="(item, index) in listData" :key="index">
|
||
<view class="list-item">
|
||
<view class="content-box">
|
||
<view style="display: flex; align-items: center">
|
||
<view style="width: 10%" @change="checkSelect(item)">
|
||
<u-checkbox-group v-model="item.checked">
|
||
<u-checkbox
|
||
:customStyle="{ margin: '0rpx 10rpx' }"
|
||
:label="''"
|
||
:name="item.idNumber"
|
||
></u-checkbox>
|
||
</u-checkbox-group>
|
||
</view>
|
||
<view style="width: 85%" @change="checkSelect(item)">
|
||
<view class="item-text">
|
||
<text class="label">姓名:</text>
|
||
<text class="info">{{ item.name }}</text>
|
||
</view>
|
||
<view class="item-text">
|
||
<text class="label">身份证号:</text>
|
||
<text class="info">{{ item.idNumber }}</text>
|
||
</view>
|
||
<view class="item-text">
|
||
<text class="label">工程:</text>
|
||
<text class="info">{{ item.proName }}</text>
|
||
</view>
|
||
<view class="item-text">
|
||
<text class="label">班组:</text>
|
||
<text class="info">{{ item.teamName }}</text>
|
||
</view>
|
||
<view class="item-text">
|
||
<text class="label">是否考勤:</text>
|
||
<text class="info" v-if="item.isAtt == 0" style="color: #ff2f2f">未考勤</text>
|
||
<text class="info" v-if="item.isAtt == 1" style="color: #10bf95">已考勤</text>
|
||
</view>
|
||
<view class="item-text">
|
||
<text class="label">暂退时间:</text>
|
||
<text class="info">{{ item.furloughTime }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</u-list-item>
|
||
</u-list>
|
||
<view style="width: 92%; height: 80rpx; display: flex; align-items: center; justify-content: flex-end">
|
||
<view
|
||
@click="checkedAll"
|
||
style="
|
||
width: 20%;
|
||
height: 60rpx;
|
||
line-height: 60rpx;
|
||
text-align: center;
|
||
background: #00337a;
|
||
color: #fff;
|
||
border-radius: 10rpx;
|
||
"
|
||
v-if="listData.length > 0"
|
||
>
|
||
全选
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { pathToBase64, base64ToPath } from 'image-tools'
|
||
import config from '@/config'
|
||
export default {
|
||
data() {
|
||
return {
|
||
proId: uni.getStorageSync('realNameUser').proId,
|
||
proName: '',
|
||
teamId: uni.getStorageSync('realNameUser').teamId,
|
||
userId: uni.getStorageSync('realNameUser').userId,
|
||
keyWord: '',
|
||
keyWord1: '',
|
||
signData: {},
|
||
isCheckAll: false,
|
||
isLoading: false,
|
||
listData: []
|
||
}
|
||
},
|
||
onLoad(option) {
|
||
this.getPro()
|
||
},
|
||
onShow() {
|
||
this.selectSuspendList()
|
||
},
|
||
|
||
methods: {
|
||
// 获取工程名称
|
||
getPro() {
|
||
let param = {
|
||
id: this.proId,
|
||
subId: -1
|
||
}
|
||
uni.request({
|
||
url: config.realAppUrl + '/offLine/getPro',
|
||
method: 'post',
|
||
data: param,
|
||
header: {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
Authorization: uni.getStorageSync('realNameToken')
|
||
},
|
||
success: res => {
|
||
res = res.data
|
||
if (res.code == 200) {
|
||
console.log(res)
|
||
this.proName = res.data[0].abbreviation || ''
|
||
}
|
||
},
|
||
fail: err => {
|
||
console.log(err)
|
||
}
|
||
})
|
||
},
|
||
//暂退列表查询
|
||
selectSuspendList() {
|
||
let param = {
|
||
proId: uni.getStorageSync('realNameUser').proId
|
||
}
|
||
console.log(param)
|
||
this.listData = []
|
||
this.isLoading = true
|
||
uni.request({
|
||
url: config.realAppUrl + '/suspend/selectSuspendList',
|
||
method: 'post',
|
||
data: param,
|
||
header: {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
Authorization: uni.getStorageSync('realNameToken')
|
||
},
|
||
success: res => {
|
||
console.log(res)
|
||
this.isLoading = false
|
||
res = res.data
|
||
if (res.code == 200) {
|
||
res.data.forEach(item => {
|
||
item.checked = []
|
||
})
|
||
this.listData = res.data
|
||
} else {
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
fail: err => {
|
||
this.isLoading = false
|
||
console.log(err)
|
||
}
|
||
})
|
||
},
|
||
// 添加暂退人员
|
||
handleSelect() {
|
||
uni.navigateTo({
|
||
url: `/pages/realName/workbench/outPerson/outList`
|
||
})
|
||
},
|
||
//人员退场
|
||
handleOut() {
|
||
let paramsList = []
|
||
this.listData.forEach(item => {
|
||
if (item.checked.length > 0) {
|
||
paramsList.push(item.idNumber)
|
||
}
|
||
})
|
||
if (paramsList.length > 0) {
|
||
uni.showModal({
|
||
title: `确认是否退场所选人员?`,
|
||
cancelText: '取消',
|
||
confirmText: '确定',
|
||
success: res => {
|
||
if (res.confirm) {
|
||
console.log(paramsList)
|
||
let str = paramsList.join(',')
|
||
this.batchPersonOutPlace(str)
|
||
}
|
||
}
|
||
})
|
||
} else {
|
||
uni.showToast({
|
||
title: '请先勾选人员!',
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
//人员退场
|
||
batchPersonOutPlace(str) {
|
||
let param = {
|
||
idNumber: str
|
||
}
|
||
uni.request({
|
||
url: config.realBmwUrl + '/inOutSpace/batchPersonOutPlace',
|
||
method: 'post',
|
||
data: param,
|
||
header: {
|
||
'Content-Type': 'application/json',
|
||
Authorization: uni.getStorageSync('realNameToken')
|
||
},
|
||
success: res => {
|
||
console.log(res)
|
||
res = res.data
|
||
if (res.code == 200) {
|
||
this.selectSuspendList()
|
||
} else {
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
fail: err => {
|
||
console.log(err)
|
||
}
|
||
})
|
||
},
|
||
//人员返场
|
||
handleBack() {
|
||
let paramsList = []
|
||
this.listData.forEach(item => {
|
||
if (item.checked.length > 0) {
|
||
let obj = {
|
||
idNumber: item.idNumber,
|
||
proId: item.proId
|
||
}
|
||
paramsList.push(obj)
|
||
}
|
||
})
|
||
if (paramsList.length > 0) {
|
||
uni.showModal({
|
||
title: `确认是否返场所选人员?`,
|
||
cancelText: '取消',
|
||
confirmText: '确定',
|
||
success: res => {
|
||
if (res.confirm) {
|
||
console.log(paramsList)
|
||
this.addGivePerson(paramsList)
|
||
}
|
||
}
|
||
})
|
||
} else {
|
||
uni.showToast({
|
||
title: '请先勾选人员!',
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
//人员返场
|
||
addGivePerson(params) {
|
||
uni.request({
|
||
url: config.realAppUrl + '/suspend/addGivePerson',
|
||
method: 'post',
|
||
data: params,
|
||
header: {
|
||
'Content-Type': 'application/json',
|
||
Authorization: uni.getStorageSync('realNameToken')
|
||
},
|
||
success: res => {
|
||
console.log(res)
|
||
res = res.data
|
||
if (res.code == 200) {
|
||
uni.showToast({
|
||
title: res.data,
|
||
icon: 'none'
|
||
})
|
||
this.selectSuspendList()
|
||
} else {
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
fail: err => {
|
||
console.log(err)
|
||
}
|
||
})
|
||
},
|
||
// 单选
|
||
checkSelect(chosen) {
|
||
this.listData.forEach(item => {
|
||
if (item.idNumber == chosen.idNumber) {
|
||
if (item.checked.length == 0) {
|
||
item.checked = [item.idNumber]
|
||
} else {
|
||
item.checked = []
|
||
}
|
||
}
|
||
})
|
||
},
|
||
// 全选
|
||
checkedAll() {
|
||
this.isCheckAll = !this.isCheckAll
|
||
if (this.isCheckAll) {
|
||
this.listData.forEach(item => {
|
||
item.checked = [item.idNumber]
|
||
})
|
||
} else {
|
||
this.listData.forEach(item => {
|
||
item.checked = []
|
||
})
|
||
}
|
||
},
|
||
leftClick() {
|
||
console.log('返回')
|
||
uni.navigateBack({
|
||
delta: 1 // 返回
|
||
})
|
||
},
|
||
timeFormat(dateTime = null, formatStr = 'yyyy-mm-dd') {
|
||
let date
|
||
// 若传入时间为假值,则取当前时间
|
||
if (!dateTime) {
|
||
date = new Date()
|
||
}
|
||
// 若为unix秒时间戳,则转为毫秒时间戳(逻辑有点奇怪,但不敢改,以保证历史兼容)
|
||
else if (/^\d{10}$/.test(dateTime?.toString().trim())) {
|
||
date = new Date(dateTime * 1000)
|
||
}
|
||
// 若用户传入字符串格式时间戳,new Date无法解析,需做兼容
|
||
else if (typeof dateTime === 'string' && /^\d+$/.test(dateTime.trim())) {
|
||
date = new Date(Number(dateTime))
|
||
}
|
||
// 处理平台性差异,在Safari/Webkit中,new Date仅支持/作为分割符的字符串时间
|
||
// 处理 '2022-07-10 01:02:03',跳过 '2022-07-10T01:02:03'
|
||
else if (typeof dateTime === 'string' && dateTime.includes('-') && !dateTime.includes('T')) {
|
||
date = new Date(dateTime.replace(/-/g, '/'))
|
||
}
|
||
// 其他都认为符合 RFC 2822 规范
|
||
else {
|
||
date = new Date(dateTime)
|
||
}
|
||
|
||
const timeSource = {
|
||
y: date.getFullYear().toString(), // 年
|
||
m: (date.getMonth() + 1).toString().padStart(2, '0'), // 月
|
||
d: date.getDate().toString().padStart(2, '0'), // 日
|
||
h: date.getHours().toString().padStart(2, '0'), // 时
|
||
M: date.getMinutes().toString().padStart(2, '0'), // 分
|
||
s: date.getSeconds().toString().padStart(2, '0') // 秒
|
||
// 有其他格式化字符需求可以继续添加,必须转化成字符串
|
||
}
|
||
|
||
for (const key in timeSource) {
|
||
const [ret] = new RegExp(`${key}+`).exec(formatStr) || []
|
||
if (ret) {
|
||
// 年可能只需展示两位
|
||
const beginIndex = key === 'y' && ret.length === 2 ? 2 : 0
|
||
formatStr = formatStr.replace(ret, timeSource[key].slice(beginIndex))
|
||
}
|
||
}
|
||
return formatStr
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.page {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
background-color: #efefef;
|
||
box-sizing: border-box;
|
||
.tab-box {
|
||
width: 100%;
|
||
margin: 0rpx auto;
|
||
padding-top: 20rpx;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
background-color: #fff;
|
||
.tab-item {
|
||
height: 70upx;
|
||
width: 45%;
|
||
font-size: 30upx;
|
||
text-align: center;
|
||
line-height: 70upx;
|
||
color: #666;
|
||
}
|
||
.active {
|
||
color: #00337a;
|
||
border-radius: 10upx 10upx 0 0;
|
||
font-weight: bold;
|
||
}
|
||
.activeLine {
|
||
background: #00337a;
|
||
border-radius: 10upx;
|
||
width: 100%;
|
||
height: 6upx;
|
||
}
|
||
}
|
||
.submitBtn {
|
||
width: 35%;
|
||
height: 50rpx;
|
||
line-height: 50rpx;
|
||
border-radius: 10rpx;
|
||
background: #00337a;
|
||
color: #fff;
|
||
padding: 10rpx 16rpx;
|
||
margin: 0 20rpx;
|
||
text-align: center;
|
||
}
|
||
.content {
|
||
width: 100%;
|
||
height: 86vh;
|
||
margin-top: 10rpx;
|
||
// padding-bottom: 80rpx;
|
||
background-color: #efefef;
|
||
}
|
||
// padding: 0 20px;
|
||
.map-box {
|
||
width: 100%;
|
||
height: 68vh;
|
||
z-index: 9;
|
||
position: absolute;
|
||
bottom: 1vh;
|
||
background: #fff;
|
||
.map {
|
||
display: inline-block;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
}
|
||
|
||
.view-box {
|
||
width: 100%;
|
||
height: auto;
|
||
margin: 0rpx auto;
|
||
border-radius: 10rpx;
|
||
// background-color: red;
|
||
|
||
.title-view {
|
||
font-weight: 600;
|
||
margin-left: 20rpx;
|
||
border-bottom: 1rpx solid #efefef;
|
||
}
|
||
.form-box {
|
||
width: 100%;
|
||
height: auto;
|
||
font-size: 26rpx;
|
||
.form-input-box {
|
||
padding: 0 10rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
}
|
||
.view-item {
|
||
width: 94%;
|
||
margin: 0rpx auto;
|
||
padding: 10rpx;
|
||
display: flex;
|
||
border-bottom: 1rpx solid #efefef;
|
||
font-size: 26rpx;
|
||
.label {
|
||
width: 160rpx;
|
||
color: #666;
|
||
margin-bottom: 10rpx;
|
||
}
|
||
.img-box {
|
||
width: 94%;
|
||
height: auto;
|
||
margin: 0rpx auto;
|
||
padding: 10rpx;
|
||
display: flex;
|
||
border-bottom: 1rpx solid #efefef;
|
||
.img-item {
|
||
float: left;
|
||
width: 200upx;
|
||
height: 200upx;
|
||
border: 1px solid #ddd;
|
||
margin: 0 22rpx 20upx 0upx;
|
||
position: relative;
|
||
box-sizing: border-box;
|
||
background: #eee;
|
||
.img {
|
||
display: block;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.remove-btn {
|
||
position: absolute;
|
||
top: -18upx;
|
||
right: -18upx;
|
||
width: 44upx;
|
||
height: 44upx;
|
||
z-index: 2;
|
||
}
|
||
}
|
||
.upload-btn {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
.img {
|
||
width: 60upx;
|
||
height: 60upx;
|
||
margin: unset;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.sumbit-btn {
|
||
width: 94%;
|
||
height: 80rpx;
|
||
margin: 0 auto;
|
||
margin-bottom: 100rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background: #00337a;
|
||
color: #fff;
|
||
border-radius: 10rpx;
|
||
}
|
||
}
|
||
.list-item {
|
||
width: 100%;
|
||
height: auto;
|
||
background-color: #fff;
|
||
border-radius: 20rpx;
|
||
margin: 20rpx 0;
|
||
|
||
.content-box {
|
||
width: 96%;
|
||
height: auto;
|
||
margin: 20rpx;
|
||
// background-color: #F2F6F9;
|
||
padding: 10rpx 0;
|
||
|
||
.item-text {
|
||
width: 96%;
|
||
margin-left: 20rpx;
|
||
margin-top: 15rpx;
|
||
// display: flex;
|
||
align-items: center;
|
||
position: relative;
|
||
.label {
|
||
color: #999;
|
||
// font-weight: 500;
|
||
}
|
||
.info-right {
|
||
position: absolute;
|
||
top: 0rpx;
|
||
right: 40rpx;
|
||
}
|
||
.info {
|
||
color: #6f6f6f;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|