Blame view

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

          <el-col :span="4" class="btnColRight">
79
            <el-form-item>
80
              <el-button @click="handleReset">重置</el-button>
yangwei committed
81
              <el-button type="primary" native-type="submit" @click="handleSearch">查询</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
    },
    methods: {
yuanbo committed
150 151 152 153
      /**
       * @description: 初始化数据
       * @author: renchao
       */
154 155 156 157 158 159 160 161 162 163
      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;
          }
        });
164
      },
165 166 167
      handleReset () {
        this.$refs.queryForm.resetFields();
      },
yuanbo committed
168 169 170 171 172 173
      /**
       * @description: handleSort
       * @param {*} name
       * @param {*} sort
       * @author: renchao
       */
174 175
      handleSort (name, sort) {
        console.log(name, sort);
176
      },
yuanbo committed
177 178 179 180 181
      /**
       * @description: openDialog
       * @param {*} scroll
       * @author: renchao
       */
182 183
      openDialog (scroll) {
        this.$popupDialog('登记簿详情', 'registerBook/djbFrame', scroll, '85%');
184
      },
yuanbo committed
185 186 187 188 189
      /**
       * @description: handleLpbClick
       * @param {*} item
       * @author: renchao
       */
190
      handleLpbClick (item) {
1  
renchao@pashanhoo.com committed
191
        this.$popup('楼盘表', 'lpb/index', {
xiaomiao committed
192 193 194 195 196
          width: '85%',
          formData: {
            bsm: item.zrzbsm,
            zrzbsm: item.zrzbsm,
            zdbsm: item.zrzbsm,
197
            onlyShow: true
xiaomiao committed
198 199
          }
        })
200
      }
201
    }
任超 committed
202
  }
203 204
</script>
<style scoped lang="scss">
205
  @import "~@/styles/public.scss";
任超 committed
206

207 208 209
  .icon-circle {
    position: relative;
  }
任超 committed
210

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