| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <div class='appbox'>
- <form method="post">
- <div class='appline name'>
- <div class='left'>{{LNG.name}}</div>
- <div class='right'>
- <input name='title' type='text' value='{{data.title}}'/>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline desc'>
- <div class='left'>{{LNG.app_desc}}</div>
- <div class='right'>
- <textarea name='description'>{{data.description}}</textarea>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline icon'>
- <div class='left'>{{LNG.app_icon}}</div>
- <div class='right'>
- <input name='icon' type='text' value='{{data.icon}}'/>
- {{LNG.app_icon_show}}
- <a class='button open'
- href='javascript:core.openIE("http://explorer.vbdsm.com/upload.html",{title:"设置应用图标",width:550,height:160});'>
- <img src='/images/app/computer.png'/>
- </a>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline type'>
- <div class='left'>{{LNG.app_type}}</div>
- <div class='right'>
- <input apptype='type_3' checked="checked" class='w20' id='type_3_{{uuid}}' name='type' type='radio'
- value='3'/>
- <label for='type_3_{{uuid}}'>{{LNG.app_type_menu}}</label>
- <input apptype='type_2' class='w20' id='type_2_{{uuid}}' name='type' type='radio' value='2'/>
- <label for='type_2_{{uuid}}'>{{LNG.app_type_code}}</label>
- <input apptype='type_1' class='w20' id='type_1_{{uuid}}' name='type' type='radio' value='1'/>
- <label for='type_1_{{uuid}}'>{{LNG.app_type_url}}</label>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline content'>
- <div class='left hidden' data-type='type_1'>{{LNG.app_url}}</div>
- <div class='left hidden' data-type='type_2'>{{LNG.app_code}}</div>
- <div class='left ' data-type='type_3'>{{LNG.app_type_menu_desc}}</div>
- <div class='right'>
- <input appcontent="type_3" class="" style="width: 300px;" type="text"/>
- <ul class="ztree" id="menu_select_tree_{{uuid}}" style="display: none;"></ul>
- <textarea appcontent="type_2" class="hidden"></textarea>
- <input appcontent="type_1" class="hidden" style="width: 300px;" type="text"/>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline category'>
- <div class='left'>{{LNG.app_category}}</div>
- <div class='right'>
- <select id='category' name='categoryId'
- style="border:1px solid #ccc; width:310px; height:28px;"></select>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline'>
- <div class='left'>指定站点可见</div>
- <div class='right'>
- <input data-id="{{data.siteIds}}" name='siteIds' style="width: 300px;" type='text' uuid="{{uuid}}"/>
- <ul class="siteIdSelector"
- style="display: none;overflow:hidden; overflow-y: scroll;max-height: 120px;"></ul>
- </div>
- </div>
- <div class='appline'>
- <div class='left'>指定用户可见</div>
- <div class='right'>
- <input data-id="{{data.roleIds}}" name='roleIds' style="width: 300px;" type='text' uuid="{{uuid}}"/>
- <ul class="roleSelector"
- style="display: none; overflow:hidden; overflow-y: scroll;max-height: 100px;"></ul>
- </div>
- </div>
- <div class='appline'>
- <div class='left'>{{LNG.app_size}}</div>
- <div class='right'>
- {{LNG.width}}: <input class='w30' name='width' type='text'/>
- {{LNG.height}}: <input class='w30' name='height' type='text'/>
- </div>
- <div style='clear: both;'></div>
- </div>
- <div class='appline'>
- <div class='left'>{{LNG.app_display}}</div>
- <div class='right'>
- <input class='w20' id='simple{{uuid}}' name='border' type='checkbox'/>
- <label for='simple{{uuid}}'>{{LNG.app_display_border}}</label>
- <input class='w20' id='resize{{uuid}}' name='resize' type='checkbox'/>
- <label for='resize{{uuid}}'>{{LNG.app_display_size}}</label>
- <br/>
- <input class='w20' id='reopen{{uuid}}' name='reopen' type='checkbox'/>
- <label for='reopen{{uuid}}'>不允许重复打开窗口</label>
- <input class='w20' id='fullable{{uuid}}' name='fullable' type='checkbox'/>
- <label for='fullable{{uuid}}'>默认全屏</label>
- </div>
- <div style='clear: both;'></div>
- </div>
- </form>
- </div>
|