personLoanList.vue 11.8 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.idcardName"></a-input>
            </a-form-item>
          </a-col>
          <a-col :md="6" :sm="12">
            <a-form-item label="身份证号码">
              <a-input placeholder="输入身份证号码" v-model="queryParam.idcardNo"></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.mobilePhone"></a-input>
              </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-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.productCategoryNo"></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-select v-model="queryParam.fundNo" placeholder="请选择">
                  <a-select-option v-for="(item, index) in dbFund" :key="index" :value="item.name">{{ item.title }}
                  </a-select-option>
                </a-select>
              </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 @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 style="background-color: #ffba00;border-color: #ffba00;" icon="download" @click="excelLoanExport('1')" type="primary" v-has="'personLoanList:export'">导出</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-button
            type="link"
            size="small"
            @click="handleDetailBai(record, '个人放款详细')" v-has="'personLoanList:look'"
            icon="search"
            style="font-size: 12px"
            >查看</a-button
          >
          <a-divider v-show="record.loanStatus == 2" type="vertical" />
          <a-button
            type="link"
            size="small"
            v-show="record.loanStatus == 2" @click="handleLoan(record)" v-has="'personLoanList:loan'"
            icon="insurance"
            style="font-size: 12px"
            >放款</a-button
          >
        </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 { personalQueryLoanApplyDetail, } from '@/api/makeLoan'
import { getAllFundList, downloadExcel } from '@/api/configApi'
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')), // 资金方
      dbbusinesschannel: JSON.parse(sessionStorage.getItem('DB_BUSINESS_CHANNEL')),//业务线名称
      visible: false,
      dateFormat: 'YYYY-MM-DD',
      value: [],
      orderNo: '',
      columns: [
        {
          title: '序号',
          dataIndex: '',
          key: 'rowIndex',
          align: 'center',
          width: 55,
          customRender: function (t, r, index) {
            return parseInt(index) + 1
          }
        },
        {
          title: '借款订单编号',
          align: 'center',
          dataIndex: 'orderNo',
          width: 300,
        },
        {
          title: '资金方',
          align: 'center',
          dataIndex: 'fundNo',
          width: 200,
          customRender: (t, r, index) => {
            for (var i = 0; i < this.ziList.length; i++) {
              if (t == this.ziList[i].fundNo) {
                return this.ziList[i].fundName
              }
            }
          }
        },
        {
          title: '客户名称',
          align: 'center',
          dataIndex: 'idcardName',
          width: 120,
        },
        {
          title: '身份证号码',
          align: 'center',
          dataIndex: 'idcardNoView',
          width: 180,
        },
        {
          title: '手机号码',
          align: 'center',
          dataIndex: 'mobilePhoneView',
          width: 120,
        },
        {
          title: '业务线名称',
          align: 'center',
          dataIndex: 'businessChannelNo',
          width: 180,
          // customRender: (t, r, index) => {
          //   for (var i = 0; i < this.dbbusinesschannel.length; i++) {
          //     if (t == this.dbbusinesschannel[i].fundNo) {
          //       return this.dbbusinesschannel[i].fundName
          //     }
          //   }
          // }
        },
        {
          title: '组织机构',
          align: 'center',
          dataIndex: 'businessDepartmentName',
          width: 180,
        },
        {
          title: '产品编号',
          align: 'center',
          dataIndex: 'productNo',
          width: 200,
        },
        {
          title: '产品名称',
          align: 'center',
          dataIndex: 'productName',
          width: 200,
        },
        {
          title: '借款金额',
          align: 'center',
          dataIndex: 'applyMoney',
          width: 180,
          customRender: (t, r, index) => {
            return this.$numMoney(t)
          }
        },
        {
          title: '放款状态',
          align: 'center',
          dataIndex: 'loanStatus',
          width: 120,
          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',
          width: 180,
        },

        {
          title: '账单编号',
          align: 'center',
          dataIndex: 'billNo',
          width: 300,
        },
        {
          title: '申请时间',
          align: 'center',
          dataIndex: 'applyDate',
          width: 180,
        },
        {
          title: '更新时间',
          align: 'center',
          dataIndex: 'updateTime',
          width: 180,
        },
        {
          title: '操作',
          dataIndex: 'action',
          scopedSlots: { customRender: 'action' },
          align: 'center',
          width: 180,
          fixed: 'right'
        }
      ],
      url: {
        list: '/loantrade/admin/personal/queryLoanApply',
        loanPersonalExport:'/loantrade/admin/loan/personal/downloadExcel' //个人放款信息
      },
      remitStartDate: undefined,
      remitEndDate: undefined,
      ziList: []
    }
  },
  mounted() {
    this.getGetAllFundList()
  },
  methods: {
    getGetAllFundList() {
      getAllFundList().then(res => {
        if (res.status.statusCode == 0) {
          localStorage.setItem("zList", JSON.stringify(res.result))
          this.ziList = res.result
        } else {
          this.$message.warning(res.status.statusReason)
        }
      })
    },
    handleDetailBai: function (record, title) {
      let _p = { orderNo: record.orderNo }
      personalQueryLoanApplyDetail(_p).then(res => {
        if (res.status.statusCode == 0) {
          this.$refs.modalForm.edit(res.result, record.orderNo, 1)
        } 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()
    },
    // daochu() {
    //   let paramsStr = this.getQueryParams();
    //   downloadExcel(paramsStr).then(res => {
    //     window.location.href = res
    //   })
    // }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>