You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.7 KiB
46 lines
1.7 KiB
<style>
|
|
label{
|
|
font-weight:unset !important;
|
|
}
|
|
</style>
|
|
<form id="edit-form" class="form-horizontal col-sm-12" role="form" data-toggle="validator" method="POST" action="">
|
|
{:token()}
|
|
<input type="hidden" name="ids" value="{$row['id']}" />
|
|
|
|
|
|
<div class="form-group">
|
|
{include file="qingdong/common/form_edit" /}
|
|
|
|
<div class="col-xs-12 col-sm-6">
|
|
<div class="form-group col-sm-10">
|
|
<label>地理位置:</label>
|
|
<div class="input-group">
|
|
<input id="address_text" placeholder="请选择地理地址" class="form-control" disabled type="text" value="{$row.address}"/>
|
|
<div class="input-group-addon no-border no-padding">
|
|
<span><button type="button" class="btn btn-primary" id="fachoose-map" >
|
|
<i class="fa fa-list"></i> {:__('Choose')}</button></span>
|
|
</div>
|
|
</div>
|
|
<input id="lng" name="row[lng]" type="hidden" value="{$row.lng}" >
|
|
<input id="lat" name="row[lat]" type="hidden" value="{$row.lat}" >
|
|
<input id="address" name="row[address]" type="hidden" value="{$row.address}" >
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-xs-12 col-sm-6">
|
|
<div class="form-group col-sm-10">
|
|
<label >详细地址:</label>
|
|
<input placeholder="请输入详细地址" id="address_detail" class="form-control" name="row[address_detail]" type="text" value="{$row.address_detail}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group layer-footer">
|
|
<label class="control-label col-xs-12 col-sm-2"></label>
|
|
<div class="col-xs-12 col-sm-8">
|
|
<button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
|
|
<button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|