dever 6 years ago
parent
commit
a7ad993245
1 changed files with 1 additions and 7 deletions
  1. 1 7
      tm/template_dir/event_forms_template.html

+ 1 - 7
tm/template_dir/event_forms_template.html

@@ -8,18 +8,12 @@
 	<div class="submit_cell submit_cell_area"><p><textarea name="<{$form.name}>" class="input_textarea" placeholder="<{$form.name}>"></textarea></p></div>
 	<{/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}>