112 lines
4.1 KiB
HTML
112 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||
<head>
|
||
<th:block th:include="include :: header('新增合伙人信息')" />
|
||
<th:block th:include="include :: summernote-css" />
|
||
</head>
|
||
<body class="white-bg">
|
||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||
<form class="form-horizontal m" id="form-match-add">
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">用户id:</label>
|
||
<div class="col-sm-8">
|
||
<input name="userId" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">绑定手机号:</label>
|
||
<div class="col-sm-8">
|
||
<input name="phone" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">平台昵称:</label>
|
||
<div class="col-sm-8">
|
||
<input name="nickName" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">真是姓名:</label>
|
||
<div class="col-sm-8">
|
||
<input name="realName" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">职业:</label>
|
||
<div class="col-sm-8">
|
||
<input name="matchJob" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">支付宝账户:</label>
|
||
<div class="col-sm-8">
|
||
<input name="zfbNumber" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">资源群体:</label>
|
||
<div class="col-sm-8">
|
||
<input type="hidden" class="form-control" name="matchContent">
|
||
<div class="summernote" id="matchContent"></div>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">备注:</label>
|
||
<div class="col-sm-8">
|
||
<input name="remark" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<th:block th:include="include :: footer" />
|
||
<th:block th:include="include :: summernote-js" />
|
||
<script th:inline="javascript">
|
||
var prefix = ctx + "system/match"
|
||
$("#form-match-add").validate({
|
||
focusCleanup: true
|
||
});
|
||
|
||
function submitHandler() {
|
||
if ($.validate.form()) {
|
||
$.operate.save(prefix + "/add", $('#form-match-add').serialize());
|
||
}
|
||
}
|
||
|
||
$(function() {
|
||
$('.summernote').summernote({
|
||
lang: 'zh-CN',
|
||
dialogsInBody: true,
|
||
callbacks: {
|
||
onChange: function(contents, $edittable) {
|
||
$("input[name='" + this.id + "']").val(contents);
|
||
},
|
||
onImageUpload: function(files) {
|
||
var obj = this;
|
||
var data = new FormData();
|
||
data.append("file", files[0]);
|
||
$.ajax({
|
||
type: "post",
|
||
url: ctx + "common/upload",
|
||
data: data,
|
||
cache: false,
|
||
contentType: false,
|
||
processData: false,
|
||
dataType: 'json',
|
||
success: function(result) {
|
||
if (result.code == web_status.SUCCESS) {
|
||
$('#' + obj.id).summernote('insertImage', result.url);
|
||
} else {
|
||
$.modal.alertError(result.msg);
|
||
}
|
||
},
|
||
error: function(error) {
|
||
$.modal.alertWarning("图片上传失败。");
|
||
}
|
||
});
|
||
}
|
||
}
|
||
});
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |