|
|
|
<extend name="Public/base"/>
|
|
|
|
<block name="body">
|
|
|
|
<script type="text/javascript" src="__STATIC__/uploadify/jquery.uploadify.min.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="cf main-place top_nav_list navtab_list">
|
|
|
|
<h3 class="page_title">{$meta_title}</h3>
|
|
|
|
<p class="description_text"></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="tab-content tabcon1711 tabcon17112">
|
|
|
|
|
|
|
|
<IF condition="$type == edit">
|
|
|
|
<form action="{:U('edit')}" method="post" class="form-horizontal form_info_ml">
|
|
|
|
<else />
|
|
|
|
<form action="{:U('add')}" method="post" class="form-horizontal form_info_ml">
|
|
|
|
</IF>
|
|
|
|
|
|
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="l noticeinfo">菜单名称</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<input type="text" class="" name="name" value="{$data.name|default=''}" >
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="l noticeinfo">菜单标题</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<input type="text" class="" name="title" value="{$data.title|default=''}" >
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="l noticeinfo">菜单链接</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<input type="text" class="" name="url" value="{$data.url|default=''}" >
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="l noticeinfo">url类型</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<span class="form_select">
|
|
|
|
<select name="type">
|
|
|
|
<IF condition="$data['type'] == '0'">
|
|
|
|
<option value="0" selected="selected">h5页面</option>
|
|
|
|
<option value="1">原生</option>
|
|
|
|
<ELSE />
|
|
|
|
<option value="1" selected="selected">原生</option>
|
|
|
|
<option value="0">h5页面</option>
|
|
|
|
</IF>
|
|
|
|
</select>
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="l noticeinfo">跳转目标</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<input type="text" class="" name="url_action" value="{$data.url_action|default=''}" placeholder='url类型为原生时填写'>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="l noticeinfo">排序</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<input type="text" class="" name="sort" value="{$data.sort|default=''}">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="picbox">
|
|
|
|
<td class="l noticeinfo">菜单图标</td>
|
|
|
|
<td class="r table_radio">
|
|
|
|
<span class="form_icon table_btn table_upload">
|
|
|
|
<input type="file" id="upload_picture_icon">
|
|
|
|
<input type="hidden" name="icon" id="cover_id_icon" value="{$data.icon}" />
|
|
|
|
<div class="upload-img-box">
|
|
|
|
<notempty name="data['icon']">
|
|
|
|
<div class="upload-pre-item">
|
|
|
|
<span class="placeholder-graphic placeholder-graphic_icon"><img src="{$data['icon']}"/></span>
|
|
|
|
</div>
|
|
|
|
</notempty>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
<span class="notice-text" style="left:215px;">菜单图标</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="id" value="{:I('id')}">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
//上传图片
|
|
|
|
/* 初始化上传插件 */
|
|
|
|
//上传游戏图标
|
|
|
|
/* 初始化上传插件 */
|
|
|
|
$("#upload_picture_icon").uploadify({
|
|
|
|
"height" : 30,
|
|
|
|
"swf" : "__STATIC__/uploadify/uploadify.swf",
|
|
|
|
"fileObjName" : "download",
|
|
|
|
"buttonText" : "上传图标",
|
|
|
|
"uploader" : "{:U('File/uploadPicture',array('session_id'=>session_id()))}",
|
|
|
|
"width" : 120,
|
|
|
|
'removeTimeout' : 1,
|
|
|
|
'fileTypeExts' : '*.jpg; *.jpeg; *.png; *.gif;',
|
|
|
|
"onUploadSuccess" : upload_picture_icon{$field.name},
|
|
|
|
'onFallback' : function() {
|
|
|
|
alert('未检测到兼容版本的Flash.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
function upload_picture_icon{$field.name}(file, data){
|
|
|
|
var data = $.parseJSON(data);
|
|
|
|
var src = '';
|
|
|
|
if(data.status){
|
|
|
|
src = data.path || data.url;
|
|
|
|
$("#cover_id_icon").val(src);
|
|
|
|
$("#cover_id_icon").parent().find('.upload-img-box').html(
|
|
|
|
'<div class="upload-pre-item"><span class="placeholder-graphic placeholder-graphic_icon"><img src="' + src + '"/></span></div>'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
updateAlert(data.info);
|
|
|
|
setTimeout(function(){
|
|
|
|
$('#top-alert').find('button').click();
|
|
|
|
$(that).removeClass('disabled').prop('disabled',false);
|
|
|
|
},1500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</form>
|
|
|
|
<div class="form-item cf">
|
|
|
|
<button class="submit_btn ajax-post mlspacing" id="submit" type="submit" target-form="form-horizontal">
|
|
|
|
保存
|
|
|
|
</button>
|
|
|
|
<a class="submit_btn " alt="返回上一页" title="返回上一页" href="javascript:window.history.back();" >
|
|
|
|
返回
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</block>
|
|
|
|
<block name="script">
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
//导航高亮
|
|
|
|
highlight_subnav('{:U('SdkMenu/lists')}');
|
|
|
|
</script>
|
|
|
|
</block>
|