修改bug
This commit is contained in:
parent
e29c9e9c8c
commit
ef0d9c0c77
|
|
@ -1,10 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="margin-top: -4px;">
|
||||||
<a-row>
|
<a-row>
|
||||||
<a-col v-for="(item, index) in orgTableList.records" :key="item.id" :xs="24" :sm="24"
|
<a-col v-for="(item, index) in orgTableList.records" :key="item.id" :xs="24" :sm="24"
|
||||||
:md="props.layout == 'full' ? 12 : 8" :lg="props.layout == 'full' ? 12 : 8" :xl="props.layout == 'full' ? 8 : 8"
|
:md="props.layout == 'full' ? 12 : 8" :lg="props.layout == 'full' ? 12 : 8" :xl="props.layout == 'full' ? 8 : 8"
|
||||||
:xxl="props.layout == 'full' ? 6 : 8" :xxxl="props.layout == 'full' ? 4 : 8"
|
:xxl="props.layout == 'full' ? 6 : 8" :xxxl="props.layout == 'full' ? 4 : 8"
|
||||||
:style="{ 'padding-right': ((index + 1) % 4 != 0) ? '14px' : '0px', 'padding-bottom': '14px' }">
|
:style="{ 'padding-right': '14px' , 'padding-bottom': '14px' }">
|
||||||
<OrgCard :orgInfo="item" :layout="props.layout"
|
<OrgCard :orgInfo="item" :layout="props.layout"
|
||||||
:is-selected="selectedOrgs.some(org => org.orgCode === item.orgCode)"
|
:is-selected="selectedOrgs.some(org => org.orgCode === item.orgCode)"
|
||||||
:is-directive-selected="directiveMainSelectedOrg?.orgCode === item.orgCode"
|
:is-directive-selected="directiveMainSelectedOrg?.orgCode === item.orgCode"
|
||||||
|
|
|
||||||
|
|
@ -39,11 +39,11 @@
|
||||||
<ElderTagModal ref="elderTagModal" />
|
<ElderTagModal ref="elderTagModal" />
|
||||||
<SyncStepListModal ref="syncStepListModal" />
|
<SyncStepListModal ref="syncStepListModal" />
|
||||||
<a-drawer title="详情" width="85vw" v-model:visible="listVisible"
|
<a-drawer title="详情" width="85vw" v-model:visible="listVisible"
|
||||||
:bodyStyle="{ height: '70vh', display: 'flex', flexDirection: 'column', overflow: 'auto' }"
|
:bodyStyle="{ height: '70vh', display: 'flex', flexDirection: 'column', overflow: 'auto',padding: '0px' }"
|
||||||
wrapClassName="org-list-modal" @cancel="handleCancelList">
|
wrapClassName="org-list-modal" @cancel="handleCancelList">
|
||||||
<ElderTagList ref="listRef"></ElderTagList>
|
<ElderTagList ref="listRef"></ElderTagList>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<a-button @click="handleCancelLogs" type="primary" style="float:right;">关闭</a-button>
|
<a-button @click="handleCancelList" type="primary" style="float:right;">关闭</a-button>
|
||||||
</template>
|
</template>
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
<a-drawer title="日志" width="85vw" v-model:visible="logsVisible"
|
<a-drawer title="日志" width="85vw" v-model:visible="logsVisible"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue