|
@ -198,13 +198,13 @@ function ProductOrderInquiry() { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
{//7 |
|
|
{//7 |
|
|
name: "b", |
|
|
|
|
|
|
|
|
name: "goods_name", |
|
|
type: "Input", |
|
|
type: "Input", |
|
|
label: "商品名称", |
|
|
label: "商品名称", |
|
|
placeholder: "请输入商品名称", |
|
|
placeholder: "请输入商品名称", |
|
|
}, |
|
|
}, |
|
|
{//8 |
|
|
{//8 |
|
|
name: "b", |
|
|
|
|
|
|
|
|
name: "buy_channel", |
|
|
type: "Select", |
|
|
type: "Select", |
|
|
label: "购买渠道", |
|
|
label: "购买渠道", |
|
|
placeholder: "请选择购买渠道", |
|
|
placeholder: "请选择购买渠道", |
|
@ -224,7 +224,7 @@ function ProductOrderInquiry() { |
|
|
], |
|
|
], |
|
|
}, |
|
|
}, |
|
|
{//9 |
|
|
{//9 |
|
|
name: "b", |
|
|
|
|
|
|
|
|
name: "order_status", |
|
|
type: "Select", |
|
|
type: "Select", |
|
|
label: "订单状态", |
|
|
label: "订单状态", |
|
|
placeholder: "请选择订单状态", |
|
|
placeholder: "请选择订单状态", |
|
@ -248,14 +248,14 @@ function ProductOrderInquiry() { |
|
|
], |
|
|
], |
|
|
}, |
|
|
}, |
|
|
{//10 |
|
|
{//10 |
|
|
name: "payment_channels", |
|
|
|
|
|
|
|
|
name: "pay_channel", |
|
|
type: "Select", |
|
|
type: "Select", |
|
|
label: "支付渠道", |
|
|
label: "支付渠道", |
|
|
placeholder: "请选择支付渠道", |
|
|
placeholder: "请选择支付渠道", |
|
|
options: dictionary.PayChannel, |
|
|
options: dictionary.PayChannel, |
|
|
}, |
|
|
}, |
|
|
{//11 |
|
|
{//11 |
|
|
name: "payment_equipment", |
|
|
|
|
|
|
|
|
name: "pay_device", |
|
|
type: "Select", |
|
|
type: "Select", |
|
|
label: "支付设备", |
|
|
label: "支付设备", |
|
|
placeholder: "请选择支付设备", |
|
|
placeholder: "请选择支付设备", |
|
@ -282,7 +282,7 @@ function ProductOrderInquiry() { |
|
|
options: dictionary.PaydMethod, |
|
|
options: dictionary.PaydMethod, |
|
|
}, |
|
|
}, |
|
|
{//15 |
|
|
{//15 |
|
|
name: "b", |
|
|
|
|
|
|
|
|
name: "channel_serial_number", |
|
|
type: "Input", |
|
|
type: "Input", |
|
|
label: "渠道流水号", |
|
|
label: "渠道流水号", |
|
|
placeholder: "请输入渠道流水号", |
|
|
placeholder: "请输入渠道流水号", |
|
@ -309,7 +309,7 @@ function ProductOrderInquiry() { |
|
|
// defaultValue: [moment().startOf("day"), moment()], |
|
|
// defaultValue: [moment().startOf("day"), moment()], |
|
|
}, |
|
|
}, |
|
|
{//19 |
|
|
{//19 |
|
|
name: "plate", |
|
|
|
|
|
|
|
|
name: "plate_number", |
|
|
type: "Input", |
|
|
type: "Input", |
|
|
label: "车牌号", |
|
|
label: "车牌号", |
|
|
placeholder: "请输入车牌号", |
|
|
placeholder: "请输入车牌号", |
|
@ -438,10 +438,10 @@ function ProductOrderInquiry() { |
|
|
var url = '' |
|
|
var url = '' |
|
|
switch (tabKey) { |
|
|
switch (tabKey) { |
|
|
case "1": |
|
|
case "1": |
|
|
url = ""// |
|
|
|
|
|
|
|
|
url = "/api/fin/order_search/parking_card_order_list"//停车卡订单 |
|
|
break |
|
|
break |
|
|
case "2": |
|
|
case "2": |
|
|
url = ""// |
|
|
|
|
|
|
|
|
url = "/api/fin/order_search/staggered_parking_order_list"//错峰卡 |
|
|
break |
|
|
break |
|
|
default: break |
|
|
default: break |
|
|
} |
|
|
} |
|
@ -557,13 +557,30 @@ function ProductOrderInquiry() { |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|
//其他页面渲染 |
|
|
//其他页面渲染 |
|
|
function renderTable(columns, arr, dataSource) { |
|
|
|
|
|
|
|
|
function renderTable(columns, arr, dataSource, type) { |
|
|
|
|
|
let initFormData = type == "停车卡" ? { |
|
|
|
|
|
pn:1, |
|
|
|
|
|
page_size:15, |
|
|
|
|
|
plate_number: '1', |
|
|
|
|
|
phone: '', |
|
|
|
|
|
goods_name: '', |
|
|
|
|
|
buy_channel: '', |
|
|
|
|
|
pay_channel: '', |
|
|
|
|
|
order_status: '', |
|
|
|
|
|
pay_device: '', |
|
|
|
|
|
start_time: '', |
|
|
|
|
|
end_time: '', |
|
|
|
|
|
channel_serial_number: '', |
|
|
|
|
|
export: '0', |
|
|
|
|
|
export_file_name: '' |
|
|
|
|
|
} : {} |
|
|
return ( |
|
|
return ( |
|
|
<TableModule |
|
|
<TableModule |
|
|
columns={columns} |
|
|
columns={columns} |
|
|
tableData={dataSource} |
|
|
tableData={dataSource} |
|
|
formSearch={arr} |
|
|
formSearch={arr} |
|
|
total={total} |
|
|
total={total} |
|
|
|
|
|
initFormData={initFormData} |
|
|
search={searchOther} |
|
|
search={searchOther} |
|
|
/> |
|
|
/> |
|
|
); |
|
|
); |
|
@ -700,7 +717,7 @@ function ProductOrderInquiry() { |
|
|
createCol(['车牌号', '车牌颜色', '手机号', '商品名称', '实付金额', '支付渠道', '支付设备', '购买渠道', '支付时间', '订单状态', '渠道流水号'], |
|
|
createCol(['车牌号', '车牌颜色', '手机号', '商品名称', '实付金额', '支付渠道', '支付设备', '购买渠道', '支付时间', '订单状态', '渠道流水号'], |
|
|
['merchantName', '', 'area', '', 'sectionName', '', 'licensePlateNumber', 'entryTime', 'exitTime', '', 'arrearsAmount'], 1), |
|
|
['merchantName', '', 'area', '', 'sectionName', '', 'licensePlateNumber', 'entryTime', 'exitTime', '', 'arrearsAmount'], 1), |
|
|
[ash[18], ash[4], ash[6], ash[7], ash[8], ash[9], ash[10], ash[15], ash[14]], |
|
|
[ash[18], ash[4], ash[6], ash[7], ash[8], ash[9], ash[10], ash[15], ash[14]], |
|
|
resultData |
|
|
|
|
|
|
|
|
resultData, '停车卡' |
|
|
) : null} |
|
|
) : null} |
|
|
</Tabs.TabPane> |
|
|
</Tabs.TabPane> |
|
|
<Tabs.TabPane tab="错峰卡订单" key="2"> |
|
|
<Tabs.TabPane tab="错峰卡订单" key="2"> |
|
@ -708,12 +725,12 @@ function ProductOrderInquiry() { |
|
|
createCol(['序号', '停车场名称', '车牌号', '手机号', '订单金额', '支付方式', '渠道流水号', '同步MS状态', '订购时间'], |
|
|
createCol(['序号', '停车场名称', '车牌号', '手机号', '订单金额', '支付方式', '渠道流水号', '同步MS状态', '订购时间'], |
|
|
['index', '', 'area', '', 'sectionName', '', 'licensePlateNumber', 'entryTime', 'exitTime', '', 'arrearsAmount'], 2), |
|
|
['index', '', 'area', '', 'sectionName', '', 'licensePlateNumber', 'entryTime', 'exitTime', '', 'arrearsAmount'], 2), |
|
|
[ash[2], ash[4], ash[18], ash[11], ash[16], ash[14]], |
|
|
[ash[2], ash[4], ash[18], ash[11], ash[16], ash[14]], |
|
|
resultData |
|
|
|
|
|
|
|
|
resultData, '错峰卡' |
|
|
) : null} |
|
|
) : null} |
|
|
</Tabs.TabPane> |
|
|
</Tabs.TabPane> |
|
|
{/* <Tabs.TabPane tab="预约订单" key="3"> |
|
|
|
|
|
|
|
|
<Tabs.TabPane tab="预约订单" key="3"> |
|
|
|
|
|
|
|
|
</Tabs.TabPane> */} |
|
|
|
|
|
|
|
|
</Tabs.TabPane> |
|
|
</Tabs> |
|
|
</Tabs> |
|
|
<Modal |
|
|
<Modal |
|
|
open={bigpicVisible} |
|
|
open={bigpicVisible} |
|
|