移动端
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.

384 lines
9.3 KiB

2 months ago
<template>
2 months ago
<cs-page :selected="1" title="执法任务" isTab>
2 months ago
<view class="page-container page">
3 weeks ago
<view class="drop-box">
<van-dropdown-menu active-color="#17C653">
<van-dropdown-item
:value="queryParams.createDeptId"
:options="getDropdownOption('dept')"
3 weeks ago
@change="
v => {
querySelect(v, 'createDeptId')
3 weeks ago
}
"
/>
<van-dropdown-item
:value="queryParams.zf_lx"
:options="getDropdownOption('zf_lx')"
@change="
v => {
querySelect(v, 'zf_lx')
}
"
/>
<van-dropdown-item
:value="queryParams.select_week"
:options="getDropdownOption('select_week')"
@change="
v => {
querySelect(v, 'select_week')
}
"
/>
</van-dropdown-menu>
</view>
2 months ago
<scroll-view
scroll-y="true"
:refresher-enabled="true"
@refresherrefresh="refresherrefresh"
:refresher-triggered="refresherTriggered"
@refresherpulling="refresherpulling"
@scrolltolower="loadMore"
class="list"
2 months ago
:enable-flex="true"
:style="{ height: `${listHeight}px` }"
2 months ago
>
2 months ago
<view
v-for="task in list"
:key="task.id"
class="wd-flex wd-items-center enterprise"
@click="goDetail(task.id)"
>
2 months ago
<view class="rate">
<van-circle
:value="task.status == '3' ? 0 : task.pace"
size="56"
type="2d"
color="#17c653"
1 month ago
:layer-color="task.status == '2' ? '#EAFFF1' : '#F1F1F4'"
2 months ago
:canvasId="`canvas-${task.id}`"
>
<template>
2 months ago
<u-count-to
:startVal="0"
:endVal="task.pace"
fontSize="16"
bold
duration="1000"
3 weeks ago
color="#071437"
2 months ago
></u-count-to>
3 weeks ago
<text style="color: #071437; font-size: 24rpx">%</text>
2 months ago
</template>
</van-circle>
</view>
3 weeks ago
<view class="wd-flex wd-flex-col">
<text
3 weeks ago
class="wd-font-800 wd-text-15"
style="
padding-right: 3rem;
margin-bottom: 4rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 432rpx;
overflow: hidden;
"
>
2 months ago
{{ task.title }}
</text>
3 weeks ago
<view class="wd-flex" style="margin-top: 4rpx">
2 months ago
<u-icon
name="calendar"
size="18"
:color="task.status == '2' ? '#17C653' : '#78829D'"
></u-icon>
2 months ago
<text
class="address wd-text-12"
3 weeks ago
style="margin-left: 4rpx"
2 months ago
:style="{
color: task.status == '2' ? '#17C653' : '#78829D'
}"
2 months ago
>
2 months ago
{{
$util.formatDate(task.endDate, 'YYYY年MM月DD日')
}}结束
2 months ago
</text>
2 months ago
</view>
3 weeks ago
<view class="tagList" style="margin-top: 16rpx">
2 months ago
<view class="tag" v-if="task.deptName">
{{ task.deptName }}
</view>
<view class="tag">
{{
1 month ago
$dict.echoDicValue(dictMap.task_priority, task.priority)
2 months ago
}}
</view>
<view
class="tag"
v-for="(tag, index) in task.tagList"
:key="index"
>
2 months ago
{{ tag }}
</view>
</view>
</view>
2 months ago
<view class="audit">
2 months ago
<cs-dict-tag
:dict="dictMap.task_state"
:value="task.status"
></cs-dict-tag>
2 months ago
</view>
</view>
<u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
v-if="load !== 'nomore'"
/>
<view style="height: 96rpx; width: 100%" v-else></view>
<cs-emty marginTop="24" v-if="list.length == 0"></cs-emty>
2 months ago
</scroll-view>
</view>
</cs-page>
2 months ago
</template>
<script>
2 months ago
import {
getDictBatchByType,
getDeptTree,
getTagData
} from '@/api/system/dict.js'
2 months ago
import { TaskApi } from '@/api/task/index.js'
2 months ago
export default {
2 months ago
data() {
return {
queryParams: {
pageSize: 10,
pageNo: 1,
2 months ago
zf_lx: '',
2 months ago
priority: '',
createDeptId: '',
2 months ago
select_week: '',
2 months ago
tagList: ''
},
2 months ago
listHeight: 0,
2 months ago
refresherTriggered: false,
list: [],
load: 'loadmore',
dictMap: {}
}
},
async onLoad() {
await this.getDict()
},
2 months ago
onReady() {
this.getPageHeight()
2 months ago
this.queryEnterprise()
},
methods: {
2 months ago
getPageHeight() {
const query = uni.createSelectorQuery().in(this)
query
.select('.page')
.boundingClientRect(data => {
this.listHeight = data.height - 55 - 25
2 months ago
})
.exec()
},
2 months ago
async getList() {
uni.showToast({
title: '加载中',
mask: true,
icon: 'loading'
})
this.load = 'loading'
2 months ago
const res = await TaskApi.getList(this.queryParams)
this.list.push(
...res.data.list.map((i, index) => {
return {
...i,
pace: (i.taskFinishNum / i.taskExecNum) * 100
}
})
)
2 months ago
this.load = 'loadmore'
if (this.list.length >= res.data.total) {
2 months ago
this.load = 'nomore'
}
uni.hideToast()
},
async getDict() {
const dept = await TaskApi.getDept()
2 months ago
const tags = await getTagData(['zf_lx'].join(','))
const dict = await getDictBatchByType({
type: ['select_week', 'task_state', 'task_priority'].join(',')
})
2 months ago
let tagMap = {}
tags.data.forEach(t => {
tagMap[t.tagCode] = t.children
})
this.dictMap = {
...tagMap,
...dict.data,
dept: dept.data
2 months ago
}
},
getDropdownOption(key) {
if (!this.dictMap[key]) return []
const keyMap = {
2 months ago
task_priority: '按等级',
2 months ago
zf_lx: '按类型',
dept: '按发布',
2 months ago
select_week: '按周期'
2 months ago
}
1 month ago
if (['zf_lx'].includes(key)) {
2 months ago
return [
3 weeks ago
{ value: '', text: keyMap[key] },
2 months ago
...this.dictMap[key].map(d => {
return {
value: d.id,
text: d.tagName
}
3 weeks ago
})
2 months ago
]
}
if (['dept'].includes(key)) {
2 months ago
return [
3 weeks ago
{ value: '', text: keyMap[key] },
2 months ago
...this.dictMap[key].map(d => {
return {
value: d.value,
text: d.label
}
3 weeks ago
})
2 months ago
]
2 months ago
}
return [
{ value: '', text: keyMap[key] },
...this.dictMap[key].map(d => {
return {
value: d.value,
text: d.label
}
})
]
2 months ago
},
querySelect(v, key) {
this.queryParams[key] = v.detail
this.queryEnterprise()
},
queryEnterprise() {
this.queryParams.pageNo = 1
this.load = 'loadmore'
this.list = []
2 months ago
this.queryParams.tagList = [this.queryParams.zf_lx]
.filter(i => i != '')
.join()
2 months ago
this.getList()
},
loadMore() {
if (this.load == 'nomore') {
uni.showToast({
title: '没有更多了',
icon: 'none'
})
return
}
this.queryParams.pageNo++
this.getList()
},
refresherpulling() {
const that = this
if (!this.refresherTriggered) {
this.refresherTriggered = true
setTimeout(() => {
that.refresherTriggered = false
}, 1000)
}
},
refresherrefresh() {
this.resetQuery()
},
async resetQuery() {
this.queryParams = {
pageSize: 10,
pageNo: 1,
2 months ago
zf_lx: '',
2 months ago
priority: '',
createDeptId: '',
2 months ago
select_week: '',
2 months ago
tagList: ''
}
await this.queryEnterprise()
},
goDetail(id) {
uni.navigateTo({
url: `/sub/task/detail?id=${id}`
})
}
}
2 months ago
}
</script>
2 months ago
<style lang="scss" scoped>
.page-container {
height: 100%;
overflow: hidden;
}
.list {
padding: 0 24rpx;
2 months ago
}
.enterprise {
padding: 24rpx;
2 months ago
background-color: #fff;
border-radius: $cs-border-radius;
gap: 24rpx;
margin-top: 24rpx;
2 months ago
position: relative;
overflow: hidden;
font-size: 24rpx;
border: 2rpx solid var(--LightMode-Grey-Grey-100, #f9f9f9);
&:last-child {
margin-bottom: 48rpx;
}
2 months ago
&:active {
background-color: $cs-color-touch;
}
2 months ago
.address {
color: $uni-text-color-grey;
}
.audit {
position: absolute;
2 months ago
right: 0;
top: 0;
2 months ago
transform-origin: 50% 50%;
3 weeks ago
transform: translateX(33px) translateY(9px) rotateZ(45deg);
2 months ago
}
.rate {
position: relative;
2 months ago
}
}
3 weeks ago
.drop-box {
padding: 24rpx;
border-bottom: 2rpx solid #f1f1f4;
background-color: #fff;
::v-deep .van-dropdown-menu {
box-shadow: none;
height: fit-content !important;
font-size: 26rpx;
padding: 12rpx 24rpx;
}
2 months ago
}
::v-deep .u-list {
padding: 24rpx;
2 months ago
}
::v-deep .u-count-num {
font-size: 16px;
font-family: 'WeChat Sans Std';
font-weight: 800;
}
</style>