|
|
|
<?php
|
|
|
|
use \common\libs\MyLib;
|
|
|
|
?>
|
|
|
|
<?php $this->beginBlock('header_css'); ?>
|
|
|
|
<?php $this->endBlock(); ?>
|
|
|
|
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
|
|
<div class="ibox float-e-margins">
|
|
|
|
<div class="ibox-title">
|
|
|
|
<h5>修改密码</h5>
|
|
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<form role="form" class="form-horizontal data-from" id="theFrm">
|
|
|
|
<input type="hidden" name="assign_id" value="<?=$assign_id?>">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-md-1 control-label">电话号码</label>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<input type="text" name="phone" value="" class="form-control">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-5 col-md-offset-5">
|
|
|
|
<button class="btn btn-primary btn-save" type="button">
|
|
|
|
<strong>保存</strong>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php $this->beginBlock('footer_js'); ?>
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
$(function () {
|
|
|
|
//提交按钮
|
|
|
|
$(".btn-save").click(function(){
|
|
|
|
parent.layer.confirm('是否确认提交?', {
|
|
|
|
btn: ['确认','取消'], //按钮
|
|
|
|
shade: false //不显示遮罩
|
|
|
|
}, function(){
|
|
|
|
var params = $("#theFrm").serialize();
|
|
|
|
$.post('/phone-center/sub-save',params,function(data){
|
|
|
|
parent.layer.msg(data.msg);
|
|
|
|
if(data.success) {
|
|
|
|
parent.refreshList();
|
|
|
|
layer_close();
|
|
|
|
}
|
|
|
|
},'json');
|
|
|
|
}, function(){
|
|
|
|
//
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<?php $this->endBlock('footer_js'); ?>
|