| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <template>
- <div>
- <el-row class="app-toptool" type="flex">
- <el-col :span="16">
- <Search
- size="small"
- :search-visible="searchVisible"
- :search-data.sync="searchData"
- :search-form="searchForm"
- @refesh_list="searchgo"
- />
- </el-col>
- <el-col :span="8">
- <div class="btn-group" style="margin-bottom:11px;float: right;">
- <div>
- </div>
- </div>
- </el-col>
- </el-row>
- <div>
- <el-table
- ref="multipleTable"
- v-loading="loading"
- :row-class-name="rowClass"
- row-key="id"
- :header-cell-style="{ background: '#eef1f6', color: '#606266' }"
- :border="false"
- :stripe="true"
- class="eltable"
- :data="list"
- style="width: 100%"
- @selection-change="selection"
- >
- <el-table-column align="center" type="selection" width="42" />
- <el-table-column align="center" type="" property="id" label="编号" show-overflow-tooltip width="70" />
- <el-table-column
- align="left"
- property="title"
- label="小区名称"
- show-overflow-tooltip
- width=""
- />
- <el-table-column
- align="center"
- type=""
- property="image"
- label="图片"
- show-overflow-tooltip
- width="90"
- >
- <template slot-scope="scope">
- <div class="demo-image__preview">
- <el-image
- v-if="scope.row.image"
- class="table_list_pic"
- :src="scope.row.image"
- :preview-src-list="[scope.row.image]"
- />
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- type=""
- property="image"
- label="负责人"
- show-overflow-tooltip
- width="200"
- >
- <template slot-scope="scope">
- <div v-if="scope.row.tuanzhang">
- {{scope.row.tuanzhang.title}} {{scope.row.tuanzhang.tel}}
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- property="area_name"
- label="地区"
- show-overflow-tooltip
- width=""
- />
- <el-table-column
- align="left"
- property="house_number"
- label="地址"
- show-overflow-tooltip
- width=""
- />
- <el-table-column
- align="left"
- property="create_time"
- label="创建时间"
- show-overflow-tooltip
- width=""
- />
- </el-table>
- <Pagination
- :total="page_data.total"
- :page.sync="page_data.page"
- :limit.sync="page_data.limit"
- @pagination="index"
- />
- </div>
- </div>
- </template>
- <script>
- import Search from '@/components/common/Search'
- import Pagination from '@/components/Pagination'
- import {
- confirm,
- param2Obj
- } from '@/utils/common'
- export default {
- name: 'housingestatemy',
- components: {
- Search,
- Pagination
- },
- data() {
- return {
- ids: [],
- single: true,
- multiple: true,
- list: [],
- loading: false,
- ws: {},
- filename: '',
- page_data: {
- limit: 20,
- page: 1,
- total: 20
- },
- searchVisible: true,
- searchForm: [],
- searchData: {}
- }
- },
- mounted() {
- this.index()
- },
- methods: {
- searchgo() {
- this.page_data.page = 1;
- this.index()
- },
- index() {
- const param = {
- limit: this.page_data.limit,
- page: this.page_data.page
- }
- Object.assign(param, this.searchData)
- Object.assign(param, param2Obj(this.$route.fullPath))
- this.loading = true
- this.$api.post('/housingestate/my', param).then(res => {
- this.list = res.data.data
- this.page_data.total = res.data.total
- this.loading = false
- // console.log(this.page_data);
- if (this.page_data.page == 1) {
- this.searchForm = [
- {
- type: 'Input',
- label: '关键词',
- prop: 'keyword',
- width: '230px'
- }
- ]
- }
- })
- },
- selection(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length != 1
- this.multiple = !selection.length
- },
- rowClass({
- row,
- rowIndex
- }) {
- for (let i = 0; i < this.ids.length; i++) {
- if (row.id === this.ids[i]) {
- return 'rowLight'
- }
- }
- }
- }
- }
- </script>
- <style scoped>
- .table_list_pic {
- width: 80px;
- height: 80px;
- vertical-align: middle;
- }
- </style>
|