edit.html 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li ><a href="{:url('Guide/index')}">列表</a></li>
  7. <li class="active"><a >编辑</a></li>
  8. </ul>
  9. <form method="post" class="form-horizontal js-ajax-form margin-top-20" action="{:url('Guide/edit_post')}">
  10. <input type="hidden" name="id" value="{$data['id']}">
  11. <input type="hidden" name="type" value="{$data['type']}">
  12. <fieldset>
  13. <div class="form-group" >
  14. <label for="input-orderno" class="col-sm-2 control-label"><span class="form-required">*</span>序号</label>
  15. <div class="col-md-6 col-sm-10">
  16. <input type="text" class="form-control" id="input-orderno" name="orderno" value="{$data['orderno']}">
  17. </div>
  18. </div>
  19. <if condition="$data['type'] eq 0">
  20. <div class="form-group">
  21. <label for="input-user_login" class="col-sm-2 control-label"><span class="form-required">*</span>图片</label>
  22. <div class="col-md-6 col-sm-10">
  23. <input type="hidden" name="thumb" id="thumbewm" value="{$data['thumb']}">
  24. <a href="javascript:uploadOneImage('图片上传','#thumbewm');">
  25. <if condition="$data['thumb'] neq ''">
  26. <img src="{:get_upload_path($data['thumb'])}"
  27. id="thumbewm-preview"
  28. style="cursor: pointer;max-width:150px;max-height:150px;"/>
  29. <else/>
  30. <img src="__TMPL__/public/assets/images/default-thumbnail.png" id="thumbewm-preview" style="cursor: pointer;max-width:150px;max-height:150px;"/>
  31. </if>
  32. </a>
  33. <input type="button" class="btn btn-sm btn-cancel-thumbewm" value="取消图片">
  34. </div>
  35. </div>
  36. </if>
  37. <if condition="$data['type'] eq 1">
  38. <div class="form-group">
  39. <label for="input-user_login" class="col-sm-2 control-label">视频</label>
  40. <div class="col-md-6 col-sm-10">
  41. <input type="hidden" name="thumb" id="thumb3" value="{$data['thumb']}">
  42. <input type="text" value="{:cmf_get_image_preview_url($data['thumb'])}" style="width:500px;display: inline-block;" class="form-control" />
  43. <input type="file" name="file" style="display: inline-block;" />
  44. <input type="button" class="btn btn-small" onclick="$('#thumb3').val('');return false;" value="取消"> 仅限MP4格式 10M以内
  45. <span class="form-required"></span>
  46. </div>
  47. </div>
  48. </if>
  49. <div class="form-group" >
  50. <label for="input-href" class="col-sm-2 control-label">链接</label>
  51. <div class="col-md-6 col-sm-10">
  52. <input type="text"class="form-control" id="input-href" name="href" value="{$data['href']}">点击打开的页面链接 http开头
  53. </div>
  54. </div>
  55. </fieldset>
  56. <div class="form-group">
  57. <div class="col-sm-offset-2 col-sm-10">
  58. <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
  59. <a class="btn btn-default" href="{:url('Guide/index')}">{:lang('BACK')}</a>
  60. </div>
  61. </div>
  62. </form>
  63. </div>
  64. <script src="__STATIC__/js/admin.js"></script>
  65. <script type="text/javascript">
  66. (function(){
  67. $("#swftype label.radio").on('click',function(){
  68. var v=$("input",this).val();
  69. var b=$("#swftype_bd_"+v);
  70. b.siblings().hide();
  71. b.show();
  72. });
  73. $('.btn-cancel-thumbewm').click(function () {
  74. $('#thumbewm-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
  75. $('#thumbewm').val('');
  76. });
  77. })()
  78. </script>
  79. </body>
  80. </html>