3.10 工程代码同步master
This commit is contained in:
@ -15,7 +15,6 @@ const Earnest: React.FC<{}> = () => {
|
||||
accept: ".png,.jpg,.rar,.zip",
|
||||
onChange(info: any) {
|
||||
if (info.file.status !== 'uploading') {
|
||||
console.log(info.file, info.fileList);
|
||||
}
|
||||
if (info.file.status === 'done') {
|
||||
message.success(`${info.file.name} file uploaded successfully`);
|
||||
@ -26,8 +25,8 @@ const Earnest: React.FC<{}> = () => {
|
||||
};
|
||||
const columns: ProColumns<any>[] = [
|
||||
{ title: '序号', valueType: 'index', width: 10, },
|
||||
{ title: '采购包编号', dataIndex: 'sectionId', width: 100, copyable: true },
|
||||
{ title: '采购包名称', dataIndex: 'sectionName', width: 100, copyable: true },
|
||||
{ title: '采购包编号', dataIndex: 'sectionId', width: 100, },
|
||||
{ title: '采购包名称', dataIndex: 'sectionName', width: 100, },
|
||||
{ title: '费用类型', dataIndex: 'commodityName', width: 100, renderText: () => "保证金", },
|
||||
{ title: '应缴金额(元)', dataIndex: 'amount', width: 80, },
|
||||
{ title: '缴纳时间', dataIndex: 'createDate', width: 100, valueType: 'dateTime', },
|
||||
@ -40,6 +39,7 @@ const Earnest: React.FC<{}> = () => {
|
||||
"3": { text: '待审核', status: 'Processing' },
|
||||
"-2": { text: '审核驳回', status: 'Error' },
|
||||
"-1": { text: '已失效', status: 'Error' },
|
||||
"9": { text: '异常', status: 'Error' },
|
||||
},
|
||||
},
|
||||
{
|
||||
@ -82,7 +82,6 @@ const Earnest: React.FC<{}> = () => {
|
||||
search={false}
|
||||
toolBarRender={()=>[<a>凭证大小:20M;凭证文件类型:jpg、png、pdf、rar、zip</a>]}
|
||||
request={() => getEnrnest({ projectId: proId, expensesType: 5, payerId: payerId }).then((res) => {
|
||||
console.log(res);
|
||||
const result = {
|
||||
data: res.data.payVoList,
|
||||
total: res.data.total,
|
||||
|
@ -19,7 +19,6 @@ export async function delOrder(params?: any) {
|
||||
}
|
||||
//继续支付里删除
|
||||
export async function delSection(params?: any) {
|
||||
console.log({...params});
|
||||
|
||||
return request(`/api/biz-service-ebtp-expenses/v1/bizbidshoppingcart/deleteCartById`,{
|
||||
method:'POST',
|
||||
|
Reference in New Issue
Block a user