31 lines
1008 B
HTML
31 lines
1008 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
<head>
|
|
<th:block th:include="include :: header('批量分配客服')" />
|
|
</head>
|
|
<body class="white-bg">
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
<form class="form-horizontal m" id="form-change-user">
|
|
<input name="ids" type="hidden" th:value="${clewIds}" />
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">客服:</label>
|
|
<div class="col-sm-8">
|
|
<select id="saleId" name="saleId" class="form-control control-label" required>
|
|
<option th:each="user:${users}" th:value="${user.userId}" th:text="${user.userName}"></option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<th:block th:include="include :: footer" />
|
|
<script type="text/javascript">
|
|
function submitHandler() {
|
|
if ($.validate.form()) {
|
|
$.operate.save(ctx + "system/clew/changeBatchUser", $('#form-change-user').serialize());
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|