sqcxjl.vue 3.48 KB
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
      <el-form :model="queryForm" ref="queryForm" label-width="80px">
        <el-row>
          <el-col :span="5">
            <el-form-item label="查询编号">
              <el-input placeholder="请输入编号" v-model="queryForm.cxbh" clearable>
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="申请人">
              <el-input placeholder="请输入申请人" v-model="queryForm.sqr" clearable>
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="查询用途">
              <el-select v-model="queryForm.cxyt" class="width100" filterable clearable placeholder="请选择用途">
                <el-option v-for="item in cxytOption" :key="item.value" :label="item.label" :value="item.value">
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="业务号">
              <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px">
              </el-input>
            </el-form-item>
          </el-col>

          <el-col :span="4" class="btnCol">
            <el-form-item>
              <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
              <el-button @click="moreQueryClick()">高级查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
    <div class="from-clues-content">
      <lb-table :page-size="pageData.size" @sort-change="handleSort" :current-page.sync="pageData.current"
        :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
        :column="tableData.columns" :data="tableData.data">
      </lb-table>
    </div>
    <!-- <editDialog v-model="isDialog" /> -->
  </div>
</template>
<script>
// import editDialog from "../components/editDialog.vue"
import table from "@/utils/mixin/table"
import { datas, sendThis } from "./sqcxjldata"
import { getJtfcPage } from '@/api/sqcx'
export default {
  name: "sqcxjl",
  components: { editDialog },
  mixins: [table],
  mounted () {
    sendThis(this);
  },
  data () {
    return {
      isDialog: false,
      sqrOption: [],
      cxytOption: [],
      queryForm: {
        cxbh: "",
        sqr: "",
        cxyt: "",
        ywh: "",
      },
      tableData: {
        total: 0,
        columns: datas.columns(),
        data: [
          {
            cxly: "登记大厅",
            cxlx: "家庭房产",
            cxbh: "20200409146",
            cxsj: "2016-10-12 10:00:00",
            slry: "查询窗口",
            sqr: "张三",
            yqlrgx: "不动产权利人",
            qlr: "张三",
            cxyt: "预告买卖记录||首次登记",
          }
        ]
      }
    }
  },
  methods: {
    // 初始化数据
    fetchData () {
      getJtfcPage({ ...this.queryForm, ...this.pageData }).then(res => {
        let { records, total } = res.result
        this.tableData.data = records
        this.tableData.total = total
      })
    },
    handleSort (name, sort) {
      console.log(name, sort);
    },
    // 查看
    handleView () {
      this.isDialog = true
    }
  },
};
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>