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

722 lines
17 KiB

2 months ago
<template>
<cs-page>
2 months ago
<view
class="detail-container"
:style="{
3 weeks ago
paddingBottom: isSelect.length > 0 ? '140rpx' : '40rpx'
2 months ago
}"
>
2 months ago
<view class="box detail">
3 weeks ago
<text class="wd-font-800 wd-text-16" style="color: #071437">
2 months ago
{{ detail.title }}
</text>
2 months ago
<view class="tagList">
3 weeks ago
<view class="tag" v-if="detail.deptName">
{{ detail.deptName }}
</view>
<view class="tag">
{{
$dict.echoDicValue(dictMap.task_priority, detail.priority)
}}
</view>
2 months ago
<view
v-for="(tag, index) in detail.tagList"
:key="index"
class="tag"
>
{{ tag }}
</view>
2 months ago
</view>
2 months ago
<view
class="wd-flex wd-text-13"
style="justify-content: space-between"
>
3 weeks ago
<view class="wd-flex" style="align-items: center; gap: 8rpx">
<u-icon name="calendar" color="#17C653" size="16" />
<text
class="wd-text-13"
style="font-weight: bold; margin-right: 8rpx"
>
2 months ago
{{
`${$util.formatDate(
detail.startDate,
3 weeks ago
'YYYY年M月D日'
)} ${$util.formatDate(detail.endDate, 'YYYY年M月D日')}`
2 months ago
}}
2 months ago
</text>
2 months ago
</view>
2 months ago
</view>
3 weeks ago
<cs-text-more :value="detail.description" />
2 months ago
<view class="audit">
2 months ago
<cs-dict-tag
:dict="dictMap.task_state"
:value="detail.status"
></cs-dict-tag>
2 months ago
</view>
</view>
<u-sticky>
2 months ago
<view
:class="[
'options-container',
OptionsOffset.isTop ? 'isTop' : ''
]"
ref="optionRef"
id="options"
>
<van-dropdown-menu active-color="#17C653" style="flex: 1">
2 months ago
<van-dropdown-item
2 months ago
v-if="showItem(['director'])"
:value="queryParams.departmentId"
3 weeks ago
:options="dropOption.dept"
2 months ago
@change="
v => {
2 months ago
querySelect(v, 'departmentId')
2 months ago
}
"
/>
2 months ago
<van-dropdown-item
2 months ago
v-if="showItem(['queue', 'director'])"
:value="queryParams.userId"
use-before-toggle
@before-toggle="getUserOption"
2 months ago
:options="userList"
@change="
v => {
2 months ago
querySelect(v, 'userId')
2 months ago
}
"
/>
2 months ago
<van-dropdown-item
:value="queryParams.Inspections_status"
3 weeks ago
:options="dropOption.status"
2 months ago
@change="
v => {
querySelect(v, 'inspectionsStatus')
2 months ago
}
"
/>
</van-dropdown-menu>
<view style="flex: 0 0 120rpx">
2 months ago
<text style="color: #17c653">{{ list.length }}</text>
条记录
2 months ago
</view>
</view>
2 months ago
</u-sticky>
2 months ago
<view
class="record"
v-for="record in list"
:key="record.id"
@tap="goRecord(record)"
>
2 months ago
<view
2 months ago
:class="{
select: true,
isSelect: isSelect.includes(record.id)
}"
@tap.native.stop="select(record.id)"
2 months ago
v-if="['3', null].includes(record.inspectionStatus)"
2 months ago
>
3 weeks ago
<u-icon name="checkbox-mark" size="16" color="#fff"></u-icon>
2 months ago
</view>
<view class="disable" v-else></view>
<view class="info">
3 weeks ago
<view class="name">
{{ record.enterpriseName }}
</view>
<view
style="
font-size: 26rpx;
padding-right: 3rem;
margin-bottom: 4rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 528rpx;
overflow: hidden;
"
>
2 months ago
{{ record.enterpriseAddress }}
</view>
3 weeks ago
<view class="tagList" style="margin-top: 16rpx">
2 months ago
<view
v-for="(item, index) in record.tagList"
:key="index"
class="tag"
>
{{ item }}
</view>
2 months ago
</view>
2 months ago
</view>
2 months ago
<view class="audit" v-show="record.inspectionStatus">
2 months ago
<cs-dict-tag
:dict="dictMap.Inspections_status"
:value="record.inspectionStatus"
></cs-dict-tag>
2 months ago
</view>
</view>
3 weeks ago
<u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
v-if="load != 'nomore'"
/>
2 months ago
<view class="btn-box" v-if="isSelect.length > 0">
2 months ago
<view class="confirm-btn" @tap="replay">
已选择({{ isSelect.length }})
</view>
2 months ago
</view>
3 weeks ago
<u-modal
:show="model.show"
closeOnClickOverlay
@close="closeModel"
borderRadius="32rpx"
>
2 months ago
<view class="wd-flex wd-flex-col" style="gap: 20px">
<view class="header">
<view class="row-1">
已选择
<text class="num">{{ isSelect.length }}项记录</text>
转移给
</view>
<view class="row-2">每次只能选择一人</view>
2 months ago
</view>
2 months ago
<view class="staff-list">
<view
class="staff"
2 months ago
v-for="staff in model.list"
:key="staff.userId"
2 months ago
:style="{
2 months ago
'--select-color':
model.isSelect == staff.userId ? '#17c653' : '#f1f1f4'
2 months ago
}"
2 months ago
@click="selectUser(staff.userId)"
2 months ago
>
2 months ago
<u-avatar
size="40"
shape="circle"
:src="staff.avatar"
></u-avatar>
2 months ago
<view class="info">
2 months ago
<view class="name">{{ staff.realName }}</view>
<view class="dept">{{ staff.roleName[0] }}</view>
2 months ago
</view>
<view class="isSelect">
2 months ago
<u-icon
name="checkbox-mark"
size="16px"
color="#fff"
></u-icon>
2 months ago
</view>
2 months ago
</view>
</view>
</view>
2 months ago
<template #confirmButton>
<view class="wd-flex wd-flex-center">
2 months ago
<view class="confirm-btn" @tap="submitReplay">转移给TA</view>
2 months ago
</view>
</template>
</u-modal>
2 months ago
</view>
</cs-page>
</template>
<script>
2 months ago
import { getDeptTree, getDictBatchByType } from '@/api/system/dict.js'
import { TaskApi } from '@/api/task/index.js'
import { InspectionsApi } from '@/api/inspections/index.js'
2 months ago
import { getUserList } from '@/api/system/user.js'
2 months ago
export default {
data() {
return {
2 months ago
// 任务详情
2 months ago
detail: {
2 months ago
id: '',
description: ''
},
list: [],
// 是否展开文本
isShowAllText: false,
// 已选中
isSelect: [],
dictMap: {},
//u-sticky 样式开关
OptionsOffset: {
top: 0,
isTop: false
2 months ago
},
2 months ago
// 查询条件
queryParams: {
2 months ago
departmentId: '',
inspectionsStatus: '',
2 months ago
pageSize: 8,
pageNo: 1,
2 months ago
userId: ''
2 months ago
},
load: 'loadmore',
model: {
2 months ago
show: false,
list: [],
isSelect: ''
2 months ago
},
2 months ago
userList: [
{
value: '',
text: '按人员'
}
3 weeks ago
],
// 下拉选项
dropOption: {
dept: [],
userList: [],
status: []
}
2 months ago
}
},
3 weeks ago
async onLoad(res) {
2 months ago
this.detail.id = res.id
3 weeks ago
await this.getDict()
2 months ago
},
2 months ago
onPageScroll(e) {
this.OptionsOffset.isTop = e.scrollTop + 10 > this.OptionsOffset.top
},
onReady() {
this.getOptionOffset()
},
onReachBottom() {
this.loadMore()
},
onPullDownRefresh() {
this.reset()
},
2 months ago
onShow() {
this.init()
this.reset()
},
2 months ago
methods: {
2 months ago
getOptionOffset() {
const query = uni.createSelectorQuery().in(this)
query
.select('#options')
.boundingClientRect(data => {
this.OptionsOffset.top = data.top
})
.exec()
},
2 months ago
showItem(query) {
return this.$roles.checkRole(query)
},
2 months ago
/**
* 获取字典
*/
async getDict() {
2 months ago
const dict = await getDictBatchByType({
3 weeks ago
type: ['task_state', 'Inspections_status', 'task_priority'].join(
','
)
2 months ago
})
2 months ago
const dept = await getDeptTree()
2 months ago
this.dictMap = {
2 months ago
...dict.data,
dept: dept.data
}
3 weeks ago
this.dropOption = {
dept: [
{
value: '',
text: '按部门'
},
...dept.data.map(d => {
return {
value: d.id,
text: d.name
}
})
],
status: [
{
value: '',
text: '按状态'
},
...dict.data.task_state.map(d => {
return {
...d,
value: d.value,
text: d.label
}
})
]
}
2 months ago
},
getDropdownOption(key) {
const keyMap = {
dept: '按部门',
Inspections_status: '按状态'
}
if (!this.dictMap[key]) return []
if (key == 'dept') {
return [
...this.dictMap[key].map(d => {
return {
...d,
value: d.id,
text: d.name
}
}),
{
value: '',
text: keyMap[key]
}
]
}
return [
...this.dictMap[key].map(d => {
return {
value: d.value,
text: d.label
}
}),
{ value: '', text: keyMap[key] }
]
},
querySelect(v, key) {
2 months ago
if (key == 'departmentId') {
this.queryParams.userId = ''
}
2 months ago
this.queryParams[key] = v.detail
2 months ago
this.queryList()
2 months ago
},
async init() {
2 months ago
const res = await TaskApi.getDetail(this.detail.id)
2 months ago
this.detail = res.data
},
2 months ago
async getUser() {
const res = await getUserList(this.queryParams.departmentId)
return res.data
2 months ago
},
2 months ago
async getList() {
2 months ago
if (!this.$roles.checkRole(['director'])) {
this.queryParams.departmentId = this.$store.getters.deptId
}
2 months ago
uni.showToast({
title: '加载中',
mask: true,
icon: 'loading'
})
this.load = 'loading'
2 months ago
const { data } = await InspectionsApi.getList({
...this.queryParams,
taskId: this.detail.id
})
2 months ago
this.list.push(...data.list)
this.load = 'loadmore'
if (this.list.length == data.total) {
this.load = 'nomore'
2 months ago
}
uni.stopPullDownRefresh()
2 months ago
uni.hideToast()
2 months ago
},
2 months ago
getUserOption({ detail }) {
this.getUser().then(res => {
this.userList = [
3 weeks ago
{
value: '',
text: '按人员'
},
2 months ago
...res.map(i => {
return {
...i,
value: i.userId,
text: i.realName
}
3 weeks ago
})
2 months ago
]
detail.callback(true)
})
},
2 months ago
goBack() {
uni.switchTab({
url: '/pages/task'
})
},
2 months ago
loadMore() {
if (this.load == 'nomore') {
uni.showToast({
title: '没有更多了',
icon: 'none'
})
return
}
this.queryParams.pageNo++
this.getList()
},
select(id) {
if (this.isSelect.includes(id)) {
this.isSelect = this.isSelect.filter(i => i != id)
} else {
this.isSelect.push(id)
}
},
async reset() {
this.queryParams = {
2 months ago
departmentId: '',
2 months ago
Inspections_status: '',
pageSize: 8,
pageNo: 1,
2 months ago
userId: ''
2 months ago
}
await this.queryList()
},
queryList() {
this.queryParams.pageNo = 1
this.load = 'loadmore'
this.list = []
this.getList()
},
replay() {
2 months ago
this.getUser().then(res => {
this.model.list = res
this.model.show = true
})
2 months ago
},
closeModel() {
2 months ago
this.model = {
show: false,
list: [],
isSelect: ''
}
},
selectUser(id) {
if (this.model.isSelect == id) {
this.model.isSelect = null
} else {
this.model.isSelect = id
}
2 months ago
},
goRecord(record) {
uni.navigateTo({
url: `/sub/task/record?taskId=${record.taskId}&recordId=${record.id}&enterpriseId=${record.enterpriseId}`
})
2 months ago
},
submitReplay() {
InspectionsApi.replay({
inspectionsId: this.isSelect,
userId: this.model.isSelect
}).then(res => {
uni.showToast({
icon: 'none',
title: '任务转移成功'
})
this.closeModel()
this.reset()
})
2 months ago
}
}
}
</script>
<style lang="scss" scoped>
.detail-container {
position: relative;
color: $cs-color-grey;
.box {
2 months ago
margin: 12px;
2 months ago
background-color: #fff;
border-radius: $cs-border-radius;
padding: 16px;
}
.detail {
display: flex;
flex-flow: column nowrap;
gap: 12px;
position: relative;
2 months ago
overflow: hidden;
.audit {
position: absolute;
right: 0;
top: 0;
3 weeks ago
transform: translateX(58rpx) translateY(24rpx) rotateZ(45deg);
2 months ago
transform-origin: 50% 50%;
}
2 months ago
}
2 months ago
.record {
background-color: #fff;
display: flex;
3 weeks ago
padding: 24rpx 32rpx;
2 months ago
align-items: center;
border-radius: var(--Number-8px, 8px);
3 weeks ago
border: 2rpx solid var(--LightMode-Grey-Grey-100, #f9f9f9);
margin: 24rpx;
2 months ago
margin-top: 0;
position: relative;
overflow: hidden;
.audit {
position: absolute;
right: 0;
top: 0;
transform-origin: 50% 50%;
3 weeks ago
transform: translateX(64rpx) translateY(18rpx) rotateZ(45deg);
2 months ago
}
.select {
3 weeks ago
width: 44rpx;
height: 44rpx;
border: 4rpx solid $cs-color-main;
border-radius: 12rpx;
2 months ago
display: flex;
align-items: center;
2 months ago
justify-content: center;
transition: 0.2s all;
3 weeks ago
margin-right: 32rpx;
2 months ago
}
.disable {
3 weeks ago
width: 44rpx;
height: 44rpx;
border: 4rpx solid #dbdfe9;
margin-right: 32rpx;
2 months ago
border-radius: 100%;
2 months ago
position: relative;
2 months ago
&::after {
content: '';
position: absolute;
inset: 0;
3 weeks ago
border-left: 4rpx solid #dbdfe9;
2 months ago
transform-origin: 0 50%;
3 weeks ago
transform: translateX(calc(50% - 2rpx)) rotateZ(45deg);
2 months ago
}
2 months ago
}
.isSelect {
background-color: $cs-color-main;
}
.info {
3 weeks ago
font-size: 26rpx;
2 months ago
.name {
3 weeks ago
font-size: 32rpx;
2 months ago
font-weight: 600;
color: #071437;
3 weeks ago
margin-bottom: 8rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 480rpx;
overflow: hidden;
2 months ago
}
}
&:active {
background-color: $cs-color-touch;
}
}
.btn-box {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 30px;
position: fixed;
bottom: 0;
left: 0;
}
.confirm-btn {
background-color: $cs-color-main;
padding: 12px 40px;
color: #fff;
font-size: 16px;
font-weight: 600;
border-radius: 120px;
}
.header {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
gap: 4px;
.row-1 {
font-size: 16px;
font-weight: 600;
color: #071437;
.num {
color: $cs-color-main;
padding: 0 4px;
2 months ago
}
2 months ago
}
.row-2 {
color: $cs-color-grey;
}
}
.staff-list {
width: 70vw;
display: flex;
flex-flow: row wrap;
gap: 12px;
max-height: 30vh;
overflow-y: scroll;
.staff {
width: calc(50% - 6px);
padding: 12px;
border-radius: 6px;
border: 1px solid var(--select-color, #dbdfe9);
position: relative;
gap: 8px;
display: flex;
2 months ago
.info {
.name {
3 weeks ago
font-size: 30rpx;
2 months ago
font-weight: bold;
}
.dept {
color: $cs-color-grey;
2 months ago
}
}
2 months ago
.isSelect {
position: absolute;
right: 0;
top: 0;
width: 30px;
height: 30px;
2 months ago
background-image: linear-gradient(
45deg,
rgba(255, 255, 255, 0) 50%,
var(--select-color, #f1f1f4) 50%
);
2 months ago
display: flex;
justify-content: flex-end;
align-items: flex-start;
}
2 months ago
}
}
2 months ago
}
.options-container {
overflow: hidden;
margin: 12px;
border-radius: 8px;
transition: 0.1s all;
display: flex;
padding: 0 12px;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
background-color: #fff;
border-bottom: 1px solid #f1f1f4;
color: #071437;
::v-deep .van-dropdown-menu {
background-color: transparent;
box-shadow: none;
--dropdown-menu-title-font-size: 13px;
--dropdown-menu-title-text-color: #071437;
2 months ago
.van-dropdown-menu__item {
flex: 0;
.van-dropdown-menu__title {
width: 80px;
}
}
2 months ago
}
}
2 months ago
.isTop {
margin: 12px 0;
border-radius: 0px;
}
3 weeks ago
::v-deep .u-popup__content {
border-radius: 32rpx;
}
2 months ago
</style>