|
@@ -209,29 +209,31 @@
|
|
|
<table>
|
|
|
<tr>
|
|
|
<th>项目名称</th>
|
|
|
- <td>
|
|
|
+ <td colspan="2">
|
|
|
<el-input size="medium" v-model="query.name" placeholder="项目名称" style="width: 100%" clearable></el-input>
|
|
|
</td>
|
|
|
- <th>建设单位名称</th>
|
|
|
- <td>
|
|
|
- <el-input size="medium" v-model="query.name1" placeholder="建设单位名称" style="width: 100%" clearable></el-input>
|
|
|
- </td>
|
|
|
</tr>
|
|
|
- </table>
|
|
|
- <table>
|
|
|
<tr>
|
|
|
<th>面积(亩)</th>
|
|
|
- <td colspan="2">
|
|
|
- <el-input size="medium" v-model="query.small" placeholder="面积小" style="width: 75%" clearable></el-input>
|
|
|
- <span style="color: white;margin-left: 15px">-</span>
|
|
|
+ <td>
|
|
|
+ <el-input size="medium" v-model="query.small" placeholder="面积小" style="width: 100%" clearable></el-input>
|
|
|
</td>
|
|
|
<td>
|
|
|
- <el-input size="medium" v-model="query.big" placeholder="面积大" style="width: 70%" clearable></el-input>
|
|
|
+ <div style="display: flex;align-items: center;justify-content: space-between;">
|
|
|
+ <span style="color: white;margin:0px 15px">-</span>
|
|
|
+ <el-input size="medium" v-model="query.big" placeholder="面积大" style="flex: 1;" clearable></el-input>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>建设单位</th>
|
|
|
+ <td>
|
|
|
+ <el-input size="medium" v-model="query.name1" placeholder="请输入建设单位名称" style="width: 100%" clearable></el-input>
|
|
|
+ </td>
|
|
|
+ <td style="white-space: nowrap;text-align: right;">
|
|
|
+ <el-button size="medium" type="primary" @click="queryData()" icon="el-icon-search">查询</el-button>
|
|
|
+ <el-button size="medium" type="primary" @click="importCoordinate()" icon="el-icon-top">导入</el-button>
|
|
|
</td>
|
|
|
- <th>
|
|
|
- <el-button size="medium" type="primary" @click="queryData()" icon="el-icon-search" style="position: absolute;top:2px;right:0px">查询</el-button>
|
|
|
- <el-button size="medium" type="primary" @click="importCoordinate()" icon="el-icon-top" style="position: absolute;top:2px;right:110px">导入</el-button>
|
|
|
- </th>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|