index.vue 9.08 KB
<template>
    <div class="main">
        <SearchHead @getSearchCondition="geQuerytData"></SearchHead>
        <div class="dataGrid" ref="dataGrid">
            <el-table
                    :data="tableData"
                    :height="tableHeight"
                    :row-class-name="tableRowClassName"
            >
                <el-table-column type="index" width="80" align="center" label="序号">
                </el-table-column>
                <el-table-column prop="bdcdyh" align="left" label="不动产单元号">
                </el-table-column>
                <el-table-column prop="xmmc" align="left" width="150" label="项目名称">
                </el-table-column>
                <el-table-column prop="bdcqzh" align="left" label="不动产权证号">
                </el-table-column>
                <el-table-column prop="dylx" align="left" width="100" label="类型">
                    <template slot-scope="scope">
                        {{scope.row.dylx | bdcLxFilter}}
                    </template>
                </el-table-column>
                <el-table-column prop="qlrmc" align="left" width="120" label="权利人">
                </el-table-column>
                <el-table-column prop="zl" align="left" label="坐落"></el-table-column>
                <el-table-column prop="addtime" align="left" width="120" label="转入时间">
                    <template slot-scope="scope">
                        {{scope.row.addtime | timeFilter}}
                    </template>
                </el-table-column>
                <!-- <el-table-column prop="cjr" align="left" width="120" label="创建人">
                </el-table-column> -->
                <el-table-column label="操作" align="center" width="100">
                    <template slot-scope="scope">
                        <el-tooltip class="item" effect="light" content="办理" placement="top">
                            <i class="iconfont iconbanli iconfontEdit" @click="handleClick(scope.row)" style="padding:0 10px"></i>
                        </el-tooltip>
                        <el-tooltip class="item" effect="light" content="定位" placement="top">
                            <i class="iconfont icondingwei iconfontEdit"  @click="postionToMap(scope.row)"></i>
                        </el-tooltip>
                        <!-- <el-button  type="text" size="small"
                        >办理
                        </el-button
                        >
                        <el-button type="text" size="small">定位</el-button> -->
                    </template>
                </el-table-column>
            </el-table>
            <div class="pagination">
                <el-pagination background layout="prev, pager, next,total" :total="total"
                    :current-page="pageNo"       :page-size="pageSize"    @current-change="handleCurrentChange">
                </el-pagination>
            </div>

            <el-dialog title="户编辑" class="hbjDialog" :visible.sync="hbjVisible" width="70%" center>
                <hbj ref="hbj" :bsm="hbsm" :key="hbsm"></hbj>
                <div class="btnGroup">
                    <el-button type="primary" @click="hbjSaveInfo">保存</el-button>
                    <el-button type="primary" @click="hbjSubmitInfo">提交</el-button>
                    <el-button type="primary" @click="hbjResetInfo">重置</el-button>
                    <el-button type="primary" @click="hbjVisible = false">取消</el-button>
                </div>
            </el-dialog>
        </div>
    </div>
</template>

<script>
    import SearchHead from "../../../components/searchHead/searchHead";
    import {getSearchList} from "../../../api/search";
    import hbj from "./../../zrz/lpb/bjlp/hbj/index";

    export default {
        name: "",
        components: {SearchHead,hbj},
        props: {},
        data() {
            return {
                total: 0,
                pageNo: 1,
                pageSize: 15,
                tableData: [],
                tableHeight: 0,
                queryData: {},
                hbjVisible: false,
                hbsm:'',
                tabPosition: "1", //1是实测  0是预测
            };
        },
        created() {
        },
        mounted() {
            this.queryData.pageSize=this.pageSize
            this.getData(this.queryData);
            this.$nextTick(()=>{
                this.tableHeight = this.$refs.dataGrid.offsetHeight - 68;
            })
        },
        methods: {
            onSubmit() {
            },
            tableRowClassName({row, rowIndex}) {
                if (rowIndex % 2 !== 0) {
                    return "even-row";
                } else {
                    return "";
                }
            },
            //户保存
            hbjSaveInfo() {
                this.$refs.hbj.onSave(this.hbsm, this.tabPosition);
                this.getData({pageSize:15});
            },
            //户提交
            hbjSubmitInfo() {
                this.$refs.hbj.onSubmit(this.hbsm, this.tabPosition);
                this.getData({pageSize:15});
            },
            //户编辑表单重置
            hbjResetInfo() {
                this.$refs.hbj.onReset();
            },
            handleCurrentChange(val) {
                this.pageNo = val;
                this.queryData.pageNo = val;
                this.getData(this.queryData);
            },
            getData(data) {
                getSearchList(data).then(res => {
                    this.tableData = res.result.records
                    this.total = res.result.total
                })
            },
            //获取子组件点击查询触发的事件
            geQuerytData(obj) {
                this.queryData = obj
                //将obj作为参数调用接口查询表格数据
                this.queryData['pageSize'] = this.pageSize
                this.pageNo = 1
                this.queryData['pageNo'] = 1
                this.getData(this.queryData)
            },
            //点击办理
            handleClick(row) {
                let path = "";
                switch (row.dylx) {
                    case "zrz":
                        this.$store.state.zrzbsm = row.glbsm;
                        path = "/zrz";
                        break;
                    case "zd":
                        this.$store.state.zdbsm = row.glbsm;
                        path = "/zd";
                        break;
                    case "dz":
                        this.$store.state.dzbsm = row.glbsm;
                        path = "/dz";
                        break;
                    case "h":
                    case "h0":
                    case "h1":
                        this.hbsm = row.glbsm;
                        this.hbjVisible = true;
                        if(row.dylx === "h0"){
                            this.tabPosition = 0;
                        }else {
                            this.tabPosition = 1;
                        }
                        this.$nextTick(()=>{
                            console.log(this.$refs.hbj);
                            this.$refs.hbj.getHInfo(this.hbsm);
                        });
                        break;
                    default:
                        break;
                }
                this.$router.push({
                    path: path,
                    query: {
                        bsm: row.glbsm,
                        source: 2
                    }
                });
            },
            //定位
            //图形定位
            postionToMap(rowData){
                if(rowData.dylx == "zrz" || rowData.dylx == "zd"){
                    var curretRouterInfo = {
                        path:this.$route.path,
                        query:this.$route.query
                    }
                    sessionStorage.setItem("curretRouterInfo",JSON.stringify(curretRouterInfo));
                    this.$router.push({
                        path: "/viewMap",
                        query: {
                            bsm: rowData.glbsm,
                            type: rowData.dylx
                        }
                    });
                }
            }
        },
        computed: {},
        watch: {},
    };
</script>
<style scoped lang="less">
    .main {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding: 0 18px;
        display: flex;
        flex-direction: column;
        background-color: #EAEDF5;
        .demo-form-inline {
            margin-top: 18px;
            .moreSearchBtn {
                background-color: #1ad6e1;
                border-color: #1ad6e1;
            }
            .moreSearchBtn:focus,
            .moreSearchBtn:hover {
                background-color: rgba(28, 200, 229, 0.6);
            }
        }
        .dataGrid {
            flex: 1;
            .pagination {
                padding: 18px 0;
            }
        }
        .hbjDialog{
            /deep/ .el-dialog{
                margin-top: 10vh!important;
            }
        }
        .btnGroup{
            margin: 20px auto 0;
            width: 230px;
        }
    }
</style>