42 lines
951 B
HTML
42 lines
951 B
HTML
|
<html login="false">
|
||
|
<head>
|
||
|
<title>预约回访</title>
|
||
|
</head>
|
||
|
<body >
|
||
|
<div widget="toolbar" >
|
||
|
<a widget="button" iconCls="icon-save" id="savebtn" onclick="save" linkToState="editold,editnew">保存</a>
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
<input widget="datechooser" name="agree_visit_date" label="约定回访时间" style="margin-top:15px "
|
||
|
showTime="true" timeFormat="HH:mm:ss" format="yyyy-MM-dd HH:mm:ss" valueFormat="yyyy-MM-dd HH:mm:ss"/>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
<script type="text/javascript">
|
||
|
var grid = aos.get('grid');
|
||
|
|
||
|
function init(param){
|
||
|
var pageState = param['pageState'];
|
||
|
}
|
||
|
function save(){
|
||
|
var params ={}
|
||
|
var agree_visit_date = aos.get('agree_visit_date').getValue();
|
||
|
if(agree_visit_date==null || agree_visit_date==''){
|
||
|
aos.alert('需选择约定回访时间!');
|
||
|
return ;
|
||
|
}
|
||
|
|
||
|
params['agree_visit_date']=agree_visit_date;
|
||
|
CloseWindow(params);
|
||
|
}
|
||
|
|
||
|
|
||
|
</script>
|
||
|
</html>
|