Blame view

src/views/zhcx/djbcx/djbcx.vue 6.47 KB
1
<!--
yuanbo committed
2
 * @Description:
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-25 14:47:41
5
-->
6 7 8 9
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
任超 committed
10
      <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="70px">
11
        <el-row>
12
          <el-col :span="4">
13
            <el-form-item label="权利类型">
任超 committed
14
              <el-select v-model="queryForm.qllx" filterable class="width100" clearable placeholder="请选择权利类型">
任超 committed
15
                <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode">
16 17 18 19
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
20
          <el-col :span="4">
21 22 23 24 25 26 27 28 29 30
            <el-form-item label="登记类型">
              <el-select v-model="queryForm.djlx" filterable class="width100" clearable placeholder="请选择登记类型">
                <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode">
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="4">
            <el-form-item label="权属状态">
              <el-select v-model="queryForm.qszt" filterable class="width100" clearable placeholder="请选择登记类型">
31
                <el-option
32 33 34 35 36 37 38 39
                  v-for="item in qsztlist"
                  :key="item.dcode"
                  :label="item.dname"
                  :value="item.dcode"></el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="6">
任超 committed
40
            <el-form-item label="不动产单元号" label-width="105px">
41
              <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100">
42 43 44
              </el-input>
            </el-form-item>
          </el-col>
45
          <el-col :span="6">
任超 committed
46
            <el-form-item label="不动产权证号" label-width="105px">
47
              <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100">
48 49
              </el-input>
            </el-form-item>
50
          </el-col>
51
        </el-row>
52
        <el-row>
53
          <el-col :span="5">
54
            <el-form-item label="业务号:">
yangwei committed
55
              <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width100">
56 57 58
              </el-input>
            </el-form-item>
          </el-col>
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
          <el-col :span="5">
            <el-form-item label="坐落:" label-width="105px">
              <el-input v-model="queryForm.zl" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="权利人:" label-width="105px">
              <el-input v-model="queryForm.qlrmc" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="义务人:">
              <el-input v-model="queryForm.ywrmc" clearable class="width100">
              </el-input>
            </el-form-item>
          </el-col>
77

78
          <el-col :span="4" class="btnColRight">
79
            <el-form-item>
yangwei committed
80
              <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button>
1  
jiaozeping@pashanhoo.com committed
81
              <el-button @click="moreQueryClick">高级查询</el-button>
82 83 84 85 86 87 88
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
    <div class="from-clues-content">
任超 committed
89 90 91
      <lb-table :page-size="pageData.size" class="loadingtext" @sort-change="handleSort"
        :current-page.sync="pageData.current" :total="tableData.total" @size-change="handleSizeChange"
        @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
92 93 94 95 96
      </lb-table>
    </div>
  </div>
</template>
<script>
97 98 99 100
  import { mapGetters } from "vuex";
  import table from "@/utils/mixin/table";
  import { datas, sendThis } from "./djbcxdata";
  import { getDjbBysearch } from "@/api/search.js";
吴蕾 committed
101

102 103 104 105 106 107 108 109 110 111 112
  export default {
    name: "djbcx",
    mixins: [table],
    mounted () {
      sendThis(this);
      this.queryClick()
    },
    data () {
      return {
        // 权属状态
        qsztlist: [
113 114 115 116 117 118 119 120
          {
            dcode: "1",
            dname: "现势",
          },
          {
            dcode: "2",
            dname: "历史",
          },
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
        ],
        queryForm: {
          qszt: "1",
          qllx: "",
          bdcdyh: "",
          bdcqzh: "",
          ywh: "",
        },
        pageData: {
          current: 1,
          size: 10,
          total: 0,
        },
        tableData: {
          columns: datas.columns(),
          data: [],
        },
        qllxs: [],
        isDialog: false,
140 141
        djbxxData: {}
      }
142 143
    },
    computed: {
144 145 146 147
      ...mapGetters(["dictData"])
    },
    activated () {
      this.queryClick()
148 149 150
    },
    methods: {
      // 初始化数据
yuanbo committed
151 152 153 154
      /**
       * @description: 初始化数据
       * @author: renchao
       */
155 156 157 158 159 160 161 162 163 164
      queryClick () {
        this.$startLoading()
        getDjbBysearch({ ...this.queryForm, ...this.pageData }).then((res) => {
          this.$endLoading()
          if (res.code === 200) {
            let { total, records } = res.result;
            this.tableData.data = records;
            this.tableData.total = total;
          }
        });
165
      },
yuanbo committed
166 167 168 169 170 171
      /**
       * @description: handleSort
       * @param {*} name
       * @param {*} sort
       * @author: renchao
       */
172 173
      handleSort (name, sort) {
        console.log(name, sort);
174
      },
175
      // 高级查询
yuanbo committed
176 177 178 179
      /**
       * @description: 高级查询
       * @author: renchao
       */
180
      moreQueryClick () { },
yuanbo committed
181 182 183 184 185
      /**
       * @description: openDialog
       * @param {*} scroll
       * @author: renchao
       */
186 187
      openDialog (scroll) {
        this.$popupDialog('登记簿详情', 'registerBook/djbFrame', scroll, '85%');
188
      },
yuanbo committed
189 190 191 192 193
      /**
       * @description: handleLpbClick
       * @param {*} item
       * @author: renchao
       */
194 195 196 197
      handleLpbClick (item) {
        this.$popupDialog('楼盘表', 'lpb/index', {
          bsm: ''
        }, '85%')
198
      }
199
    }
任超 committed
200
  }
201 202
</script>
<style scoped lang="scss">
203
  @import "~@/styles/public.scss";
任超 committed
204

205 206 207
  .icon-circle {
    position: relative;
  }
任超 committed
208

209 210 211 212 213 214 215 216 217
  .icon-circle::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    top: 0px;
    left: 0px;
  }
218
</style>