国际销售
This commit is contained in:
@ -208,7 +208,7 @@
|
||||
let res = await getRejectNodeList(_processId, _taskId);
|
||||
if (res && Array.isArray(res) && res.length > 0) {
|
||||
rejectNodeList.value = res;
|
||||
dialogTitle.value = `退回`;
|
||||
dialogTitle.value = `驳回`;
|
||||
if (res?.length) {
|
||||
res.forEach((nNode) => {
|
||||
if (!nNode.userList?.length) {
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
import { BasicTable, useTable, FormSchema, BasicColumn, TableAction } from '/@/components/Table';
|
||||
import { useMessage } from '/@/hooks/web/useMessage';
|
||||
import { useI18n } from '/@/hooks/web/useI18n';
|
||||
import { getLngContractFactPage,} from '/@/api/contract/ContractFact';
|
||||
import { getLngContractFactPageModal,} from '/@/api/contract/ContractFact';
|
||||
|
||||
const { t } = useI18n();
|
||||
const codeFormSchema: FormSchema[] = [
|
||||
@ -62,7 +62,7 @@
|
||||
|
||||
const [registerTable, { getDataSource, setTableData, updateTableDataRecord, reload }] = useTable({
|
||||
title: t('合同列表'),
|
||||
api: getLngContractFactPage,
|
||||
api: getLngContractFactPageModal,
|
||||
columns,
|
||||
|
||||
bordered: true,
|
||||
@ -76,7 +76,7 @@
|
||||
},
|
||||
immediate: false, // 设置为不立即调用
|
||||
beforeFetch: (params) => {
|
||||
return { ...params, valid: 'Y',approCode: 'YSP'};
|
||||
return { ...params, valid: 'Y',approCode: 'YSP',page:params.limit};
|
||||
},
|
||||
rowSelection: {
|
||||
type: props.selectType,
|
||||
|
||||
Reference in New Issue
Block a user