first commit
This commit is contained in:
@@ -0,0 +1,125 @@
|
||||
<style>
|
||||
.item{
|
||||
width:100%;
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
padding:10px 10px;
|
||||
}
|
||||
.itemKey{
|
||||
width : 13%;
|
||||
min-height: 40px;
|
||||
text-align:right;
|
||||
padding-right:10px;
|
||||
}
|
||||
.itemValue{
|
||||
width : 37%;
|
||||
min-height: 40px;
|
||||
}
|
||||
.itemSurplus{
|
||||
width:87%;
|
||||
}
|
||||
.lable{
|
||||
padding: 6px 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #28a3ef;
|
||||
color: #FFFF;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.workItem{
|
||||
width: 31%;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.workItem .showing {
|
||||
content: url(../ztmpl/zhiqim_manager/showing.png);
|
||||
position: absolute;
|
||||
width: 50px;
|
||||
left: 0em;
|
||||
top: 0em;
|
||||
}
|
||||
|
||||
.workItem .reviewing {
|
||||
content: url(../ztmpl/zhiqim_manager/reviewing.png);
|
||||
position: absolute;
|
||||
width: 50px;
|
||||
left: 0em;
|
||||
top: 0em;
|
||||
}
|
||||
|
||||
.workItem .rejected {
|
||||
content: url(../ztmpl/zhiqim_manager/rejected.png);
|
||||
position: absolute;
|
||||
width: 50px;
|
||||
left: 0em;
|
||||
top: 0em;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function showLargeImg(thisImg)
|
||||
{
|
||||
var dialog = new parent.Z.Dialog();
|
||||
dialog.shadow = true;
|
||||
dialog.title = "图片预览";
|
||||
//dialog.hasTitle = false;
|
||||
dialog.fixed = true;
|
||||
dialog.text = '<img style="width:100%;max-height: none;" src="' + thisImg.src + '">';
|
||||
dialog.width = 1200;
|
||||
dialog.height = 801;
|
||||
dialog.execute();
|
||||
dialog.$background.remove();
|
||||
}
|
||||
</script>
|
||||
<div style="padding-top:10px;height:468px;overflow-y: auto;">
|
||||
<div class="item">
|
||||
<div class="itemKey">设计师</div>
|
||||
<div class="itemValue">${designerCourse.getDesigner()}</div>
|
||||
<div class="itemKey">设计师等级</div>
|
||||
<div class="itemValue">${designerLever}</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="itemKey">工作年限</div>
|
||||
<div class="itemValue">${designerCourse.getWorkDuration()}</div>
|
||||
<div class="itemKey">擅长设计</div>
|
||||
<div class="itemValue">${designerCourse.getDesignType()}</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="itemKey">工作经历</div>
|
||||
<div class="itemValue">${designerCourse.getWorkExperience()}</div>
|
||||
<div class="itemKey">在职情况</div>
|
||||
<div class="itemValue">${designerCourse.getWorkStatus()}</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="itemKey">软件能力</div>
|
||||
<div class="itemSurplus">${designerCourse.getSkillScope()}</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="itemKey">个人标签</div>
|
||||
<div class="itemSurplus">
|
||||
<#if Validates.isNotEmptyBlank(profile.getLabels())>
|
||||
<#for item : profile.getLabels().split(",")>
|
||||
<span class="lable">${item}</span>
|
||||
</#for>
|
||||
</#if>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="itemKey">个人作品</div>
|
||||
<div class="itemSurplus">
|
||||
<#for item : works>
|
||||
<div class="workItem">
|
||||
<div class="z-bg-white z-pointer">
|
||||
<img style="width:100%;" src="${item.getImgPath()}" onclick="showLargeImg(this);" />
|
||||
<img class="<#if item.getState() == 0>reviewing<#elseif item.getState() == 2>showing<#elseif item.getState() == 1>rejected</#if>" />
|
||||
</div>
|
||||
</div>
|
||||
</#for>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="z-absolute z-w100p z-text-center z-bg-gray z-pd10" style="bottom:0;left:0;">
|
||||
<button class="z-button z-w100 ${zmr_color_class}" onclick="parent.Z.Dialog.close(location.hash)">确认</button>
|
||||
</div>
|
||||
@@ -0,0 +1,221 @@
|
||||
<script>
|
||||
function remark(){
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
Z.prompt("请输入标签内容", Z("#remark"+designer).val(), function(value){
|
||||
var ajax = new Z.Ajax();
|
||||
ajax.setContextPath("${context.getContextPath()}");
|
||||
ajax.setClassName("DesignerPresenter");
|
||||
ajax.setMethodName("doUpdateCourseRemark");
|
||||
ajax.addParam("designer",designer);
|
||||
ajax.addParam("remark",value);
|
||||
ajax.setFailureAlert();
|
||||
ajax.setSuccess(function(){
|
||||
Z.success("操作成功",function(){
|
||||
document.getElementById("designerManage").submit();
|
||||
});
|
||||
});
|
||||
ajax.execute();
|
||||
});
|
||||
}
|
||||
|
||||
function queryDetail(){
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
|
||||
var dialog = new parent.Z.Dialog();
|
||||
dialog.title = "设计师详情";
|
||||
dialog.url = "/designerCourseDetail.htm?designer="+designer;
|
||||
dialog.width = 700;
|
||||
dialog.height = 520;
|
||||
dialog.execute();
|
||||
}
|
||||
|
||||
function exportData(){
|
||||
var form = document.designerManage;
|
||||
form.action= "/designerManageExport.htm"
|
||||
form.submit();
|
||||
|
||||
setTimeout(form.action= "/designerManage.htm",300);
|
||||
}
|
||||
|
||||
//指定组织
|
||||
function doAssignOrg()
|
||||
{
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
if (Z.V.isEmpty(designer))
|
||||
{
|
||||
Z.alert("请选择设计师");
|
||||
return;
|
||||
}
|
||||
|
||||
var dialog = new Z.Dialog();
|
||||
dialog.title = "指定组织";
|
||||
dialog.url = "/assignOrg.htm?designer=" + designer;
|
||||
dialog.width = 400;
|
||||
dialog.height = 250;
|
||||
dialog.execute();
|
||||
}
|
||||
|
||||
function mobileDelete(){
|
||||
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
if(Z.V.isEmpty(designer)){
|
||||
Z.alert("请选择一条订单");
|
||||
return;
|
||||
}
|
||||
|
||||
Z.confirm("是否确认删除手机号", function()
|
||||
{
|
||||
var ajax = new Z.Ajax();
|
||||
ajax.setClassName("OrderPresenter");
|
||||
ajax.setMethodName("mobileDelete");
|
||||
ajax.addParam(designer);
|
||||
ajax.setFailureAlert();
|
||||
ajax.setSuccess(function(){
|
||||
Z.success("操作成功",function(){parent.location.reload();parent.Z.Dialog.close();});
|
||||
});
|
||||
ajax.setLoading("returnTk", '正在提交', {disabled:true});
|
||||
ajax.execute();
|
||||
}, {width:320});
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
${zhiqim_manager_breadcrumb("设计师管理")}
|
||||
${zhiqim_manager_content()}
|
||||
|
||||
<#-- 导航 -->
|
||||
<div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="z-active">设计师管理</li>
|
||||
<li onclick="Z.L.href('onlineLog.htm');">在线设计师</li>
|
||||
<li onclick="Z.L.href('workSearchLog.htm');">工作日志</li>
|
||||
<li onclick="Z.L.href('desOnlineTimeLog.htm');">接单时长</li>
|
||||
<li onclick="Z.L.href('designerReg.htm');">注册审核</li>
|
||||
<li onclick="Z.L.href('virtualAccount.htm');">资金账户</li>
|
||||
<li onclick="Z.L.href('accountsManage.htm');">结算管理</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<#-- 查询条件 -->
|
||||
${zhiqim_manager_title("查询条件")}
|
||||
<form name="designerManage" action="/designerManage.htm" method="post" id="designerManage">
|
||||
<table class="z-table z-bordered z-pd6 z-bg-white">
|
||||
<tr>
|
||||
<td> 设 计 师
|
||||
<input type="text" name="designer" class="z-input z-w180 ${zmr_color_class}" value="${designer}">
|
||||
</td>
|
||||
<td> 手 机 号
|
||||
<input type="text" name="operatorMobile" class="z-input z-w180 ${zmr_color_class}" value="${operatorMobile}">
|
||||
</td>
|
||||
<td> 组 织
|
||||
<select name="orgId" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<#for item : orgList>
|
||||
<option value="${item.getOrgId()}" <#if orgId == item.getOrgId()>selected</#if>>${item.getOrgName()}</option>
|
||||
</#for>
|
||||
</select>
|
||||
</td>
|
||||
<td>工作年限 <select name="workDuration" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="应届" <#if workDuration == "应届">selected</#if>>应届</option>
|
||||
<option value="1年以内" <#if workDuration == "1年以内">selected</#if>>1年以内</option>
|
||||
<option value="1-2年" <#if workDuration == "1-2年">selected</#if>>1-2年</option>
|
||||
<option value="2-3年" <#if workDuration == "2-3年">selected</#if>>2-3年</option>
|
||||
<option value="3年以上" <#if workDuration == "3年以上">selected</#if>>3年以上</option>
|
||||
<option value="5年以上" <#if workDuration == "5年以上">selected</#if>>5年以上</option>
|
||||
<option value="10年以上" <#if workDuration == "10年以上">selected</#if>>10年以上</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>工作经历 <select name="workExperience" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="初入设计行业" <#if workExperience == "初入设计行业">selected</#if>>初入设计行业</option>
|
||||
<option value="图文广告点" <#if workExperience == "图文广告点">selected</#if>>图文广告点</option>
|
||||
<option value="淘宝等线上设计" <#if workExperience == "淘宝等线上设计">selected</#if>>淘宝等线上设计</option>
|
||||
<option value="品牌设计公司" <#if workExperience == "品牌设计公司">selected</#if>>品牌设计公司</option>
|
||||
<option value="综合广告公司" <#if workExperience == "综合广告公司">selected</#if>>综合广告公司</option>
|
||||
<option value="企业设计岗位" <#if workExperience == "企业设计岗位">selected</#if>>企业设计岗位</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>擅长设计 <select name="designType" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="名片类" <#if designType == "名片类">selected</#if>>名片类</option>
|
||||
<option value="海报类" <#if designType == "海报类">selected</#if>>海报类</option>
|
||||
<option value="包装类" <#if designType == "包装类">selected</#if>>包装类</option>
|
||||
<option value="logo设计" <#if designType == "logo设计">selected</#if>>logo设计</option>
|
||||
<option value="画册设计" <#if designType == "画册设计">selected</#if>>画册设计</option>
|
||||
<option value="UI设计" <#if designType == "UI设计">selected</#if>>UI设计</option>
|
||||
<option value="网页设计" <#if designType == "网页设计">selected</#if>>网页设计</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>软件能力 <select name="skillScope" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="CDR" <#if skillScope == "CDR">selected</#if>>CDR</option>
|
||||
<option value="PS" <#if skillScope == "PS">selected</#if>>PS</option>
|
||||
<option value="AI" <#if skillScope == "AI">selected</#if>>AI</option>
|
||||
<option value="3Dmax" <#if skillScope == "3Dmax">selected</#if>>3Dmax</option>
|
||||
<option value="C4D" <#if skillScope == "C4D">selected</#if>>C4D</option>
|
||||
<option value="CAD" <#if skillScope == "CAD">selected</#if>>CAD</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>在职情况 <select name="workStatus" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="在职" <#if workStatus == "在职">selected</#if>>在职</option>
|
||||
<option value="待业" <#if workStatus == "待业">selected</#if>>待业</option>
|
||||
<option value="自由职业" <#if workStatus == "自由职业">selected</#if>>自由职业</option>
|
||||
<option value="自有工作室" <#if workStatus == "自有工作室">selected</#if>>自有工作室</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>标签备注 <input type="text" name="designerRemark" class="z-input z-w180 ${zmr_color_class}" value="${designerRemark}" placeholder="备注模糊匹配">
|
||||
</td>
|
||||
<td><button class="z-button z-w80 z-large z-mg-r15 ${zmr_color_class}">查询</button><button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<#-- 操作功能 -->
|
||||
<div class="z-w100p z-mg-t10 z-mg-b3">
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="doAssignOrg();"><i class="z-font z-modify"></i>切换组织</button>
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="remark();"><i class="z-font z-modify"></i>标签备注</button>
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="queryDetail();"><i class="z-font z-query"></i>查看详情</button>
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="exportData();"><i class="z-font z-download"></i>数据导出</button>
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="mobileDelete();"><i class="z-font z-delete"></i>删除手机</button>
|
||||
</div>
|
||||
|
||||
<#-- 列表 -->
|
||||
<table class="z-table z-bordered z-pd5 z-bg-white z-text-center">
|
||||
<tr bgcolor="${zmr_thead_bgcolor}" class="z-h40">
|
||||
<td width="40">选择</td>
|
||||
<td width="130">设计师</td>
|
||||
<td width="130">手机号</td>
|
||||
<td width="130">组织</td>
|
||||
<td width="170">注册时间</td>
|
||||
<td width="170">最后接单时间</td>
|
||||
<td width="100">同时接单量</td>
|
||||
<td width="220">标签备注</td>
|
||||
<td width="180">提现账号</td>
|
||||
<td width="100">提现方式</td>
|
||||
</tr>
|
||||
${zhiqim_manager_tr_no_record(pageResult, 10, "暂时没有设计师信息")}
|
||||
<#for item : pageResult.list()>
|
||||
<input type="hidden" id="remark${item.getDesigner()}" value="${item.getDesignerRemark()}">
|
||||
<tr class="z-pointer z-h40" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
|
||||
<td><input name="designer" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="${item.getDesigner()}"></td>
|
||||
<td>${item.getDesigner()}</td>
|
||||
<td>${item.getOperatorMobile()}</td>
|
||||
<td>${ZmrOrgDao.getOrgName(request, item.getOrgId())}</td>
|
||||
<td>${item.getOperatorCreated()}</td>
|
||||
<td>${Sqls.toDateTimeString(item.getLastOnlimeTime())}</td>
|
||||
<td>${item.getOperatorParam()}</td>
|
||||
<td>${item.getDesignerRemark()}</td>
|
||||
<td>${item.getReceiveAccount()}</td>
|
||||
<td>${item.getReceiveType()}</td>
|
||||
</tr>
|
||||
</#for>
|
||||
</table>
|
||||
${zhiqim_manager_paging(pageResult, "/designerManage.htm")}
|
||||
|
||||
${zhiqim_manager_content_end()}
|
||||
@@ -0,0 +1,201 @@
|
||||
|
||||
${request.getValidateScript()}
|
||||
${Scripts.src("/zinc/layui/layui.js")}
|
||||
<link rel="stylesheet" href="../zinc/layui/css/layui.css"/>
|
||||
<script>
|
||||
function remark(){
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
Z.prompt("请输入标签内容", Z("#remark"+designer).val(), function(value){
|
||||
var ajax = new Z.Ajax();
|
||||
ajax.setContextPath("${context.getContextPath()}");
|
||||
ajax.setClassName("DesignerPresenter");
|
||||
ajax.setMethodName("doUpdateCourseRemark");
|
||||
ajax.addParam("designer",designer);
|
||||
ajax.addParam("remark",value);
|
||||
ajax.setFailureAlert();
|
||||
ajax.setSuccess(function(){
|
||||
Z.success("操作成功",function(){
|
||||
document.getElementById("teamDesignerManage").submit();
|
||||
});
|
||||
});
|
||||
ajax.execute();
|
||||
});
|
||||
}
|
||||
|
||||
function queryDetail(){
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
|
||||
var dialog = new parent.Z.Dialog();
|
||||
dialog.title = "设计师详情";
|
||||
dialog.url = "/designerCourseDetail.htm?designer="+designer;
|
||||
dialog.width = 700;
|
||||
dialog.height = 520;
|
||||
dialog.execute();
|
||||
}
|
||||
|
||||
function exportData(){
|
||||
var designIds = Z.FM.getCheckBoxValue("design");
|
||||
console.log(designIds);
|
||||
|
||||
var parentInput = window.opener.document.getElementById('teamSecret');
|
||||
if (parentInput) {
|
||||
if(parentInput.value != ''){
|
||||
parentInput.value = parentInput.value+','+designIds;
|
||||
}else{
|
||||
parentInput.value = designIds;
|
||||
}
|
||||
}
|
||||
window.close();
|
||||
}
|
||||
|
||||
//指定组织
|
||||
function doAssignOrg()
|
||||
{
|
||||
var designer = Z.FM.getChecked("designer");
|
||||
if (Z.V.isEmpty(designer))
|
||||
{
|
||||
Z.alert("请选择设计师");
|
||||
return;
|
||||
}
|
||||
|
||||
var dialog = new Z.Dialog();
|
||||
dialog.title = "指定组织";
|
||||
dialog.url = "/assignOrg.htm?designer=" + designer;
|
||||
dialog.width = 400;
|
||||
dialog.height = 250;
|
||||
dialog.execute();
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
${zhiqim_manager_breadcrumb("设计师管理")}
|
||||
${zhiqim_manager_content()}
|
||||
|
||||
<#-- 导航 -->
|
||||
<div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="z-active">设计师管理</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<#-- 查询条件 -->
|
||||
${zhiqim_manager_title("查询条件")}
|
||||
<form name="teamDesignerManage" action="/teamDesignerManage.htm" method="post" id="teamDesignerManage">
|
||||
<table class="z-table z-bordered z-pd6 z-bg-white">
|
||||
<tr>
|
||||
<td> 设 计 师
|
||||
<input type="text" name="designer" class="z-input z-w180 ${zmr_color_class}" value="${designer}">
|
||||
</td>
|
||||
<td> 手 机 号
|
||||
<input type="text" name="operatorMobile" class="z-input z-w180 ${zmr_color_class}" value="${operatorMobile}">
|
||||
</td>
|
||||
<td> 组 织
|
||||
<select name="orgId" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<#for item : orgList>
|
||||
<option value="${item.getOrgId()}" <#if orgId == item.getOrgId()>selected</#if>>${item.getOrgName()}</option>
|
||||
</#for>
|
||||
</select>
|
||||
</td>
|
||||
<td>工作年限 <select name="workDuration" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="应届" <#if workDuration == "应届">selected</#if>>应届</option>
|
||||
<option value="1年以内" <#if workDuration == "1年以内">selected</#if>>1年以内</option>
|
||||
<option value="1-2年" <#if workDuration == "1-2年">selected</#if>>1-2年</option>
|
||||
<option value="2-3年" <#if workDuration == "2-3年">selected</#if>>2-3年</option>
|
||||
<option value="3年以上" <#if workDuration == "3年以上">selected</#if>>3年以上</option>
|
||||
<option value="5年以上" <#if workDuration == "5年以上">selected</#if>>5年以上</option>
|
||||
<option value="10年以上" <#if workDuration == "10年以上">selected</#if>>10年以上</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>工作经历 <select name="workExperience" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="初入设计行业" <#if workExperience == "初入设计行业">selected</#if>>初入设计行业</option>
|
||||
<option value="图文广告点" <#if workExperience == "图文广告点">selected</#if>>图文广告点</option>
|
||||
<option value="淘宝等线上设计" <#if workExperience == "淘宝等线上设计">selected</#if>>淘宝等线上设计</option>
|
||||
<option value="品牌设计公司" <#if workExperience == "品牌设计公司">selected</#if>>品牌设计公司</option>
|
||||
<option value="综合广告公司" <#if workExperience == "综合广告公司">selected</#if>>综合广告公司</option>
|
||||
<option value="企业设计岗位" <#if workExperience == "企业设计岗位">selected</#if>>企业设计岗位</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>擅长设计 <select name="designType" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="名片类" <#if designType == "名片类">selected</#if>>名片类</option>
|
||||
<option value="海报类" <#if designType == "海报类">selected</#if>>海报类</option>
|
||||
<option value="包装类" <#if designType == "包装类">selected</#if>>包装类</option>
|
||||
<option value="logo设计" <#if designType == "logo设计">selected</#if>>logo设计</option>
|
||||
<option value="画册设计" <#if designType == "画册设计">selected</#if>>画册设计</option>
|
||||
<option value="UI设计" <#if designType == "UI设计">selected</#if>>UI设计</option>
|
||||
<option value="网页设计" <#if designType == "网页设计">selected</#if>>网页设计</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>软件能力 <select name="skillScope" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="CDR" <#if skillScope == "CDR">selected</#if>>CDR</option>
|
||||
<option value="PS" <#if skillScope == "PS">selected</#if>>PS</option>
|
||||
<option value="AI" <#if skillScope == "AI">selected</#if>>AI</option>
|
||||
<option value="3Dmax" <#if skillScope == "3Dmax">selected</#if>>3Dmax</option>
|
||||
<option value="C4D" <#if skillScope == "C4D">selected</#if>>C4D</option>
|
||||
<option value="CAD" <#if skillScope == "CAD">selected</#if>>CAD</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>在职情况 <select name="workStatus" class="z-select z-w180" data-role="z-select-search" data-class="${zmr_color_class}">
|
||||
<option value="">请选择</option>
|
||||
<option value="在职" <#if workStatus == "在职">selected</#if>>在职</option>
|
||||
<option value="待业" <#if workStatus == "待业">selected</#if>>待业</option>
|
||||
<option value="自由职业" <#if workStatus == "自由职业">selected</#if>>自由职业</option>
|
||||
<option value="自有工作室" <#if workStatus == "自有工作室">selected</#if>>自有工作室</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>标签备注 <input type="text" name="designerRemark" class="z-input z-w180 ${zmr_color_class}" value="${designerRemark}" placeholder="备注模糊匹配">
|
||||
</td>
|
||||
<td><button class="z-button z-w80 z-large z-mg-r15 ${zmr_color_class}">查询</button><button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<#-- 操作功能 -->
|
||||
<div class="z-w100p z-mg-t10 z-mg-b3">
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="doAssignOrg();"><i class="z-font z-modify"></i>切换组织</button>
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="queryDetail();"><i class="z-font z-query"></i>查看详情</button>
|
||||
<button type="button" class="z-button z-mg-t3 z-mg-r6 ${zmr_color_class}" onclick="exportData();"><i class="z-font z-download"></i>保存选中</button>
|
||||
</div>
|
||||
|
||||
<#-- 列表 -->
|
||||
<table class="z-table z-bordered z-pd5 z-bg-white z-text-center">
|
||||
<tr bgcolor="${zmr_thead_bgcolor}" class="z-h40">
|
||||
<td width="30"><input name="allDesignId" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${pageResult.pageNo()}" onclick="Z.FM.doSelectCheckBox('design', this.checked);"> 选择</td>
|
||||
<td width="130">设计师</td>
|
||||
<td width="130">手机号</td>
|
||||
<td width="130">组织</td>
|
||||
<td width="170">注册时间</td>
|
||||
<td width="170">最后接单时间</td>
|
||||
<td width="100">同时接单量</td>
|
||||
<td width="220">标签备注</td>
|
||||
<td width="180">提现账号</td>
|
||||
<td width="100">提现方式</td>
|
||||
</tr>
|
||||
${zhiqim_manager_tr_no_record(pageResult, 10, "暂时没有设计师信息")}
|
||||
<#for item : pageResult.list()>
|
||||
<input type="hidden" id="remark${item.getDesigner()}" value="${item.getDesignerRemark()}">
|
||||
<tr class="z-pointer z-h40" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
|
||||
<td><input name="design" type="checkbox" data-role="z-checkbox" data-class="${zmr_color_class}" value="${item.getDesigner()}"></td>
|
||||
<td>${item.getDesigner()}</td>
|
||||
<td>${item.getOperatorMobile()}</td>
|
||||
<td>${ZmrOrgDao.getOrgName(request, item.getOrgId())}</td>
|
||||
<td>${item.getOperatorCreated()}</td>
|
||||
<td>${Sqls.toDateTimeString(item.getLastOnlimeTime())}</td>
|
||||
<td>${item.getOperatorParam()}</td>
|
||||
<td>${item.getDesignerRemark()}</td>
|
||||
<td>${item.getReceiveAccount()}</td>
|
||||
<td>${item.getReceiveType()}</td>
|
||||
</tr>
|
||||
</#for>
|
||||
</table>
|
||||
${zhiqim_manager_paging(pageResult, "/teamDesignerManage.htm")}
|
||||
|
||||
${zhiqim_manager_content_end()}
|
||||
Referens i nytt ärende
Block a user