jtfc.vue 3.21 KB
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
      <el-form :model="queryForm" ref="queryForm" label-width="70px">
        <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" 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" :current-page.sync="pageData.current" :total="tableData.total"
        @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
        :data="tableData.data">
      </lb-table>
    </div>
  </div>
</template>
<script>
import table from "@/utils/mixin/table"
import { datas, sendThis } from "./jtfcdata"
import { getJtfcPage } from '@/api/sqcx'
export default {
  name: "jtfc",
  components: {},
  mixins: [table],
  mounted () {
    sendThis(this);
  },
  data () {
    return {
      sqrOption: [],
      cxytOption: [],
      queryForm: {
        cxbh: "",
        sqr: "",
        cxyt: "",
        ywh: "",
      },
      tableData: {
        total: 0,
        columns: datas.columns(),
        data: [
          {
            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);
    }
  }
}
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>