2018-11-26 12:29:52 +08:00
< include file = "Public/Header" / >
<!-- right content start -->
< div class = "content-right" >
< div class = "content" >
<!-- form start -->
< form class = "am-form form-validation view-save" action = "{{:U('Admin/AppConfig/Save')}}" method = "POST" request-type = "ajax-url" request-value = "{{:U('Admin/AppConfig/Index')}}" >
< div class = "am-form-group" >
< label > {{$data.common_app_is_enable_search.name}}< / label >
< select name = "{{$data.common_app_is_enable_search.only_tag}}" class = "am-radius chosen-select c-p" data-validation-message = "{{$data.common_app_is_enable_search.error_tips}}" required >
< foreach name = "common_is_text_list" item = "v" >
< option value = "{{$v.id}}" < if condition = "isset($data['common_app_is_enable_search']['value']) and $data['common_app_is_enable_search']['value'] eq $v['id']" > selected< / if > >{{$v.name}}< / option >
< / foreach >
< / select >
< / div >
2018-11-26 12:39:49 +08:00
< div class = "am-form-group" >
< label > {{$data.common_app_is_enable_answer.name}}< / label >
< select name = "{{$data.common_app_is_enable_answer.only_tag}}" class = "am-radius chosen-select c-p" data-validation-message = "{{$data.common_app_is_enable_answer.error_tips}}" required >
< foreach name = "common_is_text_list" item = "v" >
< option value = "{{$v.id}}" < if condition = "isset($data['common_app_is_enable_answer']['value']) and $data['common_app_is_enable_answer']['value'] eq $v['id']" > selected< / if > >{{$v.name}}< / option >
< / foreach >
< / select >
< / div >
2018-11-26 12:29:52 +08:00
< div class = "am-form-group" >
< label > {{$data.common_app_customer_service_tel.name}}< / label >
< input type = "text" name = "{{$data.common_app_customer_service_tel.only_tag}}" placeholder = "{{$data.common_app_customer_service_tel.name}}" data-validation-message = "{{$data.common_app_customer_service_tel.error_tips}}" class = "am-radius" < present name = "data" > value="{{$data.common_app_customer_service_tel.value}}"< / present > />
< / div >
< div class = "am-form-group" >
< button type = "submit" class = "am-btn am-btn-primary am-radius btn-loading-example am-btn-sm w100" data-am-loading = "{loadingText:'{{:L('common_form_loading_tips')}}'}" > {{:L('common_operation_save')}}< / button >
< / div >
< / form >
<!-- form end -->
< / div >
< / div >
<!-- right content end -->
<!-- footer start -->
< include file = "Public/Footer" / >
<!-- footer end -->