bug修复

This commit is contained in:
wuhongjian 2022-12-12 20:01:49 +08:00
parent e5e2047a94
commit 338f251563
4 changed files with 7 additions and 4 deletions

View File

@ -92,6 +92,9 @@ z-index: 10010!important;
.ant-image-preview-wrap { .ant-image-preview-wrap {
z-index: 10012!important; z-index: 10012!important;
} }
.ant-picker-dropdown {
z-index: 10010!important;
}
.model-container .confirmChrome { .model-container .confirmChrome {
width: 140px; width: 140px;

View File

@ -343,7 +343,7 @@ export function getZwyBusinessList(params) {
return request({ return request({
url: '/act/task/getZwyBusinessList', url: '/act/task/getZwyBusinessList',
method: 'get', method: 'get',
params params,
}) })
} }
// //
@ -351,7 +351,7 @@ export function getZwyBusinessInfoById(params) {
return request({ return request({
url: '/act/task/getZwyBusinessInfoById', url: '/act/task/getZwyBusinessInfoById',
method: 'get', method: 'get',
params params,
}) })
} }

View File

@ -57,6 +57,7 @@
" "
> >
<a-image <a-image
style="max-height: 1.25rem"
:width="106" :width="106"
:preview="false" :preview="false"
:src=" :src="

View File

@ -142,7 +142,7 @@
let obj = { let obj = {
title: val.type, title: val.type,
total: val.total, total: val.total,
show: val.type === '市级' ? true : false, show: val.type === '市级' || val.type === '区级' ? true : false,
select: false, select: false,
key: val.type, key: val.type,
children: [], children: [],
@ -252,7 +252,6 @@
} }
} }
const showToolTip = (e) => { const showToolTip = (e) => {
if (e.target.clientWidth < 200) { if (e.target.clientWidth < 200) {
e.target.style.pointerEvents = 'none' // e.target.style.pointerEvents = 'none' //
} }