| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet href="../../css/body.css" type="text/css" ?>
- <xhtml:html xmlns:ex="http://www.comsquare.co.kr/xforms/excel" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:ms="urn:schemas-microsoft-com:xslt" xmlns:my="http://www.comsquare.co.kr/example" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:cs="http://www.comsquare.co.kr/xforms">
- <xhtml:head>
- <xhtml:title>
- <![CDATA[MES系统 >> 菜单选取]]>
- </xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <rec/>
- <dept/>
- <question/>
- <reqData/>
- <resData/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- Init();
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../js/boaCommon.js"/>
- <script type="javascript" src="../../js/boaMsg.js"/>
- <script type="javascript" src="../../js/mesCommon.js"/>
- <script type="javascript">
- <![CDATA[
- function Init(node)
- {
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body overflow="hidden" pagewidth="300" pageheight="300" guideline="2,500;1,708;" style="font-family:宋体; ">
- <caption id="caption4" class="cell" style="left:10px; top:40px; width:90px; height:20px; border-color:#000000; border-style:solid; ">反馈部门</caption>
- <select1 id="combo2" ref="/root/dept" appearance="minimal" editmode="search" style="left:110px; top:40px; width:180px; height:20px; border-color:#000000; border-style:solid; ">
- <choices>
- <itemset nodeset="/root/rec/deptList/DeptResult_Row">
- <label ref="LABEL"/>
- <value ref="VALUE"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- /*model.removenode("/root/reqData");
- commSendReq("/root/formData");
- commSubmit("UIB021100-service", "findOrdNo", "glueAction.do");
- model.copyNode("/root/comboData/ordNo","/root/resData/OrdNoResult_VO");
- model.refresh();*/
- ]]>
- </script>
- </select1>
- <caption id="caption1" class="cell" style="left:10px; top:70px; width:90px; height:20px; border-color:#000000; border-style:solid; ">问题描述</caption>
- <textarea id="textarea1" ref="/root/question" style="left:10px; top:100px; width:280px; height:150px; text-align:left; vertical-align:top; "/>
- <caption id="caption3" style="left:140px; top:265px; width:73px; height:20px; color:#000000; text-align:center; vertical-align:middle; background-image:../../images/exit.gif; cursor:hand; ">
- <![CDATA[提交]]>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var text = model.getValue("/root/question");
- if(text.length >100)
- {
- window.alert("问题描述不能超过100个字!!"," 提示 ");
- return;
- }
- model.removenode("/root/reqData");
- model.makeNode("/root/reqData");
- model.makeValue("/root/reqData/REG_ID",model.getValue("/root/rec/REG_ID"));
- model.makeValue("/root/reqData/question",model.getValue("/root/question"));
- model.makeValue("/root/reqData/dept",model.getValue("/root/dept"));
- model.makeValue("/root/reqData/flag","i");
- commSubmit("UI_QUESTION_COMMON-service" , "save" , "glueAction.do");
- model.refresh();
- window.close();
- ]]>
- </script>
- </caption>
- <caption id="caption2" style="left:220px; top:265px; width:73px; height:20px; color:#000000; text-align:center; vertical-align:middle; background-image:../../images/exit.gif; cursor:hand; ">
- <![CDATA[退出]]>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- window.close();
- ]]>
- </script>
- </caption>
- <caption id="caption5" style="left:10px; top:10px; width:100px; height:20px; color:#000000; ">问题提交</caption>
- </xhtml:body>
- </xhtml:html>
|