|
@@ -88,9 +88,13 @@
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-form-model-item label="纬度" prop="lat" class="default-form-item">
|
|
|
+ <a-form-model-item label="纬度" class="multi-line-tips">
|
|
|
<a-row :gutter="20">
|
|
|
- <a-col :span="17"><a-input-number v-model="form.lat" :min="-90" :max="90" placeholder="请输入纬度坐标" class="input-number-all" /></a-col>
|
|
|
+ <a-col :span="17">
|
|
|
+ <a-form-model-item prop="lat" class="default-form-item">
|
|
|
+ <a-input-number v-model="form.lat" :min="-90" :max="90" placeholder="请输入纬度坐标" class="input-number-all" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
<a-col :span="6">
|
|
|
<a href="https://lbs.qq.com/tool/getpoint/" target="_blank">
|
|
|
<a-button type="primary" size="small" icon="search" class="small-btn">查询坐标</a-button>
|
|
@@ -100,7 +104,7 @@
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-form-model-item label="经度" prop="lng">
|
|
|
+ <a-form-model-item label="经度" prop="lng" class="multi-line-tips">
|
|
|
<a-input-number v-model="form.lng" :min="-180" :max="180" placeholder="请输入经度坐标" class="input-number-all" />
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
@@ -697,6 +701,10 @@ export default {
|
|
|
.default-form-item {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
+ .multi-line-tips{
|
|
|
+ height: 79px;
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
.form-item-label {
|
|
|
display: inline-block;
|
|
|
cursor: pointer;
|