|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>修改自定义表单字段</title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- <script src="/static/web/js/jquery.min.js"></script>
- <script src="/static/web/js/bootstrap.min.js"></script>
- <script src="/static/web/js/admin.main.js"></script>
- </head>
- <body>
- <div class="container-fluid">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
- <li class="breadcrumb-item"><a href="diy_main.php">自定义表单管理</a></li>
- <li class="breadcrumb-item active">修改自定义表单字段</li>
- </ol>
- <div class="card shadow-sm">
- <div class="card-header">修改自定义表单字段</div>
- <div class="card-body">
- <form name="form1" action="diy_field_edit.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="fname" value="<?php echo $fname?>">
- <input type="hidden" name="issystem" value="<?php echo $issystem?>">
- <input type="hidden" name="fieldstring">
- <div class="table-responsive">
- <table class="table table-borderless">
- <tbody>
- <tr>
- <td>字段名称</td>
- <td><input type="text" name="itemname" id="itemname" class="admin-input-sm" value="<?php echo $ctag->GetAtt('itemname')?>" required>(前后台显示字段的名称)</td>
- </tr>
- <tr>
- <td width="260">字段标识</td>
- <td><?php echo $fname?>(只能用英文字母或数字,如果数据类型是联动类型,请填写联动类型组名称)</td>
- </tr>
- <tr>
- <td>是否使用分页符</td>
- <td>
- <input type="hidden" name="isnull" value="1">
- <label><input type="radio" name="spage" value="split" <?php if ($ctag->GetAtt('page')=='split') echo 'checked';?>> 是</label>
- <label><input type="radio" name="spage" value="no" <?php if ($ctag->GetAtt('page')=='no'||$ctag->GetAtt('page')=='') echo 'checked';?>> 否</label>
- <span>(如果文档使用分页符,文档用#p#副标题#e#作为分页符实现文档分页,但仅允许一个字段)</span>
- </td>
- </tr>
- <tr>
- <td>数据类型</td>
- <td>
- <select name="dtype" id="type" class="admin-input-sm">
- <?php
- $dtype = $ctag->GetAtt('type');
- if ($dtype!='' && isset($fieldtypes[$dtype])) {
- echo "<option value='{$dtype}'>{$fieldtypes[$dtype]}</option>";
- $canchange = true;
- } else {
- echo "<option value='{$dtype}'>系统专用类型</option>";
- $canchange = false;
- }
- if ($canchange) {
- ?>
- <option value="text">单行文本(varchar)</option>
- <option value="textchar">单行文本(char)</option>
- <option value="multitext">多行文本</option>
- <option value="htmltext">网页文本</option>
- <option value="int">整数类型</option>
- <option value="float">小数类型</option>
- <option value="datetime">时间类型</option>
- <option value="select">option下拉框</option>
- <option value="radio">radio选项卡</option>
- <option value="checkbox">checkbox多选框</option>
- <?php }?>
- </select>
- </td>
- </tr>
- <tr>
- <td>默认值</td>
- <td>
- <p>(自定义字段数据类型为select、radio、checkbox时,下面填写数据,英文逗号隔开,如:DedeBIZ,得德)</p>
- <textarea name="vdefault" id="vdefault" class="admin-textarea-xl"><?php echo $ctag->GetAtt('default');?></textarea>
- </td>
- </tr>
- <tr>
- <td>自定义网页表单</td>
- <td>
- <p>(自定义网页表单用~name~表示提示文字,~form~表示表单元素)</p>
- <textarea name="vinnertext" id="vinnertext" class="admin-textarea-xl"><?php echo $ctag->GetInnerText();?></textarea>
- </td>
- </tr>
- <tr>
- <td>最大长度</td>
- <td><input type="text" name="maxlength" id="maxlength" class="admin-input-sm" value="<?php echo $ctag->GetAtt('maxlength')?>">(文本数据必须填写,大于255为text类型)</td>
- </tr>
- <tr>
- <td colspan="2" align="center">
- <button type="submit" class="btn btn-success btn-sm">保存</button>
- <button type="reset" class="btn btn-outline-success btn-sm">重置</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </form>
- </div>
- </div>
- </div>
- <script>
- function GetFields() {
- var theform = document.form1;
- var itemname = theform.itemname.value;
- var fieldname = theform.fname.value;
- var dtype = theform.dtype.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 (spage=="no") spage = '';
- revalue = "<field:"+fieldname+" itemname=\""+itemname+"\" autofield=\"1\" type=\""+dtype+"\"";
- revalue += " isnull=\""+sisnull+"\" default=\""+vdefault+"\" ";
- revalue += " maxlength=\""+maxlength+"\" page=\""+spage+"\">"+vinnertext+"</field:"+fieldname+">";
- document.form1.fieldstring.value = revalue;
- return true;
- }
- </script>
- </body>
- </html>
|