style(supervision): 详情弹窗去除标题并固定tab切换位置

This commit is contained in:
wsm
2026-08-19 15:32:29 +08:00
parent ec79c4d6e7
commit e292b6aa07
3 changed files with 9 additions and 15 deletions
@@ -1,12 +1,11 @@
<template>
<a-modal
v-model:open="visible"
:title="title"
:width="width"
centered
:top="80"
:footer="null"
:maskClosable="true"
:bodyStyle="{ maxHeight: '70vh', overflowY: 'auto', padding: '16px 24px 20px' }"
:bodyStyle="{ maxHeight: '70vh', overflowY: 'auto', padding: '4px 24px 20px' }"
wrapClassName="takepulse-detail-modal"
destroyOnClose
>
@@ -115,6 +114,7 @@
<div class="feedback-summary-desc">当前事项的责任部门办理情况记录</div>
</div>
<a-table
class="feedback-table"
rowKey="id"
size="small"
bordered
@@ -153,7 +153,6 @@
import { feedbackStatusRowClassName } from '/@/views/bg/utils/feedbackStatusRender';
const visible = ref(false);
const title = ref('详情');
const width = 1100;
const activeKey = ref('item');
const record = ref<Recordable>({});
@@ -302,7 +301,6 @@
function open(currentRecord: Recordable) {
record.value = currentRecord || {};
title.value = '把把脉详情';
activeKey.value = 'item';
visible.value = true;
if (currentRecord?.id !== undefined && currentRecord?.id !== null && currentRecord?.id !== '') {