dever 6 years ago
parent
commit
161549f119
1 changed files with 1 additions and 7 deletions
  1. 1 7
      tm/template_dir/events_forms_template_new.html

+ 1 - 7
tm/template_dir/events_forms_template_new.html

@@ -8,18 +8,12 @@
     <textarea name="<{$form.name}>" class="input_textarea" placeholder="<{$form.name}>"></textarea>
     <{/if}>
     <{if $form.type == 'select'}>
-    <div class="submit_cell">
-        <section class="container">
-             <div class="dropdown">
-               <select name="<{$form.name}>" class="dropdown-select">
+    <select name="<{$form.name}>" class="dropdown-select">
                  <option value="">请选择<{$form.name}></option>
                  <{foreach from=$form.options item=option}>
                  <option value="<{$option}>"><{$option}></option>
                  <{/foreach}>
                </select>
-             </div>
-           </section>
-       </div>
     <{/if}>
     <{/foreach}>
 </form>