style(supervision): 详情弹窗去除标题并固定tab切换位置
This commit is contained in:
@@ -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 !== '') {
|
||||
|
||||
Reference in New Issue
Block a user