后台优化 - 充值明细 搜索项增加
This commit is contained in:
@@ -13,7 +13,9 @@
|
||||
<input type="hidden" name="status" id="exportStatus" />
|
||||
<input type="hidden" name="newUser" id="exportNewUser" />
|
||||
<input type="hidden" name="appChannel" id="exportAppChannel" />
|
||||
<input type="hidden" name="appChannel" id="exportRegionId" />
|
||||
<input type="hidden" name="regionId" id="exportRegionId" />
|
||||
<input type="hidden" name="chargeRecordId" id="exportChargeRecordId" />
|
||||
<input type="hidden" name="pingxxChargeId" id="exportPingxxChargeId" />
|
||||
</form>
|
||||
<section class="content">
|
||||
<div id="toolbar">
|
||||
@@ -56,6 +58,14 @@
|
||||
<label for="regionId">国家:</label>
|
||||
<select name="regionId" id="regionId" class="form-control"></select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="qErbanNo">商户订单号:</label>
|
||||
<input type="text" class="form-control" name="chargeRecordId" id="chargeRecordId" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="qErbanNo">第三方订单号:</label>
|
||||
<input type="text" class="form-control" name="pingxxChargeId" id="pingxxChargeId" />
|
||||
</div>
|
||||
</form>
|
||||
<div id="mapObjHtml"></div>
|
||||
<button id="btnSearch" class="btn btn-sm btn-primary">查询</button>
|
||||
@@ -166,6 +176,12 @@ export default {
|
||||
align: "center",
|
||||
width: "5%",
|
||||
},
|
||||
{
|
||||
field: "updateTime",
|
||||
title: "更新时间",
|
||||
align: "center",
|
||||
width: "5%",
|
||||
},
|
||||
],
|
||||
undefinedText: "-",
|
||||
cache: false,
|
||||
@@ -191,6 +207,9 @@ export default {
|
||||
newUser: $("#qNewUser").val(),
|
||||
appChannel: $("#qAppChannel").val(),
|
||||
regionId: $("#regionId").val(),
|
||||
pingxxChargeId: $("#pingxxChargeId").val(),
|
||||
chargeRecordId: $("#chargeRecordId").val(),
|
||||
|
||||
};
|
||||
return param;
|
||||
},
|
||||
@@ -256,6 +275,8 @@ export default {
|
||||
newUser: $("#qNewUser").val(),
|
||||
appChannel: $("#qAppChannel").val(),
|
||||
regionId: $("#regionId").val(),
|
||||
chargeRecordId: $("#chargeRecordId").val(),
|
||||
pingxxChargeId: $("#pingxxChargeId").val(),
|
||||
};
|
||||
|
||||
// 手动加载数据
|
||||
@@ -338,6 +359,8 @@ export default {
|
||||
$("#exportNewUser").val($("#qNewUser").val());
|
||||
$("#exportAppChannel").val($("#qAppChannel").val());
|
||||
$("#exportRegionId").val($("#regionId").val());
|
||||
$("#exportPingxxChargeId").val($("#pingxxChargeId").val());
|
||||
$("#exportChargeRecordId").val($("#chargeRecordId").val());
|
||||
form.submit();
|
||||
});
|
||||
},
|
||||
|
Reference in New Issue
Block a user