465 lines
11 KiB
Vue
465 lines
11 KiB
Vue
|
|
<template>
|
||
|
|
<div class="political-outlook">
|
||
|
|
<div class="content">
|
||
|
|
<div class="top-data-show">
|
||
|
|
<div class="top-left">
|
||
|
|
<el-date-picker v-model="dateTime" type="date" placeholder="请选择日期" value-format="YYYY-MM-DD" :clearable="true" />
|
||
|
|
<el-calendar v-model="calendarVal" style="width: 95%; margin-top: 15px" />
|
||
|
|
</div>
|
||
|
|
<div class="top-right">
|
||
|
|
<div class="right-title-data">
|
||
|
|
<div>
|
||
|
|
<span>1.00</span>
|
||
|
|
<span>天</span>
|
||
|
|
</div>
|
||
|
|
<span>本月影响天数</span>
|
||
|
|
</div>
|
||
|
|
<div class="right-inspect-data">
|
||
|
|
<div class="inspect-data-item">
|
||
|
|
<div class="inspect-style inspect-one"></div>
|
||
|
|
<span>多因素影响</span>
|
||
|
|
<span>0.50</span>
|
||
|
|
</div>
|
||
|
|
<div class="inspect-data-item">
|
||
|
|
<div class="inspect-style inspect-two"></div>
|
||
|
|
<span>雷电</span>
|
||
|
|
<span>0.50</span>
|
||
|
|
</div>
|
||
|
|
<div class="inspect-data-item">
|
||
|
|
<div class="inspect-style inspect-three"></div>
|
||
|
|
<span>大风</span>
|
||
|
|
<span>0.50</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="table-one">
|
||
|
|
<div class="tabList">
|
||
|
|
<div>序号</div>
|
||
|
|
<div>天气状况</div>
|
||
|
|
<div>影响工期天数</div>
|
||
|
|
<div>预警提示</div>
|
||
|
|
<div>预警记录时间</div>
|
||
|
|
<div>备注</div>
|
||
|
|
</div>
|
||
|
|
<el-scrollbar class="listBox" ref="refScrollbar">
|
||
|
|
<div v-for="(item, index) in partyMemberList" class="listStyle" :key="item.id">
|
||
|
|
<div>{{ index + 1 }}</div>
|
||
|
|
<div>{{ item.workerName }}</div>
|
||
|
|
<div class="list-img">
|
||
|
|
<el-image
|
||
|
|
fit="contain"
|
||
|
|
class="el-img"
|
||
|
|
:src="BASEURL + '/image/' + item.fieldAcquisitionUrl"
|
||
|
|
:preview-src-list="[BASEURL + '/image/' + item.fieldAcquisitionUrl]"
|
||
|
|
>
|
||
|
|
</el-image>
|
||
|
|
<!-- <img :src="item.fieldAcquisitionUrl" alt="" srcset=""> -->
|
||
|
|
</div>
|
||
|
|
<div>{{ item.phoneNumber }}</div>
|
||
|
|
<div>{{ item.personType == 1 ? item.teamName : item.personType == 2 ? item.departmentName : "" }}</div>
|
||
|
|
<div>{{ item.phoneNumber }}</div>
|
||
|
|
</div>
|
||
|
|
<div class="notoDta" v-if="partyMemberList.length == 0">
|
||
|
|
<img src="@/assets/images/noData.png" alt="" />
|
||
|
|
<p>暂无数据</p>
|
||
|
|
</div>
|
||
|
|
</el-scrollbar>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { ref, onMounted } from "vue";
|
||
|
|
import { GlobalStore } from "@/stores";
|
||
|
|
import { getCompanyDataList, getMemberInfoList } from "@/api/modules/labor";
|
||
|
|
import type { TabsPaneContext } from "element-plus";
|
||
|
|
const store = GlobalStore();
|
||
|
|
const props = defineProps(["tip"]);
|
||
|
|
const BASEURL = import.meta.env.VITE_API_URL;
|
||
|
|
const dateTime = ref(null);
|
||
|
|
const calendarVal = ref(new Date());
|
||
|
|
const activeName = ref("first");
|
||
|
|
const activeIndex = ref("1" as any);
|
||
|
|
const onlineWorkList = ref([
|
||
|
|
{ name: "在职", value: 1 },
|
||
|
|
{ name: "离职", value: 2 }
|
||
|
|
]);
|
||
|
|
const enterpriseListData = ref([] as any);
|
||
|
|
const memberTypeList = ref([
|
||
|
|
{ name: "劳务人员", value: 1 },
|
||
|
|
{ name: "管理人员", value: 2 },
|
||
|
|
{ name: "临时人员", value: 3 }
|
||
|
|
]);
|
||
|
|
const alarmTypeList = ref(["报警", "预警"]);
|
||
|
|
let pageNo = ref(1 as any);
|
||
|
|
let moreScroll = ref(true as any);
|
||
|
|
const refScrollbar = ref(null as any); // 绑定到滚动的盒子上
|
||
|
|
const deviceList = ref([] as any); // 设备列表
|
||
|
|
const searchForm = ref({
|
||
|
|
memberType: "",
|
||
|
|
belongCompany: "",
|
||
|
|
workState: "",
|
||
|
|
name: "",
|
||
|
|
idCard: ""
|
||
|
|
});
|
||
|
|
|
||
|
|
const partyMemberList = ref({} as any);
|
||
|
|
const handleClick = (tab: TabsPaneContext, event: Event) => {
|
||
|
|
// console.log(tab, event)
|
||
|
|
// console.log('tab',tab.index)
|
||
|
|
// console.log('activeName',activeName.value)
|
||
|
|
// if(activeName.value === 'first') console.log('1')
|
||
|
|
// if(activeName.value === 'second') console.log('2')
|
||
|
|
// if(activeName.value === 'third') console.log('3')
|
||
|
|
activeIndex.value = tab.index;
|
||
|
|
console.log("activeIndex", activeIndex.value);
|
||
|
|
};
|
||
|
|
//获取企业列表
|
||
|
|
const getCompanyList = async () => {
|
||
|
|
let data = {
|
||
|
|
projectSn: store.sn,
|
||
|
|
enterpriseName: "",
|
||
|
|
userEnterpriseId: store.userInfo?.userEnterpriseId
|
||
|
|
};
|
||
|
|
const res: any = await getCompanyDataList(data);
|
||
|
|
if (res.code == 200) {
|
||
|
|
enterpriseListData.value = res.result;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
//获取数据
|
||
|
|
const getMemberCountList = async (tip: any) => {
|
||
|
|
let requestData: any = {
|
||
|
|
projectSn: store.sn,
|
||
|
|
personType: searchForm.value.memberType, //人员类型
|
||
|
|
enterpriseId: searchForm.value.belongCompany, //所属企业
|
||
|
|
inserviceType: searchForm.value.workState, //在职状态
|
||
|
|
idCard: searchForm.value.idCard, //身份证号
|
||
|
|
workerName: searchForm.value.name, //姓名
|
||
|
|
pageNo: tip == "search" ? 1 : pageNo.value,
|
||
|
|
pageSize: 100
|
||
|
|
};
|
||
|
|
if (props.tip == "实时") {
|
||
|
|
requestData.presence = 1;
|
||
|
|
} else if (props.tip == "日累积") {
|
||
|
|
requestData.attendance = 1;
|
||
|
|
} else {
|
||
|
|
requestData.inserviceType = 1;
|
||
|
|
}
|
||
|
|
const res: any = await getMemberInfoList(requestData);
|
||
|
|
console.log("获取人员信息列表", res);
|
||
|
|
if (tip == "more") {
|
||
|
|
partyMemberList.value = partyMemberList.value.concat(res.result.records);
|
||
|
|
} else {
|
||
|
|
partyMemberList.value = res.result.records;
|
||
|
|
}
|
||
|
|
// 为图片拼接IP
|
||
|
|
// partyMemberList.value.map((item:any) => {
|
||
|
|
// item.fieldAcquisitionUrl = BASEURL + '/image/' + item.fieldAcquisitionUrl
|
||
|
|
// })
|
||
|
|
if (res.result.pages == pageNo.value) {
|
||
|
|
moreScroll.value = false;
|
||
|
|
} else {
|
||
|
|
pageNo.value = pageNo.value + 1;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
onMounted(async () => {
|
||
|
|
await getCompanyList();
|
||
|
|
await getMemberCountList("search");
|
||
|
|
refScrollbar.value.wrapRef.addEventListener("scroll", (e: any) => {
|
||
|
|
// console.log("滚动容器", e);
|
||
|
|
const scrollTop = e.target.scrollTop;
|
||
|
|
const scrollHeight = e.target.scrollHeight;
|
||
|
|
const clientHeight = e.target.clientHeight;
|
||
|
|
// console.log("滚动容器", scrollTop, scrollHeight, clientHeight);
|
||
|
|
// 向上加载更多
|
||
|
|
if (scrollTop >= scrollHeight - clientHeight - 1) {
|
||
|
|
// console.log("加载更多");
|
||
|
|
if (moreScroll.value) {
|
||
|
|
getMemberCountList("more");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@mixin flex {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.political-outlook {
|
||
|
|
height: 97%;
|
||
|
|
margin: 0 60px;
|
||
|
|
.content {
|
||
|
|
height: 95%;
|
||
|
|
width: 100%;
|
||
|
|
margin-top: 10px;
|
||
|
|
// background: url("@/assets/images/cardImg.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
padding: 20px 15px;
|
||
|
|
.top-statistics {
|
||
|
|
display: grid;
|
||
|
|
grid-gap: 20px;
|
||
|
|
grid-template-columns: repeat(3, 1fr);
|
||
|
|
color: white;
|
||
|
|
margin: 0 5%;
|
||
|
|
.statistics-item {
|
||
|
|
width: 240px;
|
||
|
|
height: 95px;
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
position: relative;
|
||
|
|
.title {
|
||
|
|
position: absolute;
|
||
|
|
top: 4%;
|
||
|
|
left: 4%;
|
||
|
|
}
|
||
|
|
&-content {
|
||
|
|
display: inline-block;
|
||
|
|
width: 50%;
|
||
|
|
height: auto;
|
||
|
|
text-indent: 1.5em;
|
||
|
|
}
|
||
|
|
&-content:nth-child(2) {
|
||
|
|
margin-top: 8%;
|
||
|
|
}
|
||
|
|
&-content:nth-child(3) {
|
||
|
|
margin-top: 8%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.statistics-item:nth-child(1) {
|
||
|
|
background: url("@/assets/images/commandScreen/bg6.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
.statistics-item:nth-child(2) {
|
||
|
|
background: url("@/assets/images/commandScreen/bg2.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
.statistics-item:nth-child(3) {
|
||
|
|
background: url("@/assets/images/commandScreen/bg4.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
.statistics-item:nth-child(4) {
|
||
|
|
background: url("@/assets/images/commandScreen/bg1.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
.statistics-item:nth-child(5) {
|
||
|
|
background: url("@/assets/images/commandScreen/bg3.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
.statistics-item:nth-child(6) {
|
||
|
|
background: url("@/assets/images/commandScreen/bg5.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.top-data-show {
|
||
|
|
display: flex;
|
||
|
|
.top-left {
|
||
|
|
width: 60%;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
:deep() {
|
||
|
|
.el-calendar {
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
.el-calendar__header {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.el-calendar__body {
|
||
|
|
padding: 0px;
|
||
|
|
}
|
||
|
|
.el-calendar-table thead {
|
||
|
|
background-color: #143a85;
|
||
|
|
th {
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
th:nth-child(1) {
|
||
|
|
border-left: 1px solid #284a8e;
|
||
|
|
}
|
||
|
|
th:last-child {
|
||
|
|
border-right: 1px solid #284a8e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.el-calendar-table .el-calendar-day:hover {
|
||
|
|
color: white;
|
||
|
|
background-color: #143a85;
|
||
|
|
}
|
||
|
|
.el-calendar-table td.is-today {
|
||
|
|
color: white;
|
||
|
|
background-color: #143a85;
|
||
|
|
}
|
||
|
|
.el-calendar-table tbody {
|
||
|
|
.el-calendar-table__row {
|
||
|
|
.prev,
|
||
|
|
.current,
|
||
|
|
.next {
|
||
|
|
border-color: #35538c;
|
||
|
|
color: white;
|
||
|
|
.el-calendar-day {
|
||
|
|
text-align: center;
|
||
|
|
height: 40px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.top-right {
|
||
|
|
width: 40%;
|
||
|
|
color: white;
|
||
|
|
.right-title-data {
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-direction: column;
|
||
|
|
> div {
|
||
|
|
span:nth-child(1) {
|
||
|
|
font-size: 18px;
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
> span {
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.right-inspect-data{
|
||
|
|
margin-top: 12%;
|
||
|
|
.inspect-data-item{
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
margin-bottom: 3%;
|
||
|
|
.inspect-style{
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
border: 1px solid #fff;
|
||
|
|
margin-right: 5px;
|
||
|
|
margin-top: 2px;
|
||
|
|
}
|
||
|
|
.inspect-one{
|
||
|
|
background-color: #EE1A1A;
|
||
|
|
}
|
||
|
|
.inspect-two{
|
||
|
|
background-color: #079CAF;
|
||
|
|
}
|
||
|
|
.inspect-three{
|
||
|
|
background-color: #FFDF00;
|
||
|
|
}
|
||
|
|
>span:nth-child(2){
|
||
|
|
margin-right: auto
|
||
|
|
}
|
||
|
|
>span:nth-child(3){
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.table-one {
|
||
|
|
height: 50%;
|
||
|
|
.tabList {
|
||
|
|
display: flex;
|
||
|
|
// width: 100%;
|
||
|
|
height: 10%;
|
||
|
|
background: url("@/assets/images/vehicleManagement/ListTitleImg.png") no-repeat;
|
||
|
|
background-size: 100% 100%;
|
||
|
|
// position: absolute;
|
||
|
|
left: 75.5%;
|
||
|
|
top: 75%;
|
||
|
|
color: #ccc;
|
||
|
|
font-size: calc(100vw * 14 / 1920);
|
||
|
|
line-height: 30px;
|
||
|
|
align-items: center;
|
||
|
|
margin-top: 1%;
|
||
|
|
div {
|
||
|
|
text-align: center;
|
||
|
|
width: 17%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.listBox {
|
||
|
|
height: 69%;
|
||
|
|
.listStyle {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
text-align: center;
|
||
|
|
color: #fff;
|
||
|
|
font-size: 12px;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
.list-img {
|
||
|
|
.el-img {
|
||
|
|
width: 30px;
|
||
|
|
height: 30px;
|
||
|
|
img {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
div {
|
||
|
|
width: 17%;
|
||
|
|
white-space: nowrap; //单行
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.listStyle:hover {
|
||
|
|
background: #091f3f;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
:deep() {
|
||
|
|
.el-tabs__item {
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
.el-tabs__item.is-active {
|
||
|
|
color: var(--el-color-primary);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.notoDta {
|
||
|
|
top: 35%;
|
||
|
|
width: 20%;
|
||
|
|
left: 40%;
|
||
|
|
position: absolute;
|
||
|
|
text-align: center;
|
||
|
|
img {
|
||
|
|
width: 40%;
|
||
|
|
margin: 5% 30%;
|
||
|
|
}
|
||
|
|
p {
|
||
|
|
color: #fff;
|
||
|
|
font-size: calc(100vw * 14 / 1920);
|
||
|
|
margin: -6% 37%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// element 组件样式
|
||
|
|
:deep() {
|
||
|
|
.el-date-editor .el-range-input,
|
||
|
|
.el-range-separator {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.el-input__wrapper {
|
||
|
|
background: #112d59;
|
||
|
|
}
|
||
|
|
.el-input__inner {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.el-button {
|
||
|
|
background-color: #2758c0;
|
||
|
|
color: white;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// ::v-deep .el-select .el-input .el-select__caret {
|
||
|
|
// color: #fff;
|
||
|
|
// }
|
||
|
|
</style>
|