2019-06-30 17:07:07 +00:00
|
|
|
{{include file="public/header" /}}
|
|
|
|
|
|
|
|
|
|
<!-- right content start -->
|
|
|
|
|
<div class="content-right">
|
2020-11-29 08:25:44 +00:00
|
|
|
<!-- table nav start -->
|
|
|
|
|
{{include file="appconfig/nav" /}}
|
|
|
|
|
<!-- table nav end -->
|
2019-06-30 17:07:07 +00:00
|
|
|
|
2020-11-29 08:25:44 +00:00
|
|
|
<div class="content">
|
2019-06-30 17:07:07 +00:00
|
|
|
<!-- form start -->
|
2023-03-22 10:59:53 +00:00
|
|
|
<form class="am-form form-validation" action="{{:MyUrl('admin/appconfig/save', ['nav_type'=>$nav_type])}}" method="POST" request-type="ajax-reload">
|
2019-12-16 07:06:22 +00:00
|
|
|
<div class="am-form-group">
|
2021-12-07 10:16:37 +00:00
|
|
|
<label>{{$data.common_app_h5_url.name}}<span class="am-form-group-label-tips">{{$data.common_app_h5_url.describe}}</span></label>
|
|
|
|
|
<input type="text" name="{{$data.common_app_h5_url.only_tag}}" placeholder="{{$data.common_app_h5_url.name}}" data-validation-message="{{$data.common_app_h5_url.error_tips}}" class="am-radius" {{if !empty($data)}}value="{{$data.common_app_h5_url.value}}"{{/if}} />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="am-form-group">
|
2019-12-16 07:06:22 +00:00
|
|
|
<label>{{$data.common_is_mobile_concise_model.name}}<span class="am-form-group-label-tips">{{$data.common_is_mobile_concise_model.describe}}</span></label>
|
|
|
|
|
<select name="{{$data.common_is_mobile_concise_model.only_tag}}" class="am-radius chosen-select" data-validation-message="{{$data.common_is_mobile_concise_model.error_tips}}" required>
|
2023-02-01 14:41:26 +00:00
|
|
|
{{foreach :MyLang('common_is_text_list') as $v}}
|
2019-12-16 07:06:22 +00:00
|
|
|
<option value="{{$v.id}}" {{if isset($data['common_is_mobile_concise_model']['value']) and $data['common_is_mobile_concise_model']['value'] eq $v['id']}}selected{{/if}}>{{$v.name}}</option>
|
|
|
|
|
{{/foreach}}
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
2019-06-30 17:07:07 +00:00
|
|
|
<div class="am-form-group">
|
2020-02-01 12:58:22 +00:00
|
|
|
<label>{{$data.common_app_customer_service_tel.name}}<span class="am-form-group-label-tips">{{$data.common_app_customer_service_tel.describe}}</span></label>
|
2019-06-30 17:07:07 +00:00
|
|
|
<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" {{if !empty($data)}}value="{{$data.common_app_customer_service_tel.value}}"{{/if}} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="am-form-group">
|
|
|
|
|
<label>{{$data.common_shop_notice.name}}<span class="am-form-group-label-tips">{{$data.common_shop_notice.describe}}</span></label>
|
|
|
|
|
<textarea rows="3" name="{{$data.common_shop_notice.only_tag}}" class="am-radius" placeholder="{{$data.common_shop_notice.name}}" data-validation-message="{{$data.common_shop_notice.error_tips}}">{{if !empty($data)}}{{$data.common_shop_notice.value}}{{/if}}</textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="am-form-group">
|
|
|
|
|
<label>{{$data.common_user_center_notice.name}}<span class="am-form-group-label-tips">{{$data.common_user_center_notice.describe}}</span></label>
|
2021-08-31 08:06:01 +00:00
|
|
|
<textarea rows="4" name="{{$data.common_user_center_notice.only_tag}}" class="am-radius" placeholder="{{$data.common_user_center_notice.name}}" data-validation-message="{{$data.common_user_center_notice.error_tips}}">{{if !empty($data)}}{{$data.common_user_center_notice.value}}{{/if}}</textarea>
|
2019-06-30 17:07:07 +00:00
|
|
|
</div>
|
|
|
|
|
|
2020-09-14 10:53:42 +00:00
|
|
|
<div class="am-form-group am-form-group-refreshing am-margin-top-lg am-padding-left-0">
|
2023-01-26 09:06:20 +00:00
|
|
|
<button type="submit" class="am-btn am-btn-primary am-radius btn-loading-example am-btn-sm am-btn-block" data-am-loading="{loadingText:'{{:MyLang('processing_tips')}}'}">{{:MyLang('save_title')}}</button>
|
2019-06-30 17:07:07 +00:00
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
<!-- form end -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- right content end -->
|
2023-02-01 14:41:26 +00:00
|
|
|
|
2019-06-30 17:07:07 +00:00
|
|
|
<!-- footer start -->
|
|
|
|
|
{{include file="public/footer" /}}
|
|
|
|
|
<!-- footer end -->
|