<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>增加字段</title>
<link rel="stylesheet" href="../static/css/bootstrap.min.css">
<link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="css/base.css" rel="stylesheet" type="text/css" />
<script language="javascript" src="../static/js/jquery.js"></script>
<script src="../static/js/bootstrap.bundle.js"></script>
<script language='javascript' src="js/main.js"></script>
<script language="javascript">
var notAllow = " <?php echo $f; ?> ";
function GetFields()
{
	var theform = document.form1;
	var fieldname = theform.fieldname.value;
	var itemname = theform.itemname.value;
	var dtype = 'text';
	var enums = document.getElementsByName('dtype');
	for(i=0;i<enums.length;i++)
	{
		if(enums[i].checked) dtype = enums[i].value;
	}
	var isnull = theform.isnull.value;
	var vdefault = theform.vdefault.value;
	var maxlength = theform.maxlength.value;
	var vinnertext = theform.vinnertext.value;
	var spage = (theform.spage[0].checked ? theform.spage[0].value : theform.spage[1].value);
	var sisnull = (isnull==0 ? "false" : "true");
	
	if(itemname=="")
	{
		ShowMsg("表单提示名称不能为空");
		theform.itemname.focus();
		return false;
	}
	
	if(fieldname=="") 
	{
		ShowMsg("字段名称不能为空");
		theform.fieldname.focus();
		return false;
	}
	
	if(notAllow.indexOf(" "+fieldname+" ") >-1 ) 
	{
		ShowMsg("字段名称不合法,如下字段名已经存在,建议在名称后加上数字以区分:\n"+notAllow);
		return false;
	}
	
	if((dtype=="radio" || dtype=="select" || dtype=="checkbox") && vdefault=="")
	{
		ShowMsg("您选择的select或radio、checkbox类型,必须默认值设置选择的项目(用逗号[,]分开)");
		return false;
	}
	
	if(spage=="no") spage = "";
	
	revalue =  "<field:"+fieldname+" itemname=\""+itemname+"\" autofield=\"1\" type=\""+dtype+"\" isnull=\""+sisnull+"\" default=\""+vdefault+"\" ";
	revalue += " maxlength=\""+maxlength+"\" page=\""+spage+"\">\r\n"+vinnertext+"</field:"+fieldname+">\r\n";
	document.form1.fieldstring.value = revalue;
 
  return true;
  
}
</script>
<style type="text/css">
td{ padding:2px; padding-left:6px; line-height:150%; }
.STYLE1 {color: #FF3300}
.STYLE2 {color: #666666}
.nw { float:left; width:150px; }
.cls { clear:both; }
</style>
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="table maintable table-bordered mt-3" style="background:#CFCFCF;">
  <form name="form1" action="diy_field_add.php" method="post" onSubmit="return GetFields();">
  <input type='hidden' name='action' value='save'>
  <input type='hidden' name='diyid' value='<?php echo $diyid?>'>
	<input type='hidden' name='fieldstring' value=''>
    <tr> 
      <td height="26" colspan="2" bgcolor="#EDF9D5" background="images/tbg.gif"> 
        <table width="98%" border="0" cellspacing="0" cellpadding="0" class="table table-borderless">
          <tr> 
            <td width="30%">&nbsp;<b><a href="diy_main.php">自定义表单管理</a> &gt;&gt; 增加新字段:</b>            </td>
            <td align="right" style="padding-top:6px;">
			        <button type="button" name="ss1" onClick="location='diy_edit.php?diyid=<?php echo $diyid; ?>&dopost=edit';" class="btn btn-success btn-sm">当前表单信息</button>
            </td>
          </tr>
        </table> </td>
    </tr>
    <tr>
      <td colspan="2" bgcolor="#FFFFFF"><span class="STYLE1">所有填写的内容不允许包含双引号[<strong>&quot;</strong>],否则配置将无法写入</span></td>
    </tr>
    <tr> 
      <td bgcolor="#FFFFFF"><strong>表单提示文字:</strong><br>
          <span class="STYLE2">发布内容时显示的提示文字</span></td>
      <td bgcolor="#FFFFFF">
      	<input name="itemname" type="text" id="itemname" class="pubinputs" />
        *</td>
    </tr>
    <tr> 
      <td width="28%" bgcolor="#FFFFFF"><strong>字段名称:</strong><br>
      <span class="STYLE2">
      	只能用英文字母或数字,数据表的真实字段名,如果数据类型是联动类型,该项应该填写联动类型的<a href='stepselect_main.php' target='_blank'>[组名称]</a>
      </span>
      </td>
      <td width="72%" bgcolor="#FFFFFF"> 
        <input name="fieldname" type="text" id="fieldname" class="pubinputs" /> 
        *
       </td>
    </tr>
    <tr> 
      <td bgcolor="#FFFFFF">
      <strong>内容是否需要分页符:</strong><br>
      <span class="STYLE2">如果内容需要分页符,不论何种内容,都可以用#P#副标题#e#作为分页符号实现内容分页,但一个模型里仅允许一个这样的字段!</span>
      </td>
      <td bgcolor="#FFFFFF">
      	<input name="isnull" type="hidden" value="1" />
        <label><input name="spage" type="radio"  value="split" class='np' />
         是</label>
         &nbsp; 
         <label><input name="spage" type="radio"  value="no" class='np' checked='1' />
         否</label>
     </td>
    </tr>
    <tr> 
      <td bgcolor="#FFFFFF">
      <strong>数据类型:</strong>
      </td>
      <td bgcolor="#FFFFFF">
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype1' value="text" checked='1'> 单行文本(varchar)</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype2' value="textchar"> 单行文本(char)</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype3' value="multitext"> 多行文本</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype4' value="htmltext"> HTML文本</label></div>
<br class='cls' />
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype6' value="int"> 整数类型</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype7' value="float"> 小数类型</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype8' value="datetime"> 时间类型</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype13' value="select"> 使用option下拉框</label></div>
<br class='cls' />
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype14' value="radio"> 使用radio选项卡</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype15' value="checkbox"> Checkbox多选框</label></div>
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype9' value="img"> 图片</label></div>
<!--div class='nw'><input type='radio' class='np' name='dtype' id='dtype10' value="imgfile">图片(仅网址)</div-->
<!--div class='nw'><input type='radio' class='np' name='dtype' id='dtype11' value="media">多媒体文件</div-->
<div class='nw'><label><input type='radio' class='np' name='dtype' id='dtype12' value="addon"> 附件类型</label></div>
<!--div class='nw'><input type='radio' class='np' name='dtype' id='dtype16' value="stepselect">联动类型</div-->
       </td>
    </tr>
    <tr> 
      <td bgcolor="#FFFFFF"><strong>默认值:</strong><br>
      <span class="STYLE2">
      如果定义数据类型为select、radio、checkbox时,此处填写被选择的项目(用“,”分开,如“男,女,人妖”)
      </span>
      </td>
      <td bgcolor="#FFFFFF"> 
      	<textarea name="vdefault" type="text" id="vdefault" style="width:70%;height:60px"></textarea>
      </td>
    </tr>
    <tr> 
      <td bgcolor="#FFFFFF"><strong>最大长度:</strong><br>
      <span class="STYLE2">
      文本数据必须填写,大于255为text类型
      </span>
      </td>
      <td bgcolor="#FFFFFF">
      	<input name="maxlength" type="text" id="maxlength" class="pubinputs" value="250" style="width:80px;" />
       </td>
    </tr>
    <tr>
      <td bgcolor="#FFFFFF"><strong>自定义表单HTML:</strong></td>
      <td bgcolor="#FFFFFF">
      	自定义表单HTML模板中用~name~表示提示文字,~form~表示表单元素
      </td>
    </tr>
    <tr> 
      <td align="center" bgcolor="#FFFFFF"></td>
      <td bgcolor="#FFFFFF">
      	<textarea name="vinnertext" cols="45" rows="5" id="vinnertext" style="width:70%; height:120px;"></textarea>
      </td>
    </tr>
    <tr> 
      <td height="26" colspan="2" bgcolor="#F9FDF0">
	     <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table table-borderless">
          <tr> 
            <td width="26%" height="36">&nbsp;</td>
            <td width="10%">
              <button type="submit" class="btn btn-success">确定</button>
            </td>
            <td>
              <button type="reset" class="btn btn-success">重置</button>
            </td>
          </tr>
        </table>
        </td>
    </tr>
  </form>
</table>
</body>
</html>