Blame view

src/views/business-info/dyaq/index.vue 4.6 KB
任超 committed
1
<template>
1  
jiaozeping@pashanhoo.com committed
2
  <div class="dyaq from-clues">
任超 committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
    <div class="from-clues-header">
      <el-form ref="form" :model="form" label-width="80px">
        <el-row>
          <el-col :span="5">
            <el-form-item label="业务号">
              <el-input v-model="form.YWH" placeholder="业务号"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="不动产单元号" label-width="106px">
              <el-input v-model="form.BDCDYH" placeholder="不动产单元号"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="登记类型">
              <el-select v-model="form.DJLX" clearable ref="selectmortgageReg" @visible-change="isShowSelectOptions"
                placeholder="请选择登记类型">
                <el-option v-for="item in dicData['A21']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="4" class="from-clues-search-button">
            <el-button type="primary" @click="handleSubmit">查询结果</el-button>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <div class="from-clues-content">
任超 committed
32
      <lb-table :page-size="pageData.size" :heightNum="300" :current-page.sync="pageData.current"
任超 committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
        :total="pageData.total" @selection-change="handleSelectionChange" @size-change="handleSizeChange"
        @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
      </lb-table>
      <message-tips ref="msg" :message="message" />
    </div>
    <!-- XML报文 -->
    <xml-message ref="dialog" :xml="xml" />
    <!-- 数据详情 -->
    <edit-dialog ref="editLog" :bsmSjsb="bsmSjsb" :diaData="diaData" />
  </div>
</template>

<script>
// 抵押权登记
import data from "./data"
import business from '@/api/business'
import dataReporting from '@/api/dataReporting'
import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
import editDialog from '@/components/dataDetails/edit-dialog.vue'
export default {
1  
jiaozeping@pashanhoo.com committed
54
  name: "dyaq",
任超 committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
  mixins: [tableMixin],
  components: {
    treeSelect,
    editDialog
  },
  data () {
    return {
      form: {
        YWH: '',
        BDCDYH: '',
        DJLX: '',
        currentPage: 1
      },
      tableData: {
        columns: [{
          label: '序号',
          type: 'index',
          width: '50',
          index: this.indexMethod,
        }].concat(data.columns()).concat([
          {
            label: "操作",
            width: 170,
            render: (h, scope) => {
              return (
                <div>
                  <el-button
                    type="text"
                    size="mini"
                    icon="el-icon-folder"
                    style="color:#67C23A"
                    onClick={() => { this.handleXmlres(scope.$index, scope.row) }}
                  >
                    XML报文
                  </el-button>
                  <el-button
                    type="text"
                    size="mini"
                    icon="el-icon-view"
                    onClick={() => { this.handlDatadetails(scope.$index, scope.row) }}
                  >
                    数据详情
                  </el-button>
                </div>
              );
            },
          },

        ]),
        data: []
      },
      pageData: {
        total: 0,
        pageSize: 15,
        current: 1,
      },
      diaData: null,
      bsmSjsb: ''
    }
  },
  methods: {
    // 是否显示下拉框
    isShowSelectOptions (e) {
      if (!e) this.$refs.selectmortgageReg.blur()
    },
    async featchData () {
      try {
        let { result: { list, total, pages: pageSize, pageNum: current }
1  
jiaozeping@pashanhoo.com committed
123
        } = await business.getQlfQlDyaqList(this.form)
田浩浩 committed
124
        this.tableData.data = list;
任超 committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
        this.pageData = {
          pageSize,
          current,
          total
        }
      } catch (error) {
        this.message = error
        this.$refs.msg.messageShow()
      }
    },
    handlDatadetails (index, row) {
    },
    async handlDatadetails (index, row) {
      let { result: res, message } = await dataReporting.getQltFwFdcqYzByCondition(row.BSM_SJSB)
      if (res != null) {
        this.diaData = res
        this.bsmSjsb = row.BSM_SJSB
        this.$store.dispatch('business/setEdit'); this.$refs.editLog.isShow()
      } else {
        this.$message(message)
      }
    },
  }
}
任超 committed
149 150 151 152 153 154
</script>
<style scoped lang="scss">
// 引入表单整体样式
@import "~@/styles/public.scss";
</style>