Commit 9f016c09c3b9dcae4b245c00b103c32c77fe1a4d

Authored by sqy
1 parent 874e9c12

'fix:[DEFECT-327]样式优化'

... ... @@ -52,9 +52,6 @@
52 52 slots: { customRender: 'action' },
53 53 fixed: 'right',
54 54 },
55   - // beforeFetch: (data) => {
56   - // Reflect.set(data, 'startTime', null);
57   - // },
58 55 });
59 56 const [registerDetailDrawer, { openDrawer }] = useDrawer();
60 57 const handleDetail = (record: Recordable) => {
... ...
... ... @@ -102,6 +102,8 @@
102 102 Modal.info({
103 103 title: '当前配置',
104 104 width: 600,
  105 + centered: true,
  106 + maskClosable: true,
105 107 content: h(JsonPreview, { data: JSON.parse(JSON.stringify(record.config)) }),
106 108 });
107 109 }
... ...
... ... @@ -3,9 +3,10 @@
3 3 v-bind="$attrs"
4 4 @register="register"
5 5 title="邮件发送参数"
  6 + centered
6 7 :okButtonProps="{ disabled: true }"
7 8 @ok="handleOK"
8   - width="700px"
  9 + :width="700"
9 10 >
10 11 <div class="pt-6px pr-6px">
11 12 <BasicForm @register="registerForm" />
... ...
... ... @@ -79,6 +79,8 @@
79 79 Modal.info({
80 80 title: '当前配置',
81 81 width: 480,
  82 + centered: true,
  83 + maskClosable: true,
82 84 content: h(JsonPreview, { data: JSON.parse(JSON.stringify(record.templateParam)) }),
83 85 });
84 86 }
... ...
... ... @@ -14,12 +14,12 @@ export const columns: BasicColumn[] = [
14 14 {
15 15 title: '短信平台',
16 16 dataIndex: 'typeDictText',
17   - width: 180,
  17 + width: 160,
18 18 },
19 19 {
20 20 title: '用途',
21 21 dataIndex: 'templatePurposeDictText',
22   - width: 180,
  22 + width: 160,
23 23 },
24 24 {
25 25 title: '状态',
... ... @@ -38,12 +38,12 @@ export const columns: BasicColumn[] = [
38 38 {
39 39 title: '备注',
40 40 dataIndex: 'remark',
41   - width: 180,
  41 + width: 160,
42 42 },
43 43 {
44 44 title: '发送时间',
45 45 dataIndex: 'sendTime',
46   - width: 180,
  46 + width: 160,
47 47 },
48 48 ];
49 49
... ...