!162 style(supervision): 反馈表格列名称居中

* style(supervision): 反馈表格列名称居中
* style(supervision): 详情弹窗去除标题并固定tab切换位置
* feat(xispeak): 反馈办理情况统计与脉搏一致
This commit is contained in:
wsm
2026-08-19 07:34:37 +00:00
parent 1d1846dcb6
commit 294e683a47
11 changed files with 30 additions and 24 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="inspecttask-detail-modal"
destroyOnClose
>
@@ -77,6 +76,7 @@
<div class="feedback-summary-desc">当前整改任务的工作进展反馈记录</div>
</div>
<a-table
class="feedback-table"
rowKey="id"
size="small"
bordered
@@ -114,7 +114,6 @@
import type { BasicColumn } from '/@/components/Table';
const visible = ref(false);
const title = ref('详情');
const width = 1100;
const activeKey = ref('item');
const record = ref<Recordable>({});
@@ -238,7 +237,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 !== '') {