| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>weeklyschedule</title>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script src="plug-in/layer/layer.js"></script>
- <script>
- var userchangeflag = '';
- var days = [
- "monam","monpm","tuesam","tuespm","wedam","wedpm","thuram","thurpm","friam","fripm","satam","satpm","sunam","sunpm"
- ];
- $(function() {
- $(document).ready(function() {
- initSetting();
- });
- });
- //初始化设置,设置可编辑性
- function initSetting(){
- //人员类型
- var managerflag = $("#managerflag").val();
- //当前周标记,0表示当前周之前(都不可编辑),1表示当前周,2表示当前周之后(都可以编辑)
- var curweekflag = $("#curweekflag").val();
- //当前日期
- var myDate = new Date();
- var day = myDate.getDay(); //获取当前星期X(0-6,0代表星期天)
- if(day == 0)
- day = 7;
- /* var formatdate = getNowFormatDate(); */
- //flag前面的行全部停止编辑
- var readonlyFlag = 14;
- if(curweekflag == '1'){
- readonlyFlag = day*2;
- }else if(curweekflag == '2'){
- readonlyFlag = 0;
- }
- console.log(readonlyFlag);
- for(var i = 0;i < readonlyFlag; i++){
- var zjlEle = document.getElementById("what"+days[i]+"zjl");
- zjlEle.readOnly = true;
- var personnalEle = document.getElementById("what"+days[i]);
- personnalEle.readOnly = true;
- var whereEle = document.getElementById("where"+days[i]);
- whereEle.readOnly = true;
- var remarkEle = document.getElementById("remark"+days[i]);
- remarkEle.readOnly = true;
- var whoEle = document.getElementById("who"+days[i]+"names");
- whoEle.onclick = '';
- }
- if(managerflag == '1'){
- for(var i = 0;i < 14; i++){
- var whoEle = document.getElementById("tdwho"+days[i]);
- whoEle.hidden = true;
- }
- var whoTD = document.getElementById("tdwho");
- whoTD.hidden = true;
- /* var tdtitle = document.getElementById("tdtitle");
- tdtitle.colspan=6; */
- var tdnotdone = document.getElementById("tdnotdone");
- tdnotdone.colspan=4;
- var tdbtn = document.getElementById("tdbtn");
- tdbtn.colspan=6;
- }else{
- for(var i = 0;i < 14; i++){
- var whatZjlEle = document.getElementById("what"+days[i]+"zjl");
- whatZjlEle.readOnly = true;
- }
- }
-
- }
- //获取当前时间,格式YYYY-MM-DD
- function getNowFormatDate() {
- var date = new Date();
- var seperator1 = "-";
- var year = date.getFullYear();
- var month = date.getMonth() + 1;
- var strDate = date.getDate();
- if (month >= 1 && month <= 9) {
- month = "0" + month;
- }
- if (strDate >= 0 && strDate <= 9) {
- strDate = "0" + strDate;
- }
- var currentdate = year + seperator1 + month + seperator1 + strDate;
- return currentdate;
- }
-
- function btn_ok(){
- $("#btnsub").click();
- }
- function callback(data){
- if(userchangeflag == '1'){
- window.location.href="weeklyscheduleController.do?goAdd&opt=changeUser&managerflag=1&userid="+$("#userselect").val()+"¤tMonDate="+$("#mondate").val();
- }else {
- if(data.success){
- layer.alert(data.msg, function(index){
- var params = "&opt=reload&userid="+$("#userid").val()+"¤tMonDate="+$("#mondate").val();
- if($("#managerflag").val() == "1")
- params+= "&managerflag=1";
- window.location.href="weeklyscheduleController.do?goAdd"+params
- layer.close(index);
- });
- }
- else{
- layer.alert(data.msg);
- }
- }
- }
-
-
-
- // 定义菜单栏离页面顶部的距离,默认为200
- var divOffsetTop = 200;
- //滚动事件
- window.onscroll=function(){
- var div = document.getElementById("btndiv");
- // 计算页面滚动了多少(需要区分不同浏览器)
- var topVal = 0;
- if(window.pageYOffset){//这一条滤去了大部分, 只留了IE678
- topVal = window.pageYOffset;
- }
- else if(document.documentElement.scrollTop ){//IE678 的非quirk模式
- topVal = document.documentElement.scrollTop;
- }
- else if(document.body.scrolltop){//IE678 的quirk模式
- topVal = document.body.scrolltop;
- }
- if(topVal <= divOffsetTop){
- div.style.position = "";
- }
- else {
- div.style.position = "fixed";
- }
- };
- // 页面加载完之后,计算菜单栏到页面顶部的实际距离
- window.onload=function(){
- var div = document.getElementById("btndiv");
- divOffsetTop = div.offsetTop;
- };
- </script>
- <script type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <div id="btndiv" align="center" style="width: 100%; height: 50px; line-height: 40px; top: 0px; background: white;vertical-align: middle;position:relative;">
- <!-- <table style="width: 99%;" cellpadding="0" cellspacing="0" class="formtable" border="0">
- <tr height="30px" >
- <td align="center" id="tdtitle"> -->
- <p>
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 13px ;float: left;">
-
- 工作执行人:
- </label>
- <c:if test="${not empty managerflag}">
- <select style="width: 104px;float: left;" id="userselect" name="userselect" onchange="changeUser(this)">
- <c:forEach items="${useridList }" var="user">
- <option value="${user.id }" <c:if test="${userid==user.id}">selected="selected"</c:if>>${user.realname }</option>
- </c:forEach>
- </select>
- </c:if>
- <c:if test="${empty managerflag}">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ;float: left;">
- ${username}
- </label>
- </c:if>
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 18px ">
- 一周工作安排 ( ${weeklyschedulePage.weekFromTo} )
- </label>
- <span style="display:-moz-inline-box;display:inline-block;float: right;" >
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-left" onclick="goBefore()" id="downexport">
- <span>上一周</span>
- </a>
-
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-right" onclick="goNext()" id="">
- <span>下一周</span>
- </a>
-
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-save" onclick="btn_ok()"> 保 存</a>
-
- </span>
- </p>
- <!-- </td>
- </tr>
- </table> -->
- <!-- <img alt="" id="uptb" class="imgbtn" onclick="showChar()" src="images/tb1.png">
- <img alt="" id="upbg" class="imgbtn" onclick="showTabel()" src="images/bg.png">
- <span style="display:-moz-inline-box;display:inline-block;float: right;margin-right: 10px;" >
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-search" style="margin-left: 50px;" onclick="kaoqinsearch()" id="">
- <span>查询</span>
- </a>
- </span> -->
- </div>
- <div class="content" >
- <t:formvalid formid="formobj" dialog="false" usePlugin="password" layout="table" action="weeklyscheduleController.do?doAdd" tiptype="1" callback="callback">
- <input id="id" name="id" type="hidden" value="${weeklyschedulePage.id}"/>
- <input id="status" name="status" type="hidden" value="${weeklyschedulePage.status}"/>
- <input id="userid" name="userid" type="hidden" value="${weeklyschedulePage.userid}"/>
- <input id="managerflag" name="managerflag" type="hidden" value="${managerflag}"/>
- <input id="curweekflag" name="curweekflag" type="hidden" value="${curweekflag}"/>
- <input id="tempuserid" name="tempuserid" type="hidden" value="${userid}"/>
- <table id="weeklyscheduleTable" style="width: 99%;" cellpadding="0" cellspacing="0" class="formtable" border="1">
- <%-- <tr height="45px" >
- <td align="center" colspan="7" id="tdtitle">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 13px ;float: left;">
-
- 工作执行人:
- </label>
- <c:if test="${not empty managerflag}">
- <select style="width: 104px;float: left;" id="userselect" name="userselect" onchange="changeUser(this)">
- <c:forEach items="${useridList }" var="user">
- <option value="${user.id }" <c:if test="${userid==user.id}">selected="selected"</c:if>>${user.realname }</option>
- </c:forEach>
- </select>
- </c:if>
- <c:if test="${empty managerflag}">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ;float: left;">
- ${username}
- </label>
- </c:if>
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 18px ">
- 一周工作安排 ( ${weeklyschedulePage.weekFromTo} )
- </label>
- <span style="display:-moz-inline-box;display:inline-block;float: right;" >
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-left" onclick="goBefore()" id="downexport">
- <span>上一周</span>
- </a>
-
- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-right" onclick="goNext()" id="">
- <span>下一周</span>
- </a>
-
- </span>
- </td>
-
-
- </tr> --%>
- <tr height="45px" >
- <td align="center" colspan="2">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ">
- 日 期
- </label>
- </td>
- <td align="center">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ">
- 总经理安排工作内容
- </label>
- </td>
- <td align="center">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ">
- 个人工作计划内容
- </label>
- </td>
- <td align="center" id="tdwho" >
- <label id="titlewho" class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px " >
- 主要参与人员
- </label>
- </td>
- <td align="center">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ">
- 地 点
- </label>
- </td>
- <td align="center">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 16px ">
- 备 注
- </label>
- </td>
-
- </tr>
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="mondate" name="mondate" readonly="true" type="text" value="${weeklyschedulePage.mondate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期一 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatmonamzjl" name="whatmonamzjl" ignore="ignore" >${weeklyschedulePage.whatmonamzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatmonam" name="whatmonam" ignore="ignore" >${weeklyschedulePage.whatmonam}</textarea>
- </td>
- <td id="tdwhomonam" class="value" width="250px">
- <input id="whomonamnames" name="whomonamnames" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore" value="${weeklyschedulePage.whomonamnames}"
- onclick="openPersonSelect('monam');return false;"/>
- <input id="whomonams" name="whomonams" type="hidden" value="${whomonams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="pseronMonAm" onclick="openPersonSelect('monam');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="psersonMonAmRedo" onclick="openPersonSelectClean('monam');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <%-- <input id="wheremonam" name="wheremonam" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" value="${weeklyschedulePage.wheremonam}" /> --%>
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheremonam" name="wheremonam" ignore="ignore" >${weeklyschedulePage.wheremonam}</textarea>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkmonam" name="remarkmonam" ignore="ignore" >${weeklyschedulePage.remarkmonam}</textarea>
- <%-- <input id="remarkmonam" name="remarkmonam" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" value="${weeklyschedulePage.remarkmonam}" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatmonpmzjl" name="whatmonpmzjl" ignore="ignore" >${weeklyschedulePage.whatmonpmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatmonpm" name="whatmonpm" ignore="ignore" >${weeklyschedulePage.whatmonpm}</textarea>
- </td>
- <td id="tdwhomonpm" class="value" width="250px">
- <input id="whomonpmnames" name="whomonpmnames" value="${weeklyschedulePage.whomonpmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('monpm');return false;"/>
- <input id="whomonpms" name="whomonpms" type="hidden" value="${whomonpms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="pseronMonPm" onclick="openPersonSelect('monpm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="psersonMonPmRedo" onclick="openPersonSelectClean('monpm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheremonpm" name="wheremonpm" ignore="ignore" >${weeklyschedulePage.wheremonpm}</textarea>
- <%-- <input id="wheremonpm" name="wheremonpm" value="${weeklyschedulePage.wheremonpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkmonpm" name="remarkmonpm" ignore="ignore" >${weeklyschedulePage.remarkmonpm}</textarea>
- <%-- <input id="remarkmonpm" name="remarkmonpm" value="${weeklyschedulePage.remarkmonpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
-
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="tuesdate" name="tuesdate" readonly="true" type="text" value="${weeklyschedulePage.tuesdate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期二 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whattuesamzjl" name="whattuesamzjl" ignore="ignore" >${weeklyschedulePage.whattuesamzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whattuesam" name="whattuesam" ignore="ignore" >${weeklyschedulePage.whattuesam}</textarea>
- </td>
- <td id="tdwhotuesam" class="value" width="250px">
- <input id="whotuesamnames" name="whotuesamnames" value="${weeklyschedulePage.whotuesamnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('tuesam');return false;" />
- <input id="whotuesams" name="whotuesams" type="hidden" value="${weeklyschedulePage.whotuesams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('tuesam');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('tuesam');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheretuesam" name="wheretuesam" ignore="ignore" >${weeklyschedulePage.wheretuesam}</textarea>
- <%-- <input id="wheretuesam" name="wheretuesam" value="${weeklyschedulePage.wheretuesam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarktuesam" name="remarktuesam" ignore="ignore" >${weeklyschedulePage.remarktuesam}</textarea>
- <%-- <input id="remarktuesam" name="remarktuesam" value="${weeklyschedulePage.remarktuesam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whattuespmzjl" name="whattuespmzjl" ignore="ignore" >${weeklyschedulePage.whattuespmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whattuespm" name="whattuespm" ignore="ignore" >${weeklyschedulePage.whattuespm}</textarea>
- </td>
- <td id="tdwhotuespm" class="value" width="250px">
- <input id="whotuespmnames" name="whotuespmnames" value="${weeklyschedulePage.whotuespmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('tuespm');return false;"/>
- <input id="whotuespms" name="whotuespms" type="hidden" value="${weeklyschedulePage.whotuespms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('tuespm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('tuespm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheretuespm" name="wheretuespm" ignore="ignore" >${weeklyschedulePage.wheretuespm}</textarea>
- <%-- <input id="wheretuespm" name="wheretuespm" value="${weeklyschedulePage.wheretuespm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarktuespm" name="remarktuespm" ignore="ignore" >${weeklyschedulePage.remarktuespm}</textarea>
- <%-- <input id="remarktuespm" name="remarktuespm" value="${weeklyschedulePage.remarktuespm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
-
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="weddate" name="weddate" readonly="true" type="text" value="${weeklyschedulePage.weddate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期三 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatwedamzjl" name="whatwedamzjl" ignore="ignore" >${weeklyschedulePage.whatwedamzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatwedam" name="whatwedam" ignore="ignore" >${weeklyschedulePage.whatwedam}</textarea>
- </td>
- <td id="tdwhowedam" class="value" width="250px">
- <input id="whowedamnames" name="whowedamnames" value="${weeklyschedulePage.whowedamnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('wedam');return false;"/>
- <input id="whowedams" name="whowedams" type="hidden" value="${weeklyschedulePage.whowedams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('wedam');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('wedam');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wherewedam" name="wherewedam" ignore="ignore" >${weeklyschedulePage.wherewedam}</textarea>
- <%-- <input id="wherewedam" name="wherewedam" value="${weeklyschedulePage.wherewedam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkwedam" name="remarkwedam" ignore="ignore" >${weeklyschedulePage.remarkwedam}</textarea>
- <%-- <input id="remarkwedam" name="remarkwedam" value="${weeklyschedulePage.remarkwedam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatwedpmzjl" name="whatwedpmzjl" ignore="ignore" >${weeklyschedulePage.whatwedpmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatwedpm" name="whatwedpm" ignore="ignore" >${weeklyschedulePage.whatwedpm}</textarea>
- </td>
- <td id="tdwhowedpm" class="value" width="250px">
- <input id="whowedpmnames" name="whowedpmnames" value="${weeklyschedulePage.whowedpmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('wedpm');return false;"/>
- <input id="whowedpms" name="whowedpms" type="hidden" value="${weeklyschedulePage.whowedpms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('wedpm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('wedpm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wherewedpm" name="wherewedpm" ignore="ignore" >${weeklyschedulePage.wherewedpm}</textarea>
- <%-- <input id="wherewedpm" name="wherewedpm" value="${weeklyschedulePage.wherewedpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkwedpm" name="remarkwedpm" ignore="ignore" >${weeklyschedulePage.remarkwedpm}</textarea>
- <%-- <input id="remarkwedpm" name="remarkwedpm" value="${weeklyschedulePage.remarkwedpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
-
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="thurdate" name="thurdate" readonly="true" type="text" value="${weeklyschedulePage.thurdate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期四 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatthuramzjl" name="whatthuramzjl" ignore="ignore" >${weeklyschedulePage.whatthuramzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatthuram" name="whatthuram" ignore="ignore" >${weeklyschedulePage.whatthuram}</textarea>
- </td>
- <td id="tdwhothuram" class="value" width="250px">
- <input id="whothuramnames" name="whothuramnames" value="${weeklyschedulePage.whothuramnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('thuram');return false;"/>
- <input id="whothurams" name="whothurams" type="hidden" value="${weeklyschedulePage.whothurams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('thuram');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelect('thuram');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wherethuram" name="wherethuram" ignore="ignore" >${weeklyschedulePage.wherethuram}</textarea>
- <%-- <input id="wherethuram" name="wherethuram" value="${weeklyschedulePage.wherethuram}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkthuram" name="remarkthuram" ignore="ignore" >${weeklyschedulePage.remarkthuram}</textarea>
- <%-- <input id="remarkthuram" name="remarkthuram" value="${weeklyschedulePage.remarkthuram}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatthurpmzjl" name="whatthurpmzjl" ignore="ignore" >${weeklyschedulePage.whatthurpmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatthurpm" name="whatthurpm" ignore="ignore" >${weeklyschedulePage.whatthurpm}</textarea>
- </td>
- <td id="tdwhothurpm" class="value" width="250px">
- <input id="whothurpmnames" name="whothurpmnames" value="${weeklyschedulePage.whothurpmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('thurpm');return false;"/>
- <input id="whothurpms" name="whothurpms" type="hidden" value="${weeklyschedulePage.whothurpms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('thurpm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('thurpm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wherethurpm" name="wherethurpm" ignore="ignore" >${weeklyschedulePage.wherethurpm}</textarea>
- <%-- <input id="wherethurpm" name="wherethurpm" value="${weeklyschedulePage.wherethurpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkthurpm" name="remarkthurpm" ignore="ignore" >${weeklyschedulePage.remarkthurpm}</textarea>
- <%-- <input id="remarkthurpm" name="remarkthurpm" value="${weeklyschedulePage.remarkthurpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
-
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="fridate" name="fridate" readonly="true" type="text" value="${weeklyschedulePage.fridate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期五 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatfriamzjl" name="whatfriamzjl" ignore="ignore" >${weeklyschedulePage.whatfriamzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatfriam" name="whatfriam" ignore="ignore" >${weeklyschedulePage.whatfriam}</textarea>
- </td>
- <td id="tdwhofriam" class="value" width="250px">
- <input id="whofriamnames" name="whofriamnames" value="${weeklyschedulePage.whofriamnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('friam');return false;"/>
- <input id="whofriams" name="whofriams" type="hidden" value="${weeklyschedulePage.whofriams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('friam');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('friam');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wherefriam" name="wherefriam" ignore="ignore" >${weeklyschedulePage.wherefriam}</textarea>
- <%-- <input id="wherefriam" name="wherefriam" value="${weeklyschedulePage.wherefriam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkfriam" name="remarkfriam" ignore="ignore" >${weeklyschedulePage.remarkfriam}</textarea>
- <%-- <input id="remarkfriam" name="remarkfriam" value="${weeklyschedulePage.remarkfriam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatfripmzjl" name="whatfripmzjl" ignore="ignore" >${weeklyschedulePage.whatfripmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatfripm" name="whatfripm" ignore="ignore" >${weeklyschedulePage.whatfripm}</textarea>
- </td>
- <td id="tdwhofripm" class="value" width="250px">
- <input id="whofripmnames" name="whofripmnames" value="${weeklyschedulePage.whofripmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('fripm');return false;"/>
- <input id="whofripms" name="whofripms" type="hidden" value="${weeklyschedulePage.whofripms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('fripm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('fripm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wherefripm" name="wherefripm" ignore="ignore" >${weeklyschedulePage.wherefripm}</textarea>
- <%-- <input id="wherefripm" name="wherefripm" value="${weeklyschedulePage.wherefripm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarkfripm" name="remarkfripm" ignore="ignore" >${weeklyschedulePage.remarkfripm}</textarea>
- <%-- <input id="remarkfripm" name="remarkfripm" value="${weeklyschedulePage.remarkfripm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
-
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="satdate" name="satdate" readonly="true" type="text" value="${weeklyschedulePage.satdate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期六 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsatamzjl" name="whatsatamzjl" ignore="ignore" >${weeklyschedulePage.whatsatamzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsatam" name="whatsatam" ignore="ignore" >${weeklyschedulePage.whatsatam}</textarea>
- </td>
- <td id="tdwhosatam" class="value" width="250px">
- <input id="whosatamnames" name="whosatamnames" value="${weeklyschedulePage.whosatamnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('satam');return false;"/>
- <input id="whosatams" name="whosatams" type="hidden" value="${weeklyschedulePage.whosatams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('satam');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('satam');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheresatam" name="wheresatam" ignore="ignore" >${weeklyschedulePage.wheresatam}</textarea>
- <%-- <input id="wheresatam" name="wheresatam" value="${weeklyschedulePage.wheresatam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarksatam" name="remarksatam" ignore="ignore" >${weeklyschedulePage.remarksatam}</textarea>
- <%-- <input id="remarksatam" name="remarksatam" value="${weeklyschedulePage.remarksatam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsatpmzjl" name="whatsatpmzjl" ignore="ignore" >${weeklyschedulePage.whatsatpmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsatpm" name="whatsatpm" ignore="ignore" >${weeklyschedulePage.whatsatpm}</textarea>
- </td>
- <td id="tdwhosatpm" class="value" width="250px">
- <input id="whosatpmnames" name="whosatpmnames" value="${weeklyschedulePage.whosatpmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('satpm');return false;"/>
- <input id="whosatpms" name="whosatpms" type="hidden" value="${weeklyschedulePage.whosatpms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('satpm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('satpm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheresatpm" name="wheresatpm" ignore="ignore" >${weeklyschedulePage.wheresatpm}</textarea>
- <%-- <input id="wheresatpm" name="wheresatpm" value="${weeklyschedulePage.wheresatpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarksatpm" name="remarksatpm" ignore="ignore" >${weeklyschedulePage.remarksatpm}</textarea>
- <%-- <input id="remarksatpm" name="remarksatpm" value="${weeklyschedulePage.remarksatpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
-
- <tr>
- <td align="center" style="width: 100px" rowspan="2">
- <input id="sundate" name="sundate" readonly="true" type="text" value="${weeklyschedulePage.sundate}" class="inputxt" style="width: 90px;font-size: 13px;border: 0;text-align: center;font-weight: bold;" />
- <br>
- <label class="Validform_label">
- ( 星期日 )
- </label>
- </td>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >上午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsunamzjl" name="whatsunamzjl" ignore="ignore" >${weeklyschedulePage.whatsunamzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsunam" name="whatsunam" ignore="ignore" >${weeklyschedulePage.whatsunam}</textarea>
- </td>
- <td id="tdwhosunam" class="value" width="250px">
- <input id="whosunamnames" name="whosunamnames" value="${weeklyschedulePage.whosunamnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('sunam');return false;"/>
- <input id="whosunams" name="whosunams" type="hidden" value="${weeklyschedulePage.whosunams}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('sunam');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('sunam');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheresunam" name="wheresunam" ignore="ignore" >${weeklyschedulePage.wheresunam}</textarea>
- <%-- <input id="wheresunam" name="wheresunam" value="${weeklyschedulePage.wheresunam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarksunam" name="remarksunam" ignore="ignore" >${weeklyschedulePage.remarksunam}</textarea>
- <%-- <input id="remarksunam" name="remarksunam" value="${weeklyschedulePage.remarksunam}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <tr>
- <td align="center" style="width: 80px">
- <label class="Validform_label" >下午</label>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsunpmzjl" name="whatsunpmzjl" ignore="ignore" >${weeklyschedulePage.whatsunpmzjl}</textarea>
- </td>
- <td align="center" width="400px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="whatsunpm" name="whatsunpm" ignore="ignore" >${weeklyschedulePage.whatsunpm}</textarea>
- </td>
- <td id="tdwhosunpm" class="value" width="250px">
- <input id="whosunpmnames" name="whosunpmnames" value="${weeklyschedulePage.whosunpmnames}" readonly="true" type="text" style="width: 250px;border: none;height: 20px;" class="inputxt" ignore="ignore"
- onclick="openPersonSelect('sunpm');return false;"/>
- <input id="whosunpms" name="whosunpms" type="hidden" value="${weeklyschedulePage.whosunpms}">
- <label class="Validform_label" style="display: none;">主要参与人员</label>
- <!-- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openPersonSelect('sunpm');return false;">选择</a>
- <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="openPersonSelectClean('sunpm');return false;">清空</a> -->
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="wheresunpm" name="wheresunpm" ignore="ignore" >${weeklyschedulePage.wheresunpm}</textarea>
- <%-- <input id="wheresunpm" name="wheresunpm" value="${weeklyschedulePage.wheresunpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">地点</label>
- </td>
- <td class="value" width="150px">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="remarksunpm" name="remarksunpm" ignore="ignore" >${weeklyschedulePage.remarksunpm}</textarea>
- <%-- <input id="remarksunpm" name="remarksunpm" value="${weeklyschedulePage.remarksunpm}" type="text" style="width: 140px;height: 40px;border: none" class="inputxt" ignore="ignore" /> --%>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- <td align="center" colspan="2" style="background-color: yellow;">
- <label class="Validform_label" style="text-align: center; margin:0 auto;font-size: 14px ;" >上周未完成工作</label>
- </td>
- <td id="tdnotdone" align="center" colspan="5">
- <textarea style="width:98%;height: 40px;border: none" class="inputxt" rows="3" id="notdone" readonly="true" name="notdone" ignore="ignore" >${weeklyschedulePage.notdone}</textarea>
- </td>
- <tr>
-
- </tr>
-
- <tr>
- <td id="tdbtn" height="50px" align="center" colspan="7">
- <!-- <a href="#" class="easyui-linkbutton l-btn" plain="true" iconcls="icon-le-back" onclick="history.go(-1)">返回</a> -->
- <div style="display:none"><input type="submit" id ="btnsub" value=""/></div>
- <!-- <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-le-ok" onclick="btn_ok()"> 保 存 </a> -->
- </td>
- </tr>
- </table>
-
- </t:formvalid>
- </div>
- </body>
- <style>
- .test{ position:fixed; bottom:0; left:0;width:100%;height:60px;background-color:white;}
- /* p{
- position:absolute;
- top:50%;
-
- } */
- select{
- /* position: absolute;
- top: 50%; */
- margin-top: 10px;
- /* margin-left: -320px; */
- }
- </style>
- <script src = "webpage/com/xcgl/weeklyschedule/weeklyschedule.js"></script>
- <script type="text/javascript">
- function openPersonSelect(weekday){
- $.dialog({content: 'url:weeklyscheduleController.do?openPersonView', zIndex: getzIndex(), title: '主要参与人员选择', lock: true, width: '650px', height: '400px',
- opacity: 0.4, button: [
- {name: '<t:mutiLang langKey="common.confirm"/>', callback: function (){
- //var postGeneralId=$("#id").val();
- //父页面接子页面传值
-
- //获得子页面getReason()方法中的值
- var iframe = this.iframe.contentWindow;
- // var userid="";
- if(iframe.getReason().length>0){
- var strData=eval(iframe.getReason());
- for(var key in strData[0]){
- if(key=="strUserId"){
- var idEle = document.getElementById("who"+weekday+"s");
- idEle.value = strData[0][key];
- }else if(key=="strRealName"){
- var nameEle = document.getElementById("who"+weekday+"names");
- nameEle.value = strData[0][key];
- }
- }
- }
-
- // if(userid.length==0){
- // layer.alert("请选择班次员工");
- // return false;
- // }
- }, focus: true},
- {name: '<t:mutiLang langKey="common.cancel"/>', callback: function (){}}
- ]}).zindex();
- }
- function goNext(){
- var managerflag = $("#managerflag").val();
- var url = "weeklyscheduleController.do?goAdd&opt=next¤tMonDate="+$("#mondate").val()+"&userid="+$("#userid").val();
- if(managerflag == ""){
- window.location.href=url;
- }else{
- url +="&managerflag=1"
- window.location.href=url;
- }
-
- }
- function goBefore(){
- var managerflag = $("#managerflag").val();
- var url = "weeklyscheduleController.do?goAdd&opt=before¤tMonDate="+$("#mondate").val()+"&userid="+$("#userid").val();
- if(managerflag == ""){
- window.location.href=url;
- }else{
- url +="&managerflag=1"
- window.location.href=url;
- }
- }
- function changeUser(obj) {
- var oldvalue = $("#userid").val();
- /* layer.confirm('是否保存当前数据?', {
- btn: ['确定','取消'], //按钮
- shade: false //不显示遮罩
- }, function(){
- document.formobj.submit();
- location.href="weeklyscheduleController.do?goAdd&opt=changeUser&managerflag=1&userid="+obj.options[obj.selectedIndex].value+"¤tMonDate="+$("#mondate").val();
- }, function(){
- location.href="weeklyscheduleController.do?goAdd&opt=changeUser&managerflag=1&userid="+obj.options[obj.selectedIndex].value+"¤tMonDate="+$("#mondate").val();
- }); */
-
- $.dialog.setting.zIndex = getzIndex(true);
- $.dialog.setting.width = '200px';
- $.dialog.confirm("是否保存当前数据?", function(){
- userchangeflag = '1';
- $("#btnsub").click();
- /* document.formobj.submit(function(data){
- window.location.href="weeklyscheduleController.do?goAdd&opt=changeUser&managerflag=1&userid="+obj.options[obj.selectedIndex].value+"¤tMonDate="+$("#mondate").val();
- }); */
- }, function(){
- window.location.href="weeklyscheduleController.do?goAdd&opt=changeUser&managerflag=1&userid="+obj.options[obj.selectedIndex].value+"¤tMonDate="+$("#mondate").val();
- });
- /* $("#userselect").find("option[value=" + oldvalue +"]").prop("selected",true); */
- /* var userid = obj.options[obj.selectedIndex].value; */
- }
- //清空班次员工
- function openPersonSelectClean(weekday) {
- var idEle = document.getElementById("who" + weekday + "s");
- idEle.value = "";
- var nameEle = document.getElementById("who" + weekday + "names");
- nameEle.value = "";
- }
- </script>
|