Blame view

src/views/sqcx/sqcxjl/components/sqcxjlInfo.vue 4.66 KB
jiaozeping@pashanhoo.com committed
1
<template>
任超 committed
2 3
  <div class="sqcxjlInfo">
    <el-form :model="form" boder label-width="130px">
jiaozeping@pashanhoo.com committed
4 5 6
      <el-row>
        <el-col :span="24" style="margin-bottom: 15px">
          <div class="slxx_title title-block">
7
            查询情况
jiaozeping@pashanhoo.com committed
8 9 10 11 12
            <div class="triangle"></div>
          </div>
        </el-col>
      </el-row>
      <el-row>
13
        <el-col :span="6">
任超 committed
14
          <el-form-item label="查询来源:" label-width="90px">{{ form.djSqcxDO.cxly }}
jiaozeping@pashanhoo.com committed
15 16
          </el-form-item>
        </el-col>
17
        <el-col :span="6">
任超 committed
18
          <el-form-item label="查询类型:">{{ form.djSqcxDO.cxlx }}
19 20 21
          </el-form-item>
        </el-col>
        <el-col :span="6">
任超 committed
22
          <el-form-item label="查询人员:" label-width="90px">{{ form.djSqcxDO.cxr }}
23 24 25
          </el-form-item>
        </el-col>
        <el-col :span="6">
任超 committed
26
          <el-form-item label="查询时间:">{{ form.djSqcxDO.cxsj }}
jiaozeping@pashanhoo.com committed
27 28 29
          </el-form-item>
        </el-col>
      </el-row>
30 31
      <el-row>
        <el-col :span="6">
任超 committed
32
          <el-form-item label="查询编号:" label-width="90px">{{ form.djSqcxDO.cxbh }}
33 34 35
          </el-form-item>
        </el-col>
        <el-col :span="6">
任超 committed
36
          <el-form-item label="查询用途:" label-width="90px">{{ form.djSqcxDO.cxyt }}
37 38 39
          </el-form-item>
        </el-col>
        <el-col :span="6">
任超 committed
40
          <el-form-item label="与产权人的关系:">{{ form.djSqcxDO.ycqrgxmc }}
41 42 43
          </el-form-item>
        </el-col>
        <el-col :span="6">
任超 committed
44
          <el-form-item label="不动产权证号:">{{ form.djSqcxDO.bdcqzh }}
45 46 47 48 49 50 51 52 53 54 55
          </el-form-item>
        </el-col>
      </el-row>
      <el-row>
        <el-col :span="24" style="margin-bottom: 15px">
          <div class="slxx_title title-block">
            申请人
            <div class="triangle"></div>
          </div>
        </el-col>
      </el-row>
jiaozeping@pashanhoo.com committed
56 57
      <el-row>
        <el-col>
58
          <lb-table :column="sqrData.columns" border :data="form.sqrList" :maxHeight="200" heightNumSetting
任超 committed
59
            :pagination="false">
jiaozeping@pashanhoo.com committed
60 61 62 63 64 65 66 67 68 69 70 71 72
          </lb-table>
        </el-col>
      </el-row>
      <el-row>
        <el-col :span="24" style="margin-bottom: 15px">
          <div class="slxx_title title-block">
            权利人
            <div class="triangle"></div>
          </div>
        </el-col>
      </el-row>
      <el-row>
        <el-col>
73
          <lb-table :column="qlrData.columns" border :data="form.qlrList" :maxHeight="200" heightNumSetting
任超 committed
74
            :pagination="false">
jiaozeping@pashanhoo.com committed
75 76 77 78 79 80 81 82 83 84 85
          </lb-table>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="24" style="margin-bottom: 15px">
          <div class="slxx_title title-block">
            查询结果
            <div class="triangle"></div>
          </div>
        </el-col>
任超 committed
86
      </el-row>
jiaozeping@pashanhoo.com committed
87 88
      <el-row>
        <el-col>
89 90 91 92 93 94 95 96 97 98 99
          <lb-table :column="cxjgData.columns" :data="form.cxjgList" :maxHeight="200" heightNumSetting
            :pagination="false">
          </lb-table>
        </el-col>
      </el-row>
      <el-row>
        <el-col :span="24" style="margin-bottom: 15px">
          <div class="slxx_title title-block">
            打印记录
            <div class="triangle"></div>
          </div>
jiaozeping@pashanhoo.com committed
100 101 102 103
        </el-col>
      </el-row>
      <el-row>
        <el-col>
104
          <lb-table :column="dyjlcolumns" :data="form.dyjlList" :maxHeight="200" heightNumSetting :pagination="false">
jiaozeping@pashanhoo.com committed
105 106 107 108 109
          </lb-table>
        </el-col>
      </el-row>
    </el-form>
  </div>
jiaozeping@pashanhoo.com committed
110 111 112
</template>

<script>
113
import { getJtfcInfo } from "@/api/jtfc.js";
114 115
import { datas, sendThis } from "./sqcxjlInfodata";

jiaozeping@pashanhoo.com committed
116
export default {
117
  props: ["formData"],
任超 committed
118
  data () {
jiaozeping@pashanhoo.com committed
119
    return {
120
      form: {},
jiaozeping@pashanhoo.com committed
121
      ruleForm: {
jiaozeping@pashanhoo.com committed
122
        cxyt: "",
jiaozeping@pashanhoo.com committed
123
        ycyrgx: 1,
jiaozeping@pashanhoo.com committed
124
        cxlx: "1", //查询类型 1:房产查询 2:登记簿查询
jiaozeping@pashanhoo.com committed
125
      },
126

127 128 129 130 131 132 133 134 135
      sqrData: {
        columns: datas.sqrcolumns(),
        data: [],
      },

      cxjgData: {
        columns: datas.cxjgcolumns(),
        data: [],
      },
136

137 138
      qlrData: {
        columns: datas.qlrcolumns(),
jiaozeping@pashanhoo.com committed
139
        data: [],
jiaozeping@pashanhoo.com committed
140
      },
141
      dyjlcolumns: datas.dyjlcolumns(),
jiaozeping@pashanhoo.com committed
142
    };
jiaozeping@pashanhoo.com committed
143
  },
144

任超 committed
145
  mounted () {
146 147 148 149 150 151
    sendThis(this);
    var sqcxBsm = this.formData.sqcxBsm;

    getJtfcInfo({ sqcxBsm: sqcxBsm })
      .then((res) => {
        if (res.code == 200) {
152
          this.form = res.result;
153 154 155
          this.sqrData.data = res.result.sqxx;
          this.qlrData.data = res.result.qlrxx;
          this.cxjgData.data = res.result.djSqcxCxjgDOList;
任超 committed
156
          this.cxbh = res.result.djSqcxDO.cxbh;
157 158 159 160
        }
      })
      .catch((error) => {
        console.log(error);
161
      });
162
  },
jiaozeping@pashanhoo.com committed
163 164
  methods: {},
};
jiaozeping@pashanhoo.com committed
165 166 167
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";
任超 committed
168 169 170 171

/deep/.el-form-item {
  margin-bottom: 0 !important;
}
jiaozeping@pashanhoo.com committed
172
</style>