我的证书和学习进度
This commit is contained in:
parent
fd77d1885e
commit
3a2e6c7d32
|
|
@ -8,10 +8,10 @@
|
||||||
<body class="white-bg">
|
<body class="white-bg">
|
||||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||||
<form class="form-horizontal m" id="form-vipUserCertificate-add">
|
<form class="form-horizontal m" id="form-vipUserCertificate-add">
|
||||||
<div class="form-group">
|
<div class="form-group hide">
|
||||||
<label class="col-sm-3 control-label">会员代码:</label>
|
<label class="col-sm-3 control-label">会员代码:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input id="vipUserId" name="vipUserId" class="form-control" type="text">
|
<input id="vipUserId" name="vipUserId" class="form-control" type="hidden">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-3 control-label">备注信息:</label>
|
<label class="col-sm-3 control-label">备注信息:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input id="remarks" name="remarks" class="form-control" type="text">
|
<textarea id="remarks" name="remarks" placeholder="请输入备注信息" class="layui-textarea"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||||
<form class="form-horizontal m" id="form-vipUserCertificate-edit" th:object="${vipUserCertificate}">
|
<form class="form-horizontal m" id="form-vipUserCertificate-edit" th:object="${vipUserCertificate}">
|
||||||
<input id="id" name="id" th:field="*{id}" type="hidden">
|
<input id="id" name="id" th:field="*{id}" type="hidden">
|
||||||
<div class="form-group">
|
<div class="form-group hide">
|
||||||
<label class="col-sm-3 control-label">会员代码:</label>
|
<label class="col-sm-3 control-label">会员代码:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input id="vipUserId" name="vipUserId" th:field="*{vipUserId}" class="form-control" type="text">
|
<input id="vipUserId" name="vipUserId" th:field="*{vipUserId}" class="form-control" type="text">
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-3 control-label">备注信息:</label>
|
<label class="col-sm-3 control-label">备注信息:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input id="remarks" name="remarks" th:field="*{remarks}" class="form-control" type="text">
|
<textarea id="remarks" name="remarks" th:field="*{remarks}" placeholder="请输入备注信息" class="layui-textarea"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -80,8 +80,8 @@
|
||||||
visible: false
|
visible: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field : 'vipUserId',
|
field : 'user.userName',
|
||||||
title : '会员代码',
|
title : '会员名称',
|
||||||
sortable: true
|
sortable: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -89,11 +89,6 @@
|
||||||
title : '证书名称',
|
title : '证书名称',
|
||||||
sortable: true
|
sortable: true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
field : 'image',
|
|
||||||
title : '证书照片',
|
|
||||||
sortable: true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
field : 'startDate',
|
field : 'startDate',
|
||||||
title : '生效日期',
|
title : '生效日期',
|
||||||
|
|
@ -114,26 +109,6 @@
|
||||||
title : '创建时间',
|
title : '创建时间',
|
||||||
sortable: true
|
sortable: true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
field : 'updateBy',
|
|
||||||
title : '更新者',
|
|
||||||
sortable: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field : 'updateDate',
|
|
||||||
title : '更新时间',
|
|
||||||
sortable: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field : 'remarks',
|
|
||||||
title : '备注信息',
|
|
||||||
sortable: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field : 'delFlag',
|
|
||||||
title : '删除标记',
|
|
||||||
sortable: true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-3 control-label">备注信息:</label>
|
<label class="col-sm-3 control-label">备注信息:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input id="remarks" name="remarks" class="form-control" type="text">
|
<textarea id="remarks" name="remarks" placeholder="请输入备注信息" class="layui-textarea"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-3 control-label">备注信息:</label>
|
<label class="col-sm-3 control-label">备注信息:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input id="remarks" name="remarks" th:field="*{remarks}" class="form-control" type="text">
|
<textarea id="remarks" name="remarks" placeholder="请输入备注信息" class="layui-textarea"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue