123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- {include file="header.htm" /}
- <body class="bodystyle" style="overflow-y: scroll; cursor: default; -moz-user-select: inherit;">
- <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
- <div id="append_parent"></div>
- <div id="ajaxwaitid"></div>
- <div class="page">
- {include file="bar.htm" /}
- <form class="form-horizontal" id="post_form" action="{:weapp_url('Makewaphtml/Makewaphtml/add')}" method="post">
- <div class="ncap-form-default">
- <dl class="row">
- <dt class="tit">
- <label for="title"><em>*</em>网站名称</label>
- </dt>
- <dd class="opt">
- <input type="text" name="title" value="" id="title" class="input-txt">
- <span class="err"></span>
- <p class="notic"></p>
- </dd>
- </dl>
- <dl class="row">
- <dt class="tit">
- <label for="url"><em>*</em>网址URL</label>
- </dt>
- <dd class="opt">
- <input type="text" name="url" placeholder="http://" id="url" class="input-txt">
- <span class="err"></span>
- <p class="notic"></p>
- </dd>
- </dl>
- <dl class="row">
- <dt class="tit">
- <label for="logo_local"><em>*</em>上传Logo</label>
- </dt>
- <dd class="opt">
- <div class="input-file-show div_logo_local">
- <span class="show">
- <a id="img_a_local" class="nyroModal" rel="gal" href="javascript:void(0);" onmouseout="layer.close(layer_tips);" target="_blank">
- <i id="img_i_local" class="fa fa-picture-o"></i>
- </a>
- </span>
- <span class="type-file-box">
- <input type="text" id="logo_local" name="logo_local" value="" class="type-file-text" autocomplete="off">
- <input type="button" name="button" id="button1" value="选择上传..." class="type-file-button">
- <input class="type-file-file" onClick="GetUploadify(1,'','system','img_call_back','{:U('Uploadify/upload')}')" size="30" hidefocus="true" nc_type="change_site_logo" title="点击前方预览图可查看大图,点击按钮选择文件并提交表单后上传生效">
- </span>
- </div>
- <input type="text" id="logo_remote" name="logo_remote" value="" placeholder="http://" class="input-txt" style="display: none;">
-
- <label><input type="checkbox" name="is_remote" id="is_remote" value="1" onClick="clickRemote(this, 'logo');">远程图片</label>
- <span class="err"></span>
- <p class="notic">建议尺寸 88 * 31 (像素) 的gif或jpg文件</p>
- </dd>
- </dl>
- <dl class="row">
- <dt class="tit">
- <label for="sort_order">排序</label>
- </dt>
- <dd class="opt">
- <input type="text" name="sort_order" value="100" id="sort_order" class="input-txt">
- <span class="err"></span>
- <p class="notic">越小越靠前</p>
- </dd>
- </dl>
- <dl class="row">
- <dt class="tit">
- <label for="intro">网站备注</label>
- </dt>
- <dd class="opt">
- <textarea rows="5" cols="80" id="intro" name="intro" style="height:80px;" placeholder="备注一些站长联系方式、信息等内容"></textarea>
- <p class="notic"></p>
- </dd>
- </dl>
- <dl class="row">
- <dt class="tit">
- <label>新窗口打开</label>
- </dt>
- <dd class="opt">
- <div class="onoff">
- <label for="target1" class="cb-enable selected">是</label>
- <label for="target0" class="cb-disable ">否</label>
- <input id="target1" name="target" value="1" type="radio" checked="checked">
- <input id="target0" name="target" value="0" type="radio">
- </div>
- <p class="notic">点击链接在新窗口打开</p>
- </dd>
- </dl>
- <div class="bot">
- <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
- </div>
- </div>
- </form>
- </div>
- <script type="text/javascript">
- // 判断输入框是否为空
- function checkForm(){
- if($('input[name=title]').val() == ''){
- showErrorMsg('网站名称不能为空!');
- $('input[name=title]').focus();
- return false;
- }
- if($('input[name=url]').val() == ''){
- showErrorMsg('网址URL不能为空!');
- $('input[name=url]').focus();
- return false;
- }
- if ($('input[name=is_remote]').is(':checked')) {
- if($('input[name=logo_remote]').val() == ''){
- showErrorMsg('请上传网站Logo图片!');
- $('input[name=logo_remote]').focus();
- return false;
- }
- } else {
- if($('input[name=logo_local]').val() == ''){
- showErrorMsg('请上传网站Logo图片!');
- $('input[name=logo_local]').focus();
- return false;
- }
- }
- layer_loading('正在处理');
- $('#post_form').submit();
- }
-
- function img_call_back(fileurl_tmp)
- {
- $("#logo_local").val(fileurl_tmp);
- $("#img_a_local").attr('href', fileurl_tmp);
- $("#img_i_local").attr('onmouseover', "layer_tips=layer.tips('<img src="+fileurl_tmp+" class=\\'layer_tips_img\\'>',this,{tips: [1, '#fff']});");
- }
- </script>
- {include file="footer.htm" /}
|