Blame view

src/views/sqcx/dydjb/dydjb.vue 3.39 KB
jiaozeping@pashanhoo.com committed
1 2 3 4 5 6 7
<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">
liangyifan committed
8
            <el-form-item label="业务来源">
任超 committed
9
              <el-select v-model="queryForm.ywly" filterable clearable placeholder="请选择业务来源">
liangyifan committed
10
                <el-option v-for="item in dictData['ywly']" :key="item.value" :label="item.label" :value="item.value">
liangyifan committed
11 12 13 14 15 16
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="权利类型">
任超 committed
17
              <el-select v-model="queryForm.qllx" filterable clearable placeholder="请选择权利类型">
liangyifan committed
18
                <el-option v-for="item in dictData['A8']" :key="item.value" :label="item.label" :value="item.value">
liangyifan committed
19 20 21 22 23 24
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="登记类型">
任超 committed
25
              <el-select v-model="queryForm.djlx" filterable clearable placeholder="请选择登记类型">
liangyifan committed
26
                <el-option v-for="item in dictData['A21']" :key="item.value" :label="item.label" :value="item.value">
liangyifan committed
27 28 29 30 31 32
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="业务号">
任超 committed
33
              <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px">
liangyifan committed
34
              </el-input>
jiaozeping@pashanhoo.com committed
35 36 37 38 39
            </el-form-item>
          </el-col>

          <el-col :span="4" class="btnCol">
            <el-form-item>
任超 committed
40
              <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
jiaozeping@pashanhoo.com committed
41 42 43 44 45 46 47 48
              <el-button @click="moreQueryClick()">高级查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
    <div class="from-clues-content">
任超 committed
49
      <lb-table :page-size="pageData.size" @sort-change="handleSort" :current-page.sync="pageData.current"
任超 committed
50
        :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
任超 committed
51
        :column="tableData.columns" :data="tableData.data">
jiaozeping@pashanhoo.com committed
52 53 54 55 56
      </lb-table>
    </div>
  </div>
</template>
<script>
任超 committed
57
import { mapGetters } from 'vuex'
jiaozeping@pashanhoo.com committed
58 59 60 61 62 63
import table from "@/utils/mixin/table";
import { datas, sendThis } from "./dydjbdata";
export default {
  name: "dydjb",
  components: {},
  mixins: [table],
任超 committed
64
  mounted () {
jiaozeping@pashanhoo.com committed
65 66
    sendThis(this);
  },
任超 committed
67 68 69
  computed: {
    ...mapGetters(['dictData']),
  },
任超 committed
70
  data () {
jiaozeping@pashanhoo.com committed
71 72 73 74 75 76 77 78
    return {
      queryForm: {
        ywly: "",
        qllx: "",
        djlx: "",
        ywh: "",
      },
      tableData: {
任超 committed
79
        total: 0,
jiaozeping@pashanhoo.com committed
80 81 82
        columns: datas.columns(),
        data: [
          {
任超 committed
83 84 85 86 87 88 89
            cxlx: "家庭房产",
            cxbh: "20200409146",
            cxsj: "2016-10-02 10:00:00",
            slry: "张三",
            sqr: "张三",
            yqlrgx: "不动产权利人",
            qlr: "绿地开发商",
jiaozeping@pashanhoo.com committed
90 91 92 93 94 95 96
          },
        ],
      },
    };
  },
  methods: {
    // 初始化数据
任超 committed
97 98
    fetchData () { },
    handleSort (name, sort) {
jiaozeping@pashanhoo.com committed
99 100
      console.log(name, sort);
    },
任超 committed
101
    openDialog () {
jiaozeping@pashanhoo.com committed
102 103 104 105 106 107 108 109
      console.log(999999999999999);
    },
  },
};
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>