优化
This commit is contained in:
@ -15,8 +15,8 @@
|
||||
|
||||
const { t } = useI18n();
|
||||
const columns: BasicColumn[] = [
|
||||
{ title: t('合同号'), dataIndex: 'id', sorter: true},
|
||||
{ title: t('合同名称'), dataIndex: 'kName', sorter: true},
|
||||
{ title: t('合同号'), dataIndex: 'id', },
|
||||
{ title: t('合同名称'), dataIndex: 'kName', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -21,13 +21,13 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'title', title: '标题', align: 'left', sorter: true},
|
||||
{ dataIndex: 'code', title: '编号', align: 'left', sorter: true},
|
||||
{ dataIndex: 'typeName', title: '签报类型', align: 'left', sorter: true},
|
||||
{ dataIndex: 'empName', title: '拟稿人', align: 'left', sorter: true},
|
||||
{ dataIndex: 'bDeptName', title: '拟稿人所属部门', align: 'left', sorter: true},
|
||||
{ dataIndex: 'dateAppro', title: '拟稿日期', align: 'left', sorter: true},
|
||||
{ dataIndex: 'file', title: '附件', align: 'left', sorter: true},
|
||||
{ dataIndex: 'title', title: '标题', align: 'left', },
|
||||
{ dataIndex: 'code', title: '编号', align: 'left', },
|
||||
{ dataIndex: 'typeName', title: '签报类型', align: 'left', },
|
||||
{ dataIndex: 'empName', title: '拟稿人', align: 'left', },
|
||||
{ dataIndex: 'bDeptName', title: '拟稿人所属部门', align: 'left', },
|
||||
{ dataIndex: 'dateAppro', title: '拟稿日期', align: 'left', },
|
||||
{ dataIndex: 'file', title: '附件', align: 'left', },
|
||||
|
||||
];
|
||||
|
||||
|
||||
@ -16,10 +16,10 @@
|
||||
|
||||
const { t } = useI18n();
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'userName', title: '审批人', align: 'left', sorter: true },
|
||||
{ dataIndex: 'createDate', title: '审批时间', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cfmRej', title: '通过/驳回', align: 'left', sorter: true },
|
||||
{ dataIndex: 'reply', title: '驳回原因', align: 'left', sorter: true },
|
||||
{ dataIndex: 'userName', title: '审批人', align: 'left', },
|
||||
{ dataIndex: 'createDate', title: '审批时间', align: 'left', },
|
||||
{ dataIndex: 'cfmRej', title: '通过/驳回', align: 'left', },
|
||||
{ dataIndex: 'reply', title: '驳回原因', align: 'left', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -22,12 +22,12 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'code', title: '编码', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'fullName', title: '名称', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'shortName', title: '简称', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'bankCode', title: '联行号', componentType: 'input', align: 'left', sorter: true },
|
||||
{ dataIndex: 'regionName', title: '所属国家和地区', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'swift', title: 'SWIFT', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'code', title: '编码', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'fullName', title: '名称', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'shortName', title: '简称', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'bankCode', title: '联行号', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'regionName', title: '所属国家和地区', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'swift', title: 'SWIFT', componentType: 'input', align: 'left', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -34,12 +34,12 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ title: t('合同号'), dataIndex: 'kNo', sorter: true},
|
||||
{ title: t('合同名称'), dataIndex: 'kName', sorter: true},
|
||||
{ title: t('关联类别'), dataIndex: 'relTypeName', sorter: true},
|
||||
{ title: t('合同类别'), dataIndex: 'kTypeName1', sorter: true},
|
||||
{ title: t('承办人'), dataIndex: 'empName', sorter: true,},
|
||||
{ title: t('承办部门'), dataIndex: 'bDeptName', sorter: true,},
|
||||
{ title: t('合同号'), dataIndex: 'kNo', },
|
||||
{ title: t('合同名称'), dataIndex: 'kName', },
|
||||
{ title: t('关联类别'), dataIndex: 'relTypeName', },
|
||||
{ title: t('合同类别'), dataIndex: 'kTypeName1', },
|
||||
{ title: t('承办人'), dataIndex: 'empName' ,},
|
||||
{ title: t('承办部门'), dataIndex: 'bDeptName' ,},
|
||||
|
||||
];
|
||||
|
||||
|
||||
@ -82,19 +82,19 @@
|
||||
const { t } = useI18n();
|
||||
const dataListContractAgree = ref([])
|
||||
const columns= ref([
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
|
||||
{ title: t('开始日期'), dataIndex: 'dateFrom', sorter: true, width:160},
|
||||
{ title: t('结束日期'), dataIndex: 'dateTo', sorter: true, width: 160},
|
||||
{ title: t('基础量/增量'), dataIndex: 'baseInc', sorter: true, width: 130},
|
||||
{ title: t('优先级'), dataIndex: 'sort', sorter: true, width: 100},
|
||||
{ title: t('比值(方/吉焦)'), dataIndex: 'rateM3Gj', sorter: true, width: 150},
|
||||
{ title: t('月气量(吉焦)'), dataIndex: 'qtyGjMonth', sorter: true, width: 150},
|
||||
{ title: t('月气量(万方)'), dataIndex: 'qtyM3Month', sorter: true, width: 150},
|
||||
{ title: t('日气量(吉焦)'), dataIndex: 'qtyGjDay', sorter: true, width: 120},
|
||||
{ title: t('日气量(万方)'), dataIndex: 'qtyM3Day', sorter: true, width: 120},
|
||||
{ title: t('照付不议类型'), dataIndex: 'zfbyTypeCode', sorter: true, width: 120},
|
||||
{ title: t('照付不议比例%/量数值'), dataIndex: 'zfbyValue', sorter: true, width: 120},
|
||||
{ title: t('备注'), dataIndex: 'note', sorter: true, width: 200},
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
|
||||
{ title: t('开始日期'), dataIndex: 'dateFrom', width:160},
|
||||
{ title: t('结束日期'), dataIndex: 'dateTo', width: 160},
|
||||
{ title: t('基础量/增量'), dataIndex: 'baseInc', width: 130},
|
||||
{ title: t('优先级'), dataIndex: 'sort', width: 100},
|
||||
{ title: t('比值(方/吉焦)'), dataIndex: 'rateM3Gj', width: 150},
|
||||
{ title: t('月气量(吉焦)'), dataIndex: 'qtyGjMonth', width: 150},
|
||||
{ title: t('月气量(万方)'), dataIndex: 'qtyM3Month', width: 150},
|
||||
{ title: t('日气量(吉焦)'), dataIndex: 'qtyGjDay', width: 120},
|
||||
{ title: t('日气量(万方)'), dataIndex: 'qtyM3Day', width: 120},
|
||||
{ title: t('照付不议类型'), dataIndex: 'zfbyTypeCode', width: 120},
|
||||
{ title: t('照付不议比例%/量数值'), dataIndex: 'zfbyValue', width: 120},
|
||||
{ title: t('备注'), dataIndex: 'note', width: 200},
|
||||
{ title: t('操作'), dataIndex: 'operation', width: 80, fixed: 'right',align: 'center'},
|
||||
]);
|
||||
const [register, { openModal:openModal}] = useModal();
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
const columns= ref([
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
|
||||
{ title: t('标题'), dataIndex: 'title', width:100},
|
||||
{ title: t('编号'), dataIndex: 'code', sorter: true},
|
||||
{ title: t('编号'), dataIndex: 'code', },
|
||||
{ title: t('签报类型'), dataIndex: 'typeName', width: 140},
|
||||
{ title: t('拟稿人'), dataIndex: 'empName', width: 140},
|
||||
{ title: t('拟稿人所属部门'), dataIndex: 'bDeptName', width: 140},
|
||||
|
||||
@ -21,11 +21,11 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'cuCode', title: '客户编码', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cuName', title: '客户名称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cuSname', title: '客户简称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', sorter: true },
|
||||
{ dataIndex: 'classCode', title: '客户分类', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cuCode', title: '客户编码', align: 'left', },
|
||||
{ dataIndex: 'cuName', title: '客户名称', align: 'left', },
|
||||
{ dataIndex: 'cuSname', title: '客户简称', align: 'left', },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', },
|
||||
{ dataIndex: 'classCode', title: '客户分类', align: 'left', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -30,11 +30,11 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'cuCode', title: '客户编码', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cuName', title: '客户名称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cuSname', title: '客户简称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', sorter: true },
|
||||
{ dataIndex: 'classCode', title: '客户分类', align: 'left', sorter: true },
|
||||
{ dataIndex: 'cuCode', title: '客户编码', align: 'left', },
|
||||
{ dataIndex: 'cuName', title: '客户名称', align: 'left', },
|
||||
{ dataIndex: 'cuSname', title: '客户简称', align: 'left', },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', },
|
||||
{ dataIndex: 'classCode', title: '客户分类', align: 'left', },
|
||||
];
|
||||
|
||||
const codeFormSchemaSupplier: FormSchema[] = [
|
||||
@ -42,11 +42,11 @@
|
||||
];
|
||||
|
||||
const columnsSupplier: BasicColumn[] = [
|
||||
{ dataIndex: 'suCode', title: '供应商编码', align: 'left', sorter: true },
|
||||
{ dataIndex: 'suName', title: '供应商名称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'suSname', title: '供应商简称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', sorter: true },
|
||||
{ dataIndex: 'classCode', title: '供应商分类', align: 'left', sorter: true },
|
||||
{ dataIndex: 'suCode', title: '供应商编码', align: 'left', },
|
||||
{ dataIndex: 'suName', title: '供应商名称', align: 'left', },
|
||||
{ dataIndex: 'suSname', title: '供应商简称', align: 'left', },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', },
|
||||
{ dataIndex: 'classCode', title: '供应商分类', align: 'left', },
|
||||
];
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
|
||||
@ -30,8 +30,8 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'name', title: '组织名称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'code', title: '组织编码', align: 'left', sorter: true },
|
||||
{ dataIndex: 'name', title: '组织名称', align: 'left', },
|
||||
{ dataIndex: 'code', title: '组织编码', align: 'left', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -30,10 +30,10 @@
|
||||
];
|
||||
const treeData = ref<TreeItem[]>([]);
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'name', title: '姓名', align: 'left', sorter: true },
|
||||
{ dataIndex: 'genderDesc', title: '性别', align: 'left', sorter: true },
|
||||
{ dataIndex: 'mobile', title: '手机号', align: 'left', sorter: true },
|
||||
{ dataIndex: 'email', title: '邮箱', align: 'left', sorter: true },
|
||||
{ dataIndex: 'name', title: '姓名', align: 'left', },
|
||||
{ dataIndex: 'genderDesc', title: '性别', align: 'left', },
|
||||
{ dataIndex: 'mobile', title: '手机号', align: 'left', },
|
||||
{ dataIndex: 'email', title: '邮箱', align: 'left', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -20,11 +20,11 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'code', title: '编码', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'fullName', title: '名称', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'contact', title: '联系人', componentType: 'input', align: 'left', sorter: true},
|
||||
{ dataIndex: 'tel', title: '电话', componentType: 'input', align: 'left', sorter: true },
|
||||
{ dataIndex: 'email', title: '邮箱', componentType: 'input', align: 'left', sorter: true}
|
||||
{ dataIndex: 'code', title: '编码', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'fullName', title: '名称', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'contact', title: '联系人', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'tel', title: '电话', componentType: 'input', align: 'left', },
|
||||
{ dataIndex: 'email', title: '邮箱', componentType: 'input', align: 'left', }
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register', 'cancel']);
|
||||
|
||||
@ -21,11 +21,11 @@
|
||||
];
|
||||
|
||||
const columns: BasicColumn[] = [
|
||||
{ dataIndex: 'suCode', title: '供应商编码', align: 'left', sorter: true },
|
||||
{ dataIndex: 'suName', title: '供应商名称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'suSname', title: '供应商简称', align: 'left', sorter: true },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', sorter: true },
|
||||
{ dataIndex: 'classCode', title: '供应商分类', align: 'left', sorter: true },
|
||||
{ dataIndex: 'suCode', title: '供应商编码', align: 'left', },
|
||||
{ dataIndex: 'suName', title: '供应商名称', align: 'left', },
|
||||
{ dataIndex: 'suSname', title: '供应商简称', align: 'left', },
|
||||
{ dataIndex: 'dI', title: '国内/国际', align: 'left', },
|
||||
{ dataIndex: 'classCode', title: '供应商分类', align: 'left', },
|
||||
];
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
@ -393,27 +393,27 @@
|
||||
{ title: t('资质证书名称'), dataIndex: 'docTypeCode', width:200},
|
||||
{ title: t('有效期开始'), dataIndex: 'dateFrom', width: 140},
|
||||
{ title: t('有效期结束'), dataIndex: 'dateTo', width: 140},
|
||||
{ title: t('备注'), dataIndex: 'note', sorter: true},
|
||||
{ title: t('备注'), dataIndex: 'note', },
|
||||
{ title: t('操作'), dataIndex: 'operation', width: 220},
|
||||
]);
|
||||
const columnsBank = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('银行名称'), dataIndex: 'bankName', sorter: true},
|
||||
{ title: t('联行号'), dataIndex: 'interBankCode', sorter: true},
|
||||
{ title: t('账号名称'), dataIndex: 'accountName', sorter: true},
|
||||
{ title: t('银行账号'), dataIndex: 'account', sorter: true},
|
||||
{ title: t('默认银行'), dataIndex: 'defaultSign', sorter: true},
|
||||
{ title: t('操作'), dataIndex: 'operation', sorter: true},
|
||||
{ title: t('银行名称'), dataIndex: 'bankName', },
|
||||
{ title: t('联行号'), dataIndex: 'interBankCode', },
|
||||
{ title: t('账号名称'), dataIndex: 'accountName', },
|
||||
{ title: t('银行账号'), dataIndex: 'account', },
|
||||
{ title: t('默认银行'), dataIndex: 'defaultSign', },
|
||||
{ title: t('操作'), dataIndex: 'operation', },
|
||||
]);
|
||||
const columnsContact = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('姓名'), dataIndex: 'contactName', sorter: true},
|
||||
{ title: t('联系电话'), dataIndex: 'tel', sorter: true},
|
||||
{ title: t('电子邮箱'), dataIndex: 'email', sorter: true},
|
||||
{ title: t('通讯地址'), dataIndex: 'addrMail', sorter: true},
|
||||
{ title: t('职位'), dataIndex: 'position', sorter: true},
|
||||
{ title: t('备注'), dataIndex: 'note', sorter: true},
|
||||
{ title: t('操作'), dataIndex: 'operation', sorter: true},
|
||||
{ title: t('姓名'), dataIndex: 'contactName', },
|
||||
{ title: t('联系电话'), dataIndex: 'tel', },
|
||||
{ title: t('电子邮箱'), dataIndex: 'email', },
|
||||
{ title: t('通讯地址'), dataIndex: 'addrMail', },
|
||||
{ title: t('职位'), dataIndex: 'position', },
|
||||
{ title: t('备注'), dataIndex: 'note', },
|
||||
{ title: t('操作'), dataIndex: 'operation', },
|
||||
]);
|
||||
const dataCertificate= reactive([]);
|
||||
const dataBank= reactive([]);
|
||||
|
||||
@ -83,7 +83,7 @@
|
||||
const columns= ref([
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
|
||||
{ title: t('客户编码'), dataIndex: 'cuCode', width:100},
|
||||
{ title: t('客户名称'), dataIndex: 'cuName', sorter: true},
|
||||
{ title: t('客户名称'), dataIndex: 'cuName', },
|
||||
{ title: t('国内/国际'), dataIndex: 'diName', width: 140},
|
||||
{ title: t('客户类别'), dataIndex: 'typeName', width: 140},
|
||||
{ title: t('客户分类'), dataIndex: 'className', width: 140},
|
||||
|
||||
@ -133,15 +133,15 @@
|
||||
}
|
||||
const gsIdOld = ref()
|
||||
const columns = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 80},
|
||||
{ title: t('评价事项'), dataIndex: 'itemName', sorter: true},
|
||||
{ title: t('评价标准'), dataIndex: 'itemDesc', sorter: true},
|
||||
{ title: t('评价部门'), dataIndex: 'eDeptName', sorter: true},
|
||||
{ title: t('评分'), dataIndex: 'score', sorter: true},
|
||||
{ title: t('分数说明'), dataIndex: 'scoreDesc', sorter: true},
|
||||
{ title: t('评价人'), dataIndex: 'aEmpName', sorter: true},
|
||||
{ title: t('评价时间'), dataIndex: 'aTime', sorter: true},
|
||||
{ title: t('实际评价部门'), dataIndex: 'aDeptName', sorter: true},
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index' , customRender: (column) => `${column.index + 1}` ,width: 80},
|
||||
{ title: t('评价事项'), dataIndex: 'itemName', },
|
||||
{ title: t('评价标准'), dataIndex: 'itemDesc', },
|
||||
{ title: t('评价部门'), dataIndex: 'eDeptName', },
|
||||
{ title: t('评分'), dataIndex: 'score', },
|
||||
{ title: t('分数说明'), dataIndex: 'scoreDesc', },
|
||||
{ title: t('评价人'), dataIndex: 'aEmpName', },
|
||||
{ title: t('评价时间'), dataIndex: 'aTime', },
|
||||
{ title: t('实际评价部门'), dataIndex: 'aDeptName', },
|
||||
]);
|
||||
const dataList= ref([]);
|
||||
const dataFile = ref([]);
|
||||
|
||||
@ -299,31 +299,31 @@
|
||||
}
|
||||
|
||||
const columnsCertificate = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', sorter: true, customRender: (column) => `${column.index + 1}` ,width: 100},
|
||||
{ title: t('资质证书名称'), dataIndex: 'docTypeCode', sorter: true, width:200},
|
||||
{ title: t('有效期开始'), dataIndex: 'dateFrom', sorter: true, width: 140},
|
||||
{ title: t('有效期结束'), dataIndex: 'dateTo', sorter: true, width: 140},
|
||||
{ title: t('备注'), dataIndex: 'note', sorter: true},
|
||||
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 100},
|
||||
{ title: t('资质证书名称'), dataIndex: 'docTypeCode' , width:200},
|
||||
{ title: t('有效期开始'), dataIndex: 'dateFrom', width: 140},
|
||||
{ title: t('有效期结束'), dataIndex: 'dateTo', width: 140},
|
||||
{ title: t('备注'), dataIndex: 'note', },
|
||||
{ title: t('操作'), dataIndex: 'operation', width: 220},
|
||||
]);
|
||||
const columnsBank = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('银行名称'), dataIndex: 'bankName', sorter: true},
|
||||
{ title: t('联行号'), dataIndex: 'interBankCode', sorter: true},
|
||||
{ title: t('账号名称'), dataIndex: 'accountName', sorter: true},
|
||||
{ title: t('银行账号'), dataIndex: 'account', sorter: true},
|
||||
{ title: t('默认银行'), dataIndex: 'defaultSign', sorter: true},
|
||||
{ title: t('操作'), dataIndex: 'operation', sorter: true},
|
||||
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('银行名称'), dataIndex: 'bankName', },
|
||||
{ title: t('联行号'), dataIndex: 'interBankCode', },
|
||||
{ title: t('账号名称'), dataIndex: 'accountName', },
|
||||
{ title: t('银行账号'), dataIndex: 'account', },
|
||||
{ title: t('默认银行'), dataIndex: 'defaultSign', },
|
||||
{ title: t('操作'), dataIndex: 'operation', },
|
||||
]);
|
||||
const columnsContact = ref([
|
||||
{ title: t('序号'), dataIndex: 'index', sorter: true, customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('姓名'), dataIndex: 'contactName', sorter: true},
|
||||
{ title: t('联系电话'), dataIndex: 'tel', sorter: true},
|
||||
{ title: t('电子邮箱'), dataIndex: 'email', sorter: true},
|
||||
{ title: t('通讯地址'), dataIndex: 'addrMail', sorter: true},
|
||||
{ title: t('职位'), dataIndex: 'position', sorter: true},
|
||||
{ title: t('备注'), dataIndex: 'note', sorter: true},
|
||||
{ title: t('操作'), dataIndex: 'operation', sorter: true},
|
||||
{ title: t('序号'), dataIndex: 'index', customRender: (column) => `${column.index + 1}`},
|
||||
{ title: t('姓名'), dataIndex: 'contactName', },
|
||||
{ title: t('联系电话'), dataIndex: 'tel', },
|
||||
{ title: t('电子邮箱'), dataIndex: 'email', },
|
||||
{ title: t('通讯地址'), dataIndex: 'addrMail', },
|
||||
{ title: t('职位'), dataIndex: 'position', },
|
||||
{ title: t('备注'), dataIndex: 'note', },
|
||||
{ title: t('操作'), dataIndex: 'operation', },
|
||||
]);
|
||||
const dataCertificate= reactive([]);
|
||||
const dataBank= reactive([]);
|
||||
|
||||
Reference in New Issue
Block a user