legalLoanList.vue 10.2 KB
j<template>
  <a-card :bordered="false">
    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
        <a-row :gutter="24">
          <a-col :md="6" :sm="12">
            <a-form-item label="借款订单编号">
              <a-input placeholder="输入借款订单编号" v-model="queryParam.orderNo"></a-input>
            </a-form-item>
          </a-col>
          <a-col :md="6" :sm="12">
            <a-form-item label="企业名称">
              <a-input placeholder="输入企业名称" v-model="queryParam.enterpriseName"></a-input>
            </a-form-item>
          </a-col>
          <a-col :md="6" :sm="12">
            <a-form-item label="统一社会信用代码">
              <a-input placeholder="输入统一社会信用代码" v-model="queryParam.orgCode"></a-input>
            </a-form-item>
          </a-col>
          <template v-if="toggleSearchStatus">
            <a-col :md="6" :sm="12">
              <a-form-item label="客户名称">
                <a-input placeholder="输入客户名称" v-model="queryParam.idcardName"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="12">
              <a-form-item label="手机号码">
                <a-input placeholder="输入手机号码" v-model="queryParam.mobilePhone"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="放款状态">
                <a-select v-model="queryParam.loanStatus" placeholder="请选择">
                  <a-select-option v-for="(item, index) in dbRemitApplyStatus" :key="index" :value="item.name">{{item.title}}</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="放款日期" :labelCol="{span:8}" :wrapperCol="{span:16}">
                <a-date-picker style="width: 100%" :disabledDate="disabledStartDate" :format="dateFormat" v-model="remitStartDate" @change="onChangeApplyDateStarts" />
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="至" :labelCol="{span:8}" :wrapperCol="{span:16}">
                <a-date-picker style="width: 100%" :disabledDate="disabledEndDate" :format="dateFormat" v-model="remitEndDate" @change="onChangeApplyDateEnds" />
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="业务线编号">
                <a-input placeholder="输入业务线编号" v-model="queryParam.businessChannelNo"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="产品名称">
                <a-input placeholder="输入产品名称" v-model="queryParam.productName"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="产品分类编号">
                <a-input placeholder="输入产品分类编号" v-model="queryParam.productCategoryNo"></a-input>
              </a-form-item>
            </a-col>
          </template>
          <a-col :md="6" :sm="8">
            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
              <a-button type="primary" @click="searchResetTimes" icon="reload" style="margin-left: 8px">重置</a-button>
              <a @click="handleToggleSearch" style="margin-left: 8px">
                {{ toggleSearchStatus ? '收起' : '展开' }}
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
              </a>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <div class="table-operator" style="border-top: 5px">
      <a-button @click="thatDiogin" type="primary">导出</a-button>
    </div>
    <!-- table区域-begin -->
    <div>
      <a-table ref="table" size="middle" bordered rowKey="id" :columns="columns" :dataSource="dataSource" :pagination="ipagination" :loading="loading" :scroll="{x:2000}" @change="handleTableChange">
        <!-- 字符串超长截取省略号显示-->
        <span slot="esContent" slot-scope="text">
          <j-ellipsis :value="text" :length="10" />
        </span>

        <span slot="action" slot-scope="text, record">
          <a href="javascript:;" @click="handleDetailBai(record,'企业法人放款详细')" v-has="'legalLoanList:look'">查看</a>
          <a-divider v-show="record.loanStatus==0 ||record.loanStatus == 2" type="vertical" />
          <a v-show="record.loanStatus==0 ||record.loanStatus == 2" @click="handleLoan(record)" v-has="'legalLoanList:look'">放款</a>
        </span>
      </a-table>
    </div>
    <!-- table区域-end -->
    <common-loan-list-modal ref="modalForm" @ok="modalFormOk"></common-loan-list-modal>
    <!-- 放款弹框 -->
    <list-loan-modal @ok="load" ref="listLoanModal"></list-loan-modal>
  </a-card>
</template>
<script>
import CommonLoanListModal from './modules/CommonLoanListModal'
import listLoanModal from './modules/common/listLoanModal' // 放款弹框
import { JeecgListMixin } from '@/mixins/CoreListMixin'
import { legalQueryLoanApplyDetail, } from '@/api/makeLoan'

export default {
  name: 'personInformationList',
  mixins: [JeecgListMixin],
  components: {
    CommonLoanListModal,
    listLoanModal
  },
  data () {
    return {
      queryParam: {},
      dbCooPerationPlatform: JSON.parse(sessionStorage.getItem('DB_COOPERATION_PLATFORM')), // 合作平台
      dbRemitApplyStatus: JSON.parse(sessionStorage.getItem('DB_REMIT_APPLY_STATUS')), // 放款状态
      dbFund: JSON.parse(sessionStorage.getItem('DBFUND')), // 资金方
      visible: false,
      dateFormat: 'YYYY-MM-DD',
      value: [],
      orderNo: '',
      columns: [
        {
          title: '序号',
          dataIndex: '',
          key: 'rowIndex',
          align: 'center',
          customRender: function (t, r, index) {
            return parseInt(index) + 1
          }
        },
        {
          title: '借款订单编号',
          align: 'center',
          dataIndex: 'orderNo'
        },
        {
          title: '资金方',
          align: 'center',
          dataIndex: 'fundNo',
          customRender: (t, r, index) => {
            for (var i = 0; i < this.dbFund.length; i++) {
              if (t === this.dbFund[i].name) {
                return this.dbFund[i].title
              }
            }
          }
        },
        {
          title: '客户名称',
          align: 'center',
          dataIndex: 'idcardName'
        },
        {
          title: '手机号码',
          align: 'center',
          dataIndex: 'mobilePhoneView'
        },
        {
          title: '身份证号码',
          align: 'center',
          dataIndex: 'idcardNoView'
        },
        {
          title: '企业名称',
          align: 'center',
          dataIndex: 'enterpriseName'
        },
        {
          title: '业务线编号',
          align: 'center',
          dataIndex: 'businessChannelNo'
        },
        {
          title: '合作平台名称',
          align: 'center',
          dataIndex: 'cooperationPlatformNo',
          customRender: (t, r, index) => {
            for (var i = 0; i < this.dbCooPerationPlatform.length; i++) {
              if (t === this.dbCooPerationPlatform[i].name) {
                return this.dbCooPerationPlatform[i].title
              }
            }
          }
        },
        {
          title: '产品分类编号',
          align: 'center',
          dataIndex: 'productCategoryNo'
        },
        {
          title: '产品名称',
          align: 'center',
          dataIndex: 'productName'
        },
        {
          title: '借款金额',
          align: 'center',
          dataIndex: 'applyMoney'
        },
        {
          title: '放款状态',
          align: 'center',
          dataIndex: 'loanStatus',
          customRender: (t, r, index) => {
            for (var i = 0; i < this.dbRemitApplyStatus.length; i++) {
              if (t === Number(this.dbRemitApplyStatus[i].name)) {
                return this.dbRemitApplyStatus[i].title
              }
            }
          }
        },
        {
          title: '放款日期',
          align: 'center',
          dataIndex: 'loanTime'
        },
        {
          title: '账单编号',
          align: 'center',
          dataIndex: 'billNo',
        },
        {
          title: '申请时间',
          align: 'center',
          dataIndex: 'applyDate',
        },
        {
          title: '更新时间',
          align: 'center',
          dataIndex: 'updateTime'
        },
        {
          title: '操作',
          dataIndex: 'action',
          scopedSlots: { customRender: 'action' },
          align: 'center',
          width: 150,
          fixed: 'right'
        }
      ],
      url: {
        list: '/transaction/admin/loan/legal/listQueryLoanApply'
      },
      remitStartDate: undefined,
      remitEndDate: undefined
    }
  },
  methods: {
    handleDetailBai: function (record, title) {
      console.log(record)
      let _p = { orderNo: record.orderNo }
      legalQueryLoanApplyDetail(_p).then(res => {
        if (res.status.statusCode == 0) {
          this.$refs.modalForm.edit(res.result, record.orderNo, 3)
        } else {
          this.$message.warning(res.status.statusReason)
        }
      })
      this.$refs.modalForm.title = title
      this.$refs.modalForm.disableSubmit = true
      this.$refs.modalForm.onlyread = true
    },
    handleLoan (record) {
      this.$refs.listLoanModal.edit(record)
      this.$refs.listLoanModal.disableSubmit = true
    },
    onChangeApplyDateStarts (value, dateString) {
      this.queryParam.remitStartDate = dateString
    },
    onChangeApplyDateEnds (value, dateString) {
      this.queryParam.remitEndDate = dateString
    },
    searchResetTimes () {
      this.remitStartDate = undefined
      this.remitEndDate = undefined
      this.queryParam = {}
      this.loadData(1);
    },
    load () {
      this.searchResetTimes()
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>