Commit 2fc0c2f3 authored by 高滢's avatar 高滢

feat(选择合同弹窗): 名称不缩写

parent e27322c8
import { BasicColumn, FormSchema } from '@/components/Table'; import { BasicColumn, FormSchema } from '@/components/Table';
import { h } from 'vue';
import { Switch } from 'ant-design-vue';
import { setRoleStatus } from '@/api/demo/system';
import { useMessage } from '@/hooks/web/useMessage';
type CheckedType = boolean | string | number;
export interface Data { export interface Data {
table: { table: {
...@@ -83,14 +77,16 @@ export function getBasicColumns(): BasicColumn[] { ...@@ -83,14 +77,16 @@ export function getBasicColumns(): BasicColumn[] {
{ {
title: '项目名称', title: '项目名称',
dataIndex: 'projectName', dataIndex: 'projectName',
width: 180, width: 250,
fixed: 'left', fixed: 'left',
ellipsis: false,
}, },
{ {
title: '合同名称', title: '合同名称',
dataIndex: 'contrcatName', dataIndex: 'contrcatName',
width: 180, width: 200,
fixed: 'left', fixed: 'left',
ellipsis: false,
}, },
{ {
title: '收款单位', title: '收款单位',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment