We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
} from '@/components/Table';
import { contractInfoApi, deleteContractApi, updateContractApi } from "@/api/service/management.api"; import { useMessage } from '@/hooks/web/useMessage'; import { getBasicColumns, getModalConfig } from "@/views/management/contract/tableMeta"; import { getFormConfig } from "@/views/management/contract/tableMeta"; import { useTableAction } from "@/views/comp/hooks/useTableAction"; import { ref } from "vue";
const { createMessage: msg } = useMessage(); const currentEditKeyRef = ref(''); const [registerTable,{deleteTableDataRecord}] = useTable({ title: '', useSearchForm: true, api: contractInfoApi, columns: getBasicColumns(), formConfig: getFormConfig(), modalConfig:getModalConfig(), showIndexColumn: false, showTableSetting: false, tableSetting: { fullScreen: true }, rowKey: 'id', actionColumn: { width: 100, title: 'Action', dataIndex: 'action', // slots: { customRender: 'action' }, }, });
当配置useSearchForm=true时,针对查询结果进行编辑,修改无法保存;
默认加载数据,当前含包含editValueRefs以及xxxCbs等属性
点击查询后,针对查询结果行进行编辑,当前行没有editValueRefs以及xxxCbs等属性
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days
Sorry, something went wrong.
No branches or pull requests
} from '@/components/Table';
import { contractInfoApi, deleteContractApi, updateContractApi } from "@/api/service/management.api";
import { useMessage } from '@/hooks/web/useMessage';
import { getBasicColumns, getModalConfig } from "@/views/management/contract/tableMeta";
import { getFormConfig } from "@/views/management/contract/tableMeta";
import { useTableAction } from "@/views/comp/hooks/useTableAction";
import { ref } from "vue";
const { createMessage: msg } = useMessage();
const currentEditKeyRef = ref('');
const [registerTable,{deleteTableDataRecord}] = useTable({
title: '',
useSearchForm: true,
api: contractInfoApi,
columns: getBasicColumns(),
formConfig: getFormConfig(),
modalConfig:getModalConfig(),
showIndexColumn: false,
showTableSetting: false,
tableSetting: { fullScreen: true },
rowKey: 'id',
actionColumn: {
width: 100,
title: 'Action',
dataIndex: 'action',
// slots: { customRender: 'action' },
},
});
当配置useSearchForm=true时,针对查询结果进行编辑,修改无法保存;
默认加载数据,当前含包含editValueRefs以及xxxCbs等属性
点击查询后,针对查询结果行进行编辑,当前行没有editValueRefs以及xxxCbs等属性
The text was updated successfully, but these errors were encountered: