34 lines
799 B
HTML
34 lines
799 B
HTML
<html login="false" auth="false">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>客户最近一笔缴费记录</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div widget="autosize">
|
|
<input widget="edit" name="invoicedate" label="最近缴费日期" readonly="true" style="width:250px"/>
|
|
<input widget="edit" name="endDate" label="最近到期日期" readonly="true" style="width:200px"/>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
<script type="text/javascript">
|
|
function init(param){
|
|
var url="rush/post/getLatestCustEndDate?cust_id=";
|
|
customer_id=param['customer_id'];
|
|
|
|
aos.post({
|
|
url:url,
|
|
data:{
|
|
cust_id:customer_id
|
|
},
|
|
success:function(data){
|
|
aos.get("invoicedate").setValue(data.invoicedate);
|
|
aos.get("endDate").setValue(data.endDate);
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
</html> |