*${message("跟进类型")}:
|
<select class="text followType" name="followType" id="followType" required btn-fun="clear">
<option value="">--请选择--</option>
<option value="1" [#if followUpRecord.followType == 1] selected [/#if]>商机跟进</option>
<option value="2" [#if followUpRecord.followType == 2] selected [/#if]>客户跟进</option>
</select>
|
*${message("跟进对象")}:
|
<input type="hidden" id="objId" name="objId" class="text objId"
value="${followUpRecord.objId}" btn-fun="clear" required/>
<input type="text" id="objName" name="objName" class="text objName"
value="${followUpRecord.objName}" onkeyup="clearSelect(this)" required/>
<input type="button" class="iconSearch" value="" id="selectObj">
|
${message("商机阶段")}:
|
<input type="text" name="projectStageValue" class="text projectStageValue" maxlength="200"
value="${followUpRecord.projectStageValue}"/>
|
*${message("状态")}:
|
<select class="text recordStatus" name="recordStatus" required btn-fun="clear" style="pointer-events: none;background-color: #f7f7f7">
<option value="1" [#if followUpRecord.recordStatus == 1] selected [/#if]>未提交</option>
<option value="2" [#if followUpRecord.recordStatus == 2] selected [/#if]>已提交</option>
<option value="3" [#if followUpRecord.recordStatus == 3] selected [/#if]>审批中</option>
</select>
|
${message("标段划分")}:
|
<input type="text" name="sectionDivision" class="text sectionDivision" maxlength="200" />
|
${message("跟进阶段")}:
|
<select class="text followUpState" name="followUpState" id="followUpState" required btn-fun="clear">
<option value="">--请选择--</option>
[#list followUpStates as followUpState]
<option value="${followUpState.value}" [#if followUpRecord.followUpState == followUpState.value] selected [/#if] >${followUpState.remark}</option>
[/#list]
</select>
|
${message("是否关闭商机")}:
|
<select class="text isCloseNiche" name="isCloseNiche" id="isCloseNiche" required btn-fun="clear">
<option value="">--请选择--</option>
<option value="1" [#if followUpRecord.isCloseNiche == 1] selected [/#if]>否</option>
<option value="2" [#if followUpRecord.isCloseNiche == 2] selected [/#if]>是</option>
</select>
|
${message("项目进度详细描述")}:
|
<textarea name="projectScheduleDescription" class="text projectScheduleDescription" cols="30"
rows="2"/>${followUpRecord.projectScheduleDescription}</textarea>
|
${message("项目运作思路及关键点")}:
|
<textarea name="ideaPoint" class="text ideaPoint" cols="30"
rows="2"/>${followUpRecord.ideaPoint}</textarea>
|
${message("下一步工作计划")}:
|
<textarea name="nextPlan" class="text nextPlan" cols="15"
rows="2"/>${followUpRecord.nextPlan} </textarea>
|
${message("需公司其他部门支撑事项")}:
|
<textarea name="needBackup" class="text needBackup" cols="15"
rows="2"/>${followUpRecord.needBackup}</textarea>
|
*${message("总结")}:
|
<textarea cols="20" rows="2" name="sumUp" class="text sumUp" required/>${followUpRecord.sumUp} </textarea>
|
*${message("商机关闭原因")}:
|
<textarea name="closeResult" class="text closeResult" cols="30"
rows="2" [#if followUpRecord.isCloseNiche == 2] required [/#if]/>${followUpRecord.closeResult}</textarea>
|
${message("图片")} |
[#list followUpRecord.images as image]
<input type="hidden" name="images[${image_index}].title" value="${image.title}">
<input type="hidden" name="images[${image_index}].source" value="${image.source}">
<input type="hidden" name="images[${image_index}].large" value="${image.large}">
<input type="hidden" name="images[${image_index}].medium" value="${image.medium}">
<input type="hidden" name="images[${image_index}].thumbnail" value="${image.thumbnail}">
[/#list]
|