edit.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li ><a href="{:url('Gift/index')}">礼物列表</a></li>
  7. <li class="active"><a >{:lang('EDIT')}</a></li>
  8. </ul>
  9. <form method="post" class="form-horizontal js-ajax-form margin-top-20" action="{:url('Gift/editPost')}">
  10. <div class="form-group">
  11. <label for="input-type" class="col-sm-2 control-label"><span class="form-required">*</span>类型</label>
  12. <div class="col-md-6 col-sm-10" id="type">
  13. <volist name="type" id="v">
  14. <label class="radio-inline"><input type="radio" name="type" value="{$key}" <if condition="$key eq $data['type']">checked</if>>{$v}</label>
  15. </volist>
  16. </div>
  17. </div>
  18. <div class="form-group">
  19. <label for="input-mark" class="col-sm-2 control-label"><span class="form-required">*</span>标识</label>
  20. <div class="col-md-6 col-sm-10" id="mark" style="position: relative;" id="mark">
  21. <volist name="mark" id="v">
  22. <label class="radio-inline" for="mark_{$key}"><input type="radio" name="mark" value="{$key}" id="mark_{$key}" <if condition="$key eq $data['mark']">checked</if> <if condition="$data['type'] eq 1 && $key==3">disabled</if>>{$v}</label>
  23. </volist>
  24. <div id="tips" style="position: absolute;left: 450px;top: 0;<if condition="$data['mark'] neq '3'">display:none;</if>">
  25. <span style="color:#ff0000">幸运礼物说明</span><br>
  26. 1.用户送出去幸运礼物时,幸运礼物的价值将分成三份,分别为主播、奖池和平台,后台可以设置主播和奖池获得的比例,剩下的归属于平台,主播和奖池的比例不要超过100%【谨记】<br>
  27. 2.后台可设置某个礼物为幸运礼物<br>
  28. 3.成为幸运礼物后,可设置幸运礼物的的中奖设置以及奖池设置,以下是幸运礼物和奖池说明<br>
  29. a)在中奖设置中可设置每个礼物每组每个倍数的中奖概率【如:小黄瓜 每组送10个中10倍的概率为 5%,小黄瓜 每组送100个中10倍的概率为 <br>6%】,当用户中奖后,返还的奖励以当组礼物总价值为基数返还【如送了一组10个的,总价值为100,中了10倍,那么会获得1000钻石】<br>
  30. b)奖池说明:奖池分为三个阶段,后台可设置每个奖池的金额下限,直接当奖池里边的金额达到最低的金额限制时,奖池才会开启,当有用户中奖时,会赢走奖池内的所有奖金<br>
  31. c)幸运礼物与奖池说明:后台可设置每个幸运礼物每个组数相对于奖池每个阶段的中奖概率【如:小黄瓜每组10个对于奖池1阶段的中奖概率为0.01%,】,建议设置:礼物价值越高中奖概率越高,每组数量越多中奖概率越大<br>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="form-group">
  36. <label for="input-giftname" class="col-sm-2 control-label"><span class="form-required">*</span>名称</label>
  37. <div class="col-md-6 col-sm-10">
  38. <input type="text" class="form-control" id="input-name" name="giftname" value="{$data['giftname']}" style="width:300px;">
  39. </div>
  40. </div>
  41. <div class="form-group">
  42. <label for="input-needcoin" class="col-sm-2 control-label"><span class="form-required">*</span>价格</label>
  43. <div class="col-md-6 col-sm-10">
  44. <input type="text" class="form-control" id="input-needcoin" name="needcoin" value="{$data['needcoin']}" style="width:300px;">
  45. </div>
  46. </div>
  47. <div class="form-group">
  48. <label for="input-user_login" class="col-sm-2 control-label"><span class="form-required">*</span>图片</label>
  49. <div class="col-md-6 col-sm-10">
  50. <input type="hidden" name="gifticon" id="thumbnail" value="{$data['gifticon']}">
  51. <a href="javascript:uploadOneImage('图片上传','#thumbnail');">
  52. <if condition="empty($data.gifticon)">
  53. <img src="__TMPL__/public/assets/images/default-thumbnail.png"
  54. id="thumbnail-preview"
  55. style="cursor: pointer;max-width:100px;max-height:100px;"/>
  56. <else/>
  57. <img src="{:get_upload_path($data.gifticon)}"
  58. id="thumbnail-preview"
  59. style="cursor: pointer;max-width:100px;max-height:100px;"/>
  60. </if>
  61. </a>
  62. <input type="button" class="btn btn-sm btn-cancel-thumbnail" value="取消图片">
  63. <p class="help-block">建议尺寸: 50 X 50 太大会造成加载图片加载慢等各种问题</p>
  64. </div>
  65. </div>
  66. <div id="swf_area" <if condition="$data['type'] eq '3' or $data['type'] eq '0'">style="display: none;"</if> >
  67. <div class="form-group">
  68. <label for="input-swftype" class="col-sm-2 control-label"><span class="form-required">*</span>动画类型</label>
  69. <div class="col-md-6 col-sm-10" id="swftype">
  70. <volist name="swftype" id="v">
  71. <label class="radio-inline"><input type="radio" name="swftype" value="{$key}" <if condition="$key eq $data['swftype']">checked</if>>{$v}</label>
  72. </volist>
  73. </div>
  74. </div>
  75. <if condition="$data['type'] eq '1' and $data['swftype'] eq '1'">
  76. <!-- svga播放区域 -->
  77. <div class="form-group">
  78. <label for="input-gif" class="col-sm-2 control-label">svga动画</label>
  79. <div class="col-md-6 col-sm-10">
  80. <div id="demoCanvas" style="width: 200px;height: 300px;"></div>
  81. </div>
  82. </div>
  83. </if>
  84. <div class="form-group" id="">
  85. <label for="input-gif" class="col-sm-2 control-label">上传图片</label>
  86. <div class="col-md-6 col-sm-10">
  87. <div id="swftype_bd_0" <if condition="$data['swftype'] eq '1'">style="display:none;"</if>>
  88. <input type="hidden" name="gif" id="thumbnail2" value="{$data['swf']}">
  89. <a href="javascript:uploadOneImage('图片上传','#thumbnail2');">
  90. <if condition="empty($data.swf) || $data['swftype'] eq '1'">
  91. <img src="__TMPL__/public/assets/images/default-thumbnail.png"
  92. id="thumbnail2-preview"
  93. style="cursor: pointer;max-width:100px;max-height:100px;"/>
  94. <else/>
  95. <img src="{:get_upload_path($data.swf)}"
  96. id="thumbnail2-preview"
  97. style="cursor: pointer;max-width:100px;max-height:100px;"/>
  98. </if>
  99. </a>
  100. <input type="button" class="btn btn-sm btn-cancel-thumbnail2" value="取消图片"> <p class="help-block">建议尺寸: 200 X 200</p>
  101. </div>
  102. <div id="swftype_bd_1" <if condition="$data['swftype'] eq '0'">style="display:none;"</if>>
  103. <input class="form-control" id="js-file-input" type="text" name="svga" value="{$data['swf']}" style="width: 300px;display: inline-block;" title="文件名称">
  104. <a href="javascript:uploadOne('文件上传','#js-file-input','file');">上传SVGA文件</a>
  105. </div>
  106. </div>
  107. </div>
  108. <div class="form-group">
  109. <label for="input-swftime" class="col-sm-2 control-label">动画时长</label>
  110. <div class="col-md-6 col-sm-10">
  111. <input type="text" class="form-control" id="input-swftime" name="swftime" value="{$data['swftime']}" style="width:300px;">
  112. <p class="help-block">秒 精度:小数点后两位</p>
  113. </div>
  114. </div>
  115. </div>
  116. <div class="form-group">
  117. <div class="col-sm-offset-2 col-sm-10">
  118. <input type="hidden" name="id" value="{$data.id}" />
  119. <input type="hidden" name="gifticon_old" value="{$data['gifticon']}">
  120. <input type="hidden" name="svga_old" value="{$data['swf']}">
  121. <input type="hidden" name="gif_old" value="{$data['swf']}">
  122. <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('EDIT')}</button>
  123. <a class="btn btn-default" href="javascript:history.back(-1);">{:lang('BACK')}</a>
  124. </div>
  125. </div>
  126. </form>
  127. </div>
  128. <script src="__STATIC__/js/admin.js"></script>
  129. <script src="__STATIC__/js/svga.min.js"></script>
  130. <script type="text/javascript">
  131. (function(){
  132. $('.btn-cancel-thumbnail').click(function () {
  133. $('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
  134. $('#thumbnail').val('');
  135. });
  136. $('.btn-cancel-thumbnail2').click(function () {
  137. $('#thumbnail2-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
  138. $('#thumbnail2').val('');
  139. });
  140. $("#type label input").on('click',function(){
  141. var v=$(this).val();
  142. if(v==0){
  143. $("#mark_3").removeAttr('disabled')
  144. }else{
  145. //if($("#mark_3").attr("checked")){
  146. if($('#mark label input:checked').val()==3){
  147. //$("#mark_0").removeAttr('checked');
  148. $("#mark_0").attr('checked','checked');
  149. $("#tips").hide();
  150. }
  151. $("#mark_3").attr('disabled','disabled');
  152. }
  153. if(v==1){
  154. $("#swf_area").show();
  155. }else{
  156. $("#swf_area").hide();
  157. }
  158. })
  159. $("#mark label input").on('change',function(){
  160. var v=$(this).val();
  161. if(v==3){
  162. $("#tips").show();
  163. }else{
  164. $("#tips").hide();
  165. }
  166. })
  167. $("#swftype label").on('click',function(){
  168. var v=$("input",this).val();
  169. var b=$("#swftype_bd_"+v);
  170. b.siblings().hide();
  171. b.show();
  172. })
  173. <if condition="$data['swftype'] eq '1'">
  174. //svga播放
  175. var player = new SVGA.Player('#demoCanvas');
  176. var parser = new SVGA.Parser('#demoCanvas'); // 如果你需要支持 IE6+,那么必须把同样的选择器传给 Parser。
  177. parser.load("{:get_upload_path($data['swf'])}", function(videoItem) {
  178. player.setVideoItem(videoItem);
  179. player.startAnimation();
  180. })
  181. </if>
  182. })()
  183. </script>
  184. </body>
  185. </html>