|
|
@@ -2,7 +2,7 @@
|
|
|
<div class="app-container">
|
|
|
<el-form :model="queryForm" inline size="small">
|
|
|
<el-form-item label="关键词">
|
|
|
- <el-input v-model="queryForm.keyword" placeholder="关键词"/>
|
|
|
+ <el-input v-model="queryForm.keyword" placeholder="关键词" />
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<el-row class="action-bar-container" type="flex" justify="end">
|
|
|
@@ -24,19 +24,19 @@
|
|
|
highlight-current-row
|
|
|
@selection-change="selectionChange"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="55"/>
|
|
|
- <el-table-column label="ID" prop="id" width="150"/>
|
|
|
- <el-table-column label="名称" prop="baseDataInfo.name"/>
|
|
|
- <el-table-column label="开放时间" prop="businessHours"/>
|
|
|
+ <el-table-column type="selection" width="55" />
|
|
|
+ <el-table-column label="ID" prop="id" width="150" />
|
|
|
+ <el-table-column label="名称" prop="baseDataInfo.name" />
|
|
|
+ <el-table-column label="开放时间" prop="businessHours" />
|
|
|
<el-table-column label="缩略图" width="80">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.baseDataInfo.litpics.length }}张
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="简介" prop="baseDataInfo.brief"/>-->
|
|
|
- <el-table-column label="地址" prop="baseDataInfo.address"/>
|
|
|
- <el-table-column label="联系人" prop="baseDataInfo.contacts" width="150"/>
|
|
|
- <el-table-column label="联系电话" prop="baseDataInfo.contactNumber" width="150"/>
|
|
|
+ <el-table-column label="地址" prop="baseDataInfo.address" />
|
|
|
+ <el-table-column label="联系人" prop="baseDataInfo.contacts" width="150" />
|
|
|
+ <el-table-column label="联系电话" prop="baseDataInfo.contactNumber" width="150" />
|
|
|
<el-table-column label="位置信息" width="200">
|
|
|
<template slot-scope="scope">
|
|
|
[ {{ scope.row.baseDataInfo.lng }}, {{ scope.row.baseDataInfo.lat }} ]
|
|
|
@@ -56,7 +56,7 @@
|
|
|
:page-size="pageData.pageSize"
|
|
|
@current-change="paginationChange"
|
|
|
/>
|
|
|
- <dialog-form ref="dialogForm" @ok="fetchData"/>
|
|
|
+ <dialog-form ref="dialogForm" @ok="fetchData" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|