You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

849 lines
17 KiB

2 years ago
<template>
<view class="page">
<view class="top">
<view class="pure_top">
</view>
<view class="calendar">
<view class="date_year">
2 years ago
<view style="display: flex;">
<picker :value="dates.year" mode="date" fields="year" @change="dateYear($event)">
<view>{{dates.year}}</view>
</picker>
2 years ago
<img src="../../static/down.png" style="width: 30rpx;height: 30rpx; margin:10rpx 0 0 10rpx;"
alt="">
2 years ago
</view>
<view style="margin: 0 10rpx;">|</view>
2 years ago
<view class="">
{{today.month}}.{{dates.day}}
</view>
</view>
<view class="monthbox">
<view :class="{month_color : item==dates.month}" class="month_class" v-for="(item,key) in months"
:key="key" @tap="dateMonth(item)">
<text>{{item}}</text>
</view>
</view>
</view>
</view>
<view class="taskbox">
<view class="itembox" v-for="(item,key) in user" :key="key">
<view class="top">
<view class="left">
<img src="@/static/4412.png" alt="">
<view class="">
2 years ago
<text>{{item.name}}</text>
2 years ago
</view>
</view>
<view class="right">
2 years ago
2 years ago
</view>
</view>
<view class="charts-box" style="display: flex;">
<img src="@/static/dadui/10.png" alt="">
2 years ago
<view v-if="identity" style="width: 50%;">
2 years ago
<qiun-data-charts type="ring" :opts="opts" :chartData="chartData" />
2 years ago
</view>
<view
style="width: 50%; display: flex;justify-content: center;align-items: center;flex-direction: column;">
<view class="tagbox" v-for="(item,key) in chartData.series[0].data" :key="key">
<view class="tag" :style="'background:'+opts.color[key]+';'">
</view>
<text>{{item.name}}-------{{item.value}}</text>
</view>
</view>
</view>
2 years ago
<view style="width: 100rpx; margin-top: 10rpx;">
<button @tap="index=true">新增</button>
</view>
2 years ago
</view>
2 years ago
2 years ago
</view>
<view class="listbox">
<view class="item" v-for="(item,key) in list" :key="key">
<view class="typebox">
<view
style="width: 12rpx; height: 34rpx; margin-top: 6rpx; background-color: #9D80FF; color: #9D80FF ;">
1
</view>
<view class="type">
{{item.taskType}}
</view>
</view>
<view class="namebox">
<view class="name">
{{item.company.companyName}}
</view>
<view style=" width: 30%; padding-left:20rpx;">
<view v-if="item.company.useNature=='重点单位'" class="tag" style="">
{{item.company.useNature}}
</view>
<view v-else class="tag2">
{{item.company.useNature}}
</view>
</view>
</view>
<view class="staffbox">
<view class="staff" style="flex: 1;">
<view>主负责人:</view>
<view class="zhu">{{item.organization.name}}</view>
</view>
2 years ago
<view v-if="item.approvalStatus=='通过'||item.approvalStatus=='驳回'" class="jiancha"
:class="{jiancha_color:item.approvalStatus=='通过'}">
2 years ago
{{item.approvalStatus}}
</view>
<view v-else class="jiancha" style="color: #FFBA19;">
{{item.approvalStatus}}
2 years ago
</view>
</view>
<view style="display: flex;">
<view style="flex:1">
<view class="staffbox">
<view class="staff">
<view>协助人员:</view>
<view v-for="(i,k) in item.supervisors" :key="k"
style="display: flex;justify-content: center;align-items: center;">
<img v-if="i.posts && i.posts[0] == '主查人员'" src="../../static/447.png" alt="">
<img v-if="i.posts && i.posts[0] == '协查人员'" src="../../static/446.png" alt="">
{{i.name}}
</view>
</view>
<!-- <view class="implement">
<button>执行</button>
</view> -->
</view>
<view class="staffbox">
<view class="staff">
2 years ago
<view>申请时间:</view>
<view>{{item.creationTime}}</view>
<view class="" @tap="chakan(item)">
查看
</view>
2 years ago
</view>
2 years ago
2 years ago
<!-- -->
</view>
</view>
<view class="implement">
2 years ago
<!-- <view class="button">
<button @tap="start(item)">执行</button>
</view> -->
2 years ago
</view>
</view>
</view>
</view>
2 years ago
<view class="taskadd" v-if="index">
2 years ago
<view class="itembox">
<view class="item_top">
<view class="">
任务申领
</view>
2 years ago
<view class="" @tap="indexs()">
x
</view>
</view>
<view class="item_content" v-if="index">
<TaskAdd @apply="apply"></TaskAdd>
2 years ago
2 years ago
</view>
<view class="item_content" v-if="index2">
<TaskDet @apply="apply"></TaskDet>
2 years ago
2 years ago
</view>
</view>
</view>
<view class="taskadd" v-if="index2">
<view class="itembox2">
<view class="item_top">
2 years ago
<view class="">
2 years ago
详情
</view>
<view class="" @tap="indexs()">
2 years ago
x
</view>
</view>
2 years ago
2 years ago
<view class="item_content" v-if="index2">
<TaskDet :cid="Cid"></TaskDet>
2 years ago
2 years ago
</view>
</view>
</view>
</view>
</template>
<script>
import TaskAdd from "../../components/task/add.vue"
2 years ago
import TaskDet from "../../components/task/details.vue"
2 years ago
export default {
2 years ago
components: {
2 years ago
TaskAdd,
2 years ago
TaskDet
},
2 years ago
data() {
return {
title: 'Hello',
identity: 0,
progressNub: 60,
chartData: {
series: [{
data: [{
2 years ago
name: "已接任务",
2 years ago
value: 0
}, {
2 years ago
name: "未接任务",
2 years ago
value: 0
}, {
2 years ago
name: "拒绝任务",
2 years ago
value: 0
}, ]
}]
},
dates: {
year: 2022,
month: 8,
day: 0,
},
2 years ago
today: {
2 years ago
month: 8,
},
opts: {
rotate: false,
rotateLock: false,
color: ["#FACE15", "#04F1C9", "#3990F1"],
padding: [5, 5, 5, 5],
dataLabel: false,
legend: {
show: false,
fontColor: "#fff",
position: "right",
lineHeight: 20
},
title: {
name: "任务总数",
fontSize: 15,
color: "#fff"
},
subtitle: {
name: "0",
fontSize: 25,
color: "#fff"
},
2 years ago
2 years ago
extra: {
ring: {
width: 50,
height: 50,
ringWidth: 10,
activeOpacity: 0.5,
activeRadius: 10,
offsetAngle: 0,
labelWidth: 15,
border: false,
customRadius: 60,
borderWidth: 3,
borderColor: "#FFFFFF",
centerColor: "#57B5FF",
linearType: "none"
}
}
},
2 years ago
user: [{
tasknub: 0
}],
isSupervisor: false,
2 years ago
list: [],
nub: 0,
2 years ago
index: false,
index2: false,
Cid: "",
xuanchuan: false,
2 years ago
months: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
}
},
onLoad() {
let a = uni.getStorageSync("user");
let date = new Date()
this.dates.month = date.getMonth() + 1
2 years ago
this.today.month = date.getMonth() + 1
this.dates.year = date.getFullYear()
this.dates.day = date.getDate()
2 years ago
// this.getOrganizations()
2 years ago
2 years ago
},
onReady() {
2 years ago
this.getOrganizations()
2 years ago
},
methods: {
getOrganizations() {
const that = this
let selectedTime = this.dates.year + '-' + this.dates.month + '-' + '01'
let userId = uni.getStorageSync("user").id
2 years ago
let roles = uni.getStorageSync("user").roles
2 years ago
console.log(uni.getStorageSync("user"));
let isSupervisor = roles.find(item => {
2 years ago
return item.name.indexOf('检查') != -1
})
isSupervisor ? this.isSupervisor = true : this.isSupervisor = false
2 years ago
let params = {
ContainsChildren: true,
pageSize: 9999
}
this.$request.get("/api/Organizations", params, (data, res) => {
console.log(res);
2 years ago
if (!this.isSupervisor) {
2 years ago
this.user = res.items
2 years ago
for (let i = 0; i < this.user.length; i++) {
this.user[i]["tasknub"] = 0
this.user[i]["rate"] = 0
2 years ago
}
2 years ago
} else {
2 years ago
this.getSupervisor()
2 years ago
}
this.getTaskListOfStation(userId)
})
},
2 years ago
getSupervisor() {
this.$request.get("/api/Users/Inspectors", {}, (data, res) => {
2 years ago
console.log(res);
let userName = uni.getStorageSync("user").roles[0].name;
// console.log(uni.getStorageSync("user").roles);
2 years ago
for (let i = 0; i < res.length; i++) {
if (res[i].userName = userName) {
2 years ago
this.user = [res[i]]
2 years ago
// console.log(this.user,8070);
for (let i = 0; i < this.user.length; i++) {
this.user[i]["tasknub"] = 0
this.user[i]["rate"] = 0
2 years ago
}
}
}
})
},
2 years ago
getTaskListOfStation(item) {
console.log(item);
2 years ago
let organizationId = uni.getStorageSync("user").organizationId
2 years ago
const that = this
let selectedTime = this.dates.year + '-' + this.dates.month + '-' + '01'
let params = {
Month: selectedTime,
2 years ago
// SupervisorId: item,
2 years ago
OrganizationId: organizationId,
CreatorId: item,
2 years ago
PageNumber: 1,
2 years ago
approvalStatus: '通过',
2 years ago
PageSize: 9999
}
this.$request.get("/api/PlanTasks", params, (data, res) => {
console.log(res);
this.list = res.items
2 years ago
this.list["tasknub"] = 0
for (let e = 0; e < this.user.length; e++) {
2 years ago
for (let i = 0; i < that.list.length; i++) {
2 years ago
for (let k = 0; k < that.list[i].supervisors.length; k++) {
2 years ago
// that.list[i].supervisors[k].name=that.list[i].supervisors[k].name.slice(0,3)+"..."
}
2 years ago
if (that.list[i].creationTime) {
2 years ago
let text = that.list[i].creationTime.substring(0, 10)
that.list[i].creationTime = text
2 years ago
}
2 years ago
if (that.list[i].inspectionResult != '待检查') {
this.user[e].tasknub += 1
2 years ago
}
}
}
console.log(this.list);
this.getServerData();
})
},
getServerData() {
//模拟从服务器获取数据时的延时
this.nub = 0
this.chartData = {
series: [{
data: [{
2 years ago
name: "已接任务",
2 years ago
value: 0
}, {
2 years ago
name: "未接任务",
2 years ago
value: 0
}, {
2 years ago
name: "拒绝任务",
2 years ago
value: 0
}, ]
}]
}
2 years ago
for (let i = 0; i < this.list.length; i++) {
2 years ago
if (this.list[i].approvalStatus == "待处理") {
this.chartData.series[0].data[1].value += 1
this.nub += 1
} else if (this.list[i].approvalStatus == "驳回") {
this.chartData.series[0].data[2].value += 1
this.nub += 1
} else {
this.chartData.series[0].data[0].value += 1
this.nub += 1
2 years ago
}
}
2 years ago
this.opts.subtitle.name = this.nub
2 years ago
this.identity = 1
2 years ago
},
2 years ago
dateYear(e) {
2 years ago
console.log(e);
this.dates.year = e.detail.value
this.getOrganizations()
},
dateMonth(e) {
this.dates.month = e
this.getOrganizations()
2 years ago
},
2 years ago
apply() {
2 years ago
let that = this;
2 years ago
this.index = false
2 years ago
this.getOrganizations()
},
2 years ago
indexs() {
this.index = false
this.index2 = false
2 years ago
},
2 years ago
chakan(e) {
this.Cid = e
this.index2 = true
2 years ago
},
2 years ago
start(item) {
2 years ago
2 years ago
uni.navigateTo({
2 years ago
url: '/pages/task/details?id=' + item.company.id,
})
2 years ago
}
}
}
</script>
<style lang="scss">
.top {
position: relative;
top: 0;
left: 0;
}
2 years ago
.taskadd {
2 years ago
width: 100vw;
height: 100vh;
position: fixed;
left: 0;
top: 0;
background: rgba(49, 49, 51, 0.2);
z-index: 10;
2 years ago
.itembox {
2 years ago
// background: #fff;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
2 years ago
height: 600rpx;
.item_top {
2 years ago
height: 60rpx;
background: #F5F7FA;
border-radius: 40rpx 40rpx 0 0;
2 years ago
padding: 10rpx 40rpx 0 40rpx;
2 years ago
display: flex;
2 years ago
view:nth-child(1) {
2 years ago
flex: 1;
}
}
2 years ago
.item_content {
2 years ago
background-color: #fff;
height: 100%;
}
}
2 years ago
.itembox2 {
2 years ago
// background: #fff;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 400rpx;
2 years ago
.item_top {
2 years ago
height: 60rpx;
background: #F5F7FA;
border-radius: 40rpx 40rpx 0 0;
2 years ago
padding: 10rpx 40rpx 0 40rpx;
2 years ago
display: flex;
2 years ago
view:nth-child(1) {
2 years ago
flex: 1;
}
}
2 years ago
.item_content {
2 years ago
background-color: #fff;
height: 100%;
}
}
}
2 years ago
2 years ago
.pure_top {
width: 100%;
height: 220rpx;
position: absolute;
z-index: 0;
overflow: hidden;
}
.pure_top::after {
content: "";
width: 100%;
height: 220rpx;
position: absolute;
left: 0;
top: 0;
z-index: -1;
border-radius: 0 0 100% 100%;
background: linear-gradient(180deg, #57B5FF 0%, #616DFD 100%);
}
.month_color {
border-radius: 48rpx;
background-color: #317AFF;
color: #fff;
}
.calendar {
z-index: 1;
position: relative;
left: 74rpx;
top: 20rpx;
width: 80%;
height: 120rpx;
border-radius: 10rpx;
box-shadow: 0px 0px 20px 1px #C1D7FF;
background: #fff;
view {
height: 60rpx;
}
.date_year {
box-sizing: border-box;
display: flex;
background-color: #fff;
padding: 10rpx 0 0 10rpx;
}
.monthbox {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
.month_class {
width: 48rpx;
height: 48rpx;
text-align: center;
}
}
}
button {
width: 140rpx;
height: 70rpx;
color: #fff;
border-radius: 34rpx;
line-height: 70rpx;
font-size: 30rpx;
background-color: #327AFE;
}
.taskbox {
width: 90%;
margin: 40rpx auto;
border-radius: 20rpx;
background-color: #fff;
padding: 20rpx;
position: relative;
left: 0;
z-index: 10;
.itembox {
.top {
margin-top: 30rpx;
height: 60rpx;
display: flex;
.left {
display: flex;
flex: 1;
img {
width: 50rpx;
height: 50rpx;
}
text {
margin-right: 10rpx;
}
}
.right {
color: #909090;
display: flex;
.progress {
margin-top: 6rpx;
margin-right: 10rpx;
height: 34rpx;
flex: 1;
background: #E4E7EC;
.color {
height: 100%;
background-color: #14B389;
}
}
}
}
}
}
.charts-box {
// background-color: #5687fd;
height: 250rpx;
position: relative;
img {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
display: flex;
justify-content: center;
align-items: center;
.tagbox {
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
margin: 10rpx 0;
font-size: 32rpx;
.tag {
width: 20rpx;
height: 20rpx;
border-radius: 20rpx;
}
}
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
2 years ago
.login-box {
display: flex;
background: #8f8f94;
width: 100%;
height: 120rpx;
position: fixed;
bottom: 0;
left: 0;
.login-text {
color: #fff;
width: 60%;
display: flex;
font-size: 36rpx;
padding-left: 40rpx;
align-items: center;
}
.login-button {
flex: 1;
text-align: center;
margin-top: 20rpx;
}
}
2 years ago
.listbox {
2 years ago
width: 94%;
2 years ago
margin: -10rpx auto 0 auto;
.item {
background-color: #fff;
margin: 20rpx 0;
padding: 20rpx;
.namebox {
display: flex;
2 years ago
margin-bottom: 10rpx;
2 years ago
.name {
font-weight: 600;
font-size: 36rpx;
width: 70%;
height: 60rpx;
line-height: 60rpx;
2 years ago
white-space: nowrap;
/*内容超宽后禁止换行显示*/
overflow: hidden;
/*超出部分隐藏*/
text-overflow: ellipsis;
/*文字超出部分以省略号显示*/
2 years ago
}
.tag {
text-align: center;
width: 180rpx;
height: 60rpx;
line-height: 60rpx;
color: #FF6F51;
border: 1px solid #FF6F51;
background: rgba(255, 111, 81, 0.2400);
border-radius: 40rpx 40rpx 40rpx 40rpx;
2 years ago
2 years ago
}
.tag2 {
text-align: center;
width: 180rpx;
height: 60rpx;
line-height: 60rpx;
color: #14B488;
border: 1px solid rgba(30, 232, 177, 0.8);
background: rgba(30, 232, 177, 0.24);
border-radius: 40rpx 40rpx 40rpx 40rpx;
2 years ago
font-size: 18rpx;
2 years ago
}
}
}
}
.typebox {
display: flex;
2 years ago
margin: 14rpx 0;
2 years ago
.type {
width: 50%;
// border-left: #327AFE 6rpx solid;
font-size: 32rpx;
font-weight: 600;
padding-left: 10rpx;
}
.result {
width: 50%;
text-align: right;
color: #FF6F51;
}
}
.staffbox {
display: flex;
margin: 6rpx 0;
font-size: 30rpx;
.staff {
display: flex;
color: rgba(16, 15, 25, 0.48);
.zhu {
color: #100F19;
}
view {
margin-right: 20rpx;
}
img {
width: 40rpx;
height: 40rpx;
2 years ago
min-width: 40rpx;
min-height: 40rpx;
2 years ago
}
}
.jiancha {
2 years ago
2 years ago
margin-right: 10rpx;
}
2 years ago
.jiancha_color {
2 years ago
color: #14B488;
}
2 years ago
}
.implement {
margin-bottom: 10rpx;
.button {
width: 100%;
height: 100%;
padding-top: 20rpx;
}
// button {
// float: right;
// width: 80rpx;
// height: 40rpx;
// line-height: 40rpx;
// margin-top: 20rpx;
// }
}
</style>