Commit de4380e9 by wangling

20190611---wangling---用采合一对接时空伴随分析

parent 7b271597
......@@ -70,6 +70,21 @@ public class TrackTogetherContoller {
return modelAndView;
}
/**
*时空伴随任务 采集 界面
* @return
*/
@RequestMapping(value = "/toskbsrwInsertJsp2")
public ModelAndView toskbsrwInsertJsp2(String fsrjh,String fsrIdentity,String taskCaseId, String objectValue, String objectType){
ModelAndView modelAndView = new ModelAndView("gjbs/Insert");
modelAndView.addObject("fsrjh",fsrjh);
modelAndView.addObject("fsrIdentity",fsrIdentity);
modelAndView.addObject("taskCaseId",taskCaseId);
modelAndView.addObject("flag","skbsjsp");
modelAndView.addObject("objectValue",objectValue);
modelAndView.addObject("objectType",objectType);
return modelAndView;
}
/**
*
* @Description: 跳转到时空轨迹伴随结果展示(新)
* @Param:
......
......@@ -53,7 +53,12 @@
<td class="ar" width="13.3%">标识号:</td>
<td width="20%">
<span class="textbox" style="border:none">
<input type="text" id="objectValue" name="objectValue" class="easyui-textbox" style="height:26px;" data-options="required:true"/>
<c:if test="${flag eq 'skbsjsp'}">
<input type="text" id="objectValue" name="objectValue" class="easyui-textbox" style="height:26px;" data-options="required:true" value="${objectValue}"/>
</c:if>
<c:if test="${flag eq 'skbs'}">
<input type="text" id="objectValue" name="objectValue" class="easyui-textbox" style="height:26px;" data-options="required:true"/>
</c:if>
</span>
</td>
</tr>
......@@ -63,9 +68,16 @@
<span class="textbox" style="border:none;">
<select name = "objectType" id="objectType" class="easyui-combobox" data-options="panelHeight:'auto'" style="height:26px;">
<option value=""></option>
<option value="3996">手机号码</option>
<option value="4314"> IMSI</option>
<option value="6424">车牌号</option>
<c:if test="${flag eq 'skbsjsp'}">
<option value="3996" <c:if test="${objectType eq '3996'}">selected="selected"</c:if>>手机号码</option>
<option value="4314" <c:if test="${objectType eq '4314'}">selected="selected"</c:if>>IMSI</option>
<option value="6424" <c:if test="${objectType eq '6424'}">selected="selected"</c:if>>车牌号</option>
</c:if>
<c:if test="${flag eq 'skbs'}">
<option value="3996">手机号码</option>
<option value="4314">IMSI</option>
<option value="6424">车牌号</option>
</c:if>
</select>
</span>
</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment