<template>
|
<div class="apply-info">
|
<SectionTitle title="银行流水信息"></SectionTitle>
|
<div class="middle-button" v-if="isEdit">
|
<el-button
|
type="primary"
|
icon="el-icon-circle-plus-outline"
|
size="small"
|
@click="addRecord"
|
>新增</el-button>
|
</div>
|
<CommTable
|
:isAutoIndex="true"
|
:list="list"
|
:header="tableHeader"
|
:pageInfo="pageInfo"
|
:total="total"
|
@doAction="doAction"
|
@handleCurrentChange="handleCurrentChange"
|
@handleSizeChange="handleSizeChange"
|
@updateValue="updateValue"
|
ref="waterTable"
|
></CommTable>
|
<Dialog
|
v-model="isShowSucc"
|
icon="succ"
|
iconText="提交成功"
|
:close="false"
|
:buttons="[{text: '确定', type: 'primary'}]"
|
@handleClick="sureSucc"
|
></Dialog>
|
|
<Dialog
|
v-model="isShowDel"
|
title="确定删除以下银行转账流水么?"
|
:buttons="[{text: '取消'}, {text: '确定', type: 'primary'}]"
|
@handleClick="doDel"
|
>
|
<p class="del-id">{{typeof list[currentIndex] === 'object' ? list[currentIndex].trxnbr : ''}}</p>
|
</Dialog>
|
</div>
|
</template>
|
<script>
|
// 中航信托线下转账还款通知-银行流水列表查询
|
import { mapActions } from 'vuex'
|
import CommTable from '@/components/CommTable'
|
import SectionTitle from '@/components/SectionTitle'
|
import Dialog from '@/components/Dialog'
|
import queryZhBankMessageList from '@/controller/queryZhBankMessageList'
|
import addZhBankMessage from '@/controller/addZhBankMessage'
|
import modifyZhBankMessage from '@/controller/modifyZhBankMessage'
|
import delZhBankMessage from '@/controller/delZhBankMessage'
|
|
const normalButtons = [
|
{ text: '修改', prop: 'updateButton' },
|
{ text: '删除', prop: 'deleteButton' }
|
]
|
|
const addButtons = [
|
{ text: '取消', prop: 'cancleButton' },
|
{ text: '保存', prop: 'addButton' }
|
]
|
|
const editButtons = [
|
{ text: '取消', prop: 'cancleButton' },
|
{ text: '保存', prop: 'submitButton' }
|
]
|
|
export default {
|
components: {
|
CommTable,
|
SectionTitle,
|
Dialog
|
},
|
props: {
|
conf: {
|
type: Object,
|
default: () => ({})
|
}
|
},
|
data() {
|
return {
|
tableHeader: [],
|
model: null,
|
addModel: null,
|
updateModel: null,
|
delModel: null,
|
currentIndex: 0,
|
isShowSucc: false,
|
isShowDel: false,
|
isDoingAdd: false,
|
buttonProp: '',
|
tempRecord: {},
|
pageInfo: {
|
currentPage: 1,
|
pageSize: 10
|
},
|
total: 0,
|
list: [],
|
updateList: []
|
}
|
},
|
created() {
|
this.init()
|
},
|
methods: {
|
init() {
|
const { isEdit } = this
|
const { query } = this.$route
|
this.query = query
|
const model = queryZhBankMessageList()
|
const tabList = model.getTableList()
|
this.tableHeader = isEdit
|
? tabList
|
: tabList.filter(({ type }) => type !== 'buttons')
|
this.model = model
|
this.addModel = addZhBankMessage()
|
this.updateModel = modifyZhBankMessage()
|
this.delModel = delZhBankMessage()
|
this.getList()
|
},
|
async getList() {
|
const { model, query, pageInfo, buttonProp, updateList } = this
|
const { customerId = '' } = query
|
const { list = [], total } = await model.request({
|
...pageInfo,
|
customerId
|
})
|
|
this.list = list.map(item => ({
|
...item,
|
action: {
|
buttons: normalButtons
|
}
|
}))
|
this.total = parseInt(total)
|
},
|
|
// 修改翻页条数
|
handleSizeChange(val) {
|
this.pageInfo.pageSize = val
|
this.resetList()
|
},
|
|
// 修改翻页数
|
handleCurrentChange(val) {
|
this.pageInfo.currentPage = val
|
this.resetList()
|
},
|
|
sureSucc() {
|
const { buttonProp } = this
|
this.isShowSucc = false
|
if (buttonProp === 'addButton' || buttonProp === 'submitButton') {
|
// this.getList()
|
} else {
|
this.changeList()
|
}
|
},
|
|
resetList() {
|
// this.pageInfo.currentPage = 1
|
this.tempRecord = {}
|
this.updateList = []
|
this.isDoingAdd = false
|
this.buttonProp = ''
|
this.getList()
|
},
|
|
// 表格按钮事件处理
|
doAction(item, record, index) {
|
const { prop } = item
|
this.currentIndex = index
|
this.buttonProp = prop
|
this.tempRecord = record
|
if (prop === 'updateButton') {
|
this.updateRecord()
|
}
|
if (prop === 'deleteButton') {
|
this.isShowDel = true
|
}
|
if (prop === 'cancleButton') {
|
this.changeList()
|
}
|
if (prop === 'addButton') {
|
this.toSubmit(true)
|
}
|
if (prop === 'submitButton') {
|
this.toSubmit()
|
}
|
},
|
|
doDel(index) {
|
if (index === 0) {
|
this.isShowDel = false
|
} else {
|
this.toDel()
|
}
|
},
|
|
changeList(res) {
|
const { list, tempRecord, updateList, buttonProp } = this
|
let listIndex = 0
|
let updateIndex = 0
|
const serialNo =
|
typeof tempRecord.serialNo === 'object'
|
? tempRecord.serialNo.value
|
: tempRecord.serialNo
|
|
if (serialNo) {
|
listIndex = list.findIndex(({ serialNo: itemNo }) =>
|
typeof itemNo === 'object'
|
? itemNo.value === serialNo
|
: itemNo === serialNo
|
)
|
updateIndex = updateList.findIndex(
|
({ serialNo: itemNo }) => itemNo === serialNo
|
)
|
}
|
|
if (buttonProp === 'cancleButton') {
|
if (serialNo) {
|
this.$set(list, listIndex, updateList[updateIndex])
|
this.updateList = updateList.filter(
|
(item, index) => index !== updateIndex
|
)
|
} else {
|
this.isDoingAdd = false
|
this.updateList = updateList.filter((item, index) => index !== 0)
|
this.list = list.filter((item, index) => index !== 0)
|
}
|
}
|
|
if (buttonProp === 'deleteButton') {
|
this.list = list.filter((item, index) => index !== listIndex)
|
}
|
|
if (buttonProp === 'addButton' || buttonProp === 'submitButton') {
|
this.updateList = updateList.filter(
|
(item, index) => index !== updateIndex
|
)
|
this.$set(list, listIndex, {
|
...res,
|
action: {
|
buttons: normalButtons
|
}
|
})
|
}
|
},
|
|
async toDel() {
|
const { list, currentIndex, query, delModel } = this
|
const { customerId } = query
|
const currItem = list[currentIndex]
|
const { serialNo = '', trxnbr } = currItem
|
await delModel.request({
|
customerId,
|
serialNo,
|
trxnbr
|
})
|
this.updatePaymentInfo()
|
this.isShowDel = false
|
this.isShowSucc = true
|
},
|
|
async toSubmit(isAdd = false) {
|
const { list, currentIndex, query, addModel, updateModel } = this
|
const { customerId, serialNo: loanSerialNo, paymentSerialNo } = query
|
const curr = list[currentIndex]
|
const [err, values] = this.$refs.waterTable.validate(curr)
|
const tempModel = isAdd ? addModel : updateModel
|
const currItem = { ...curr, ...values }
|
const { serialNo = '', corebalance = 0 } = currItem
|
if (err) {
|
this.$message.warning(err)
|
} else {
|
if (Number(values.crtAmt) <= 0 || Number(values.transactionAmt) <= 0) {
|
this.$message.warning('转账金额或认领金额必须大于0')
|
return false
|
}
|
if (!isAdd) {
|
if (Number(values.transactionAmt) > Number(corebalance)) {
|
this.$message.warning(
|
`认领金额不能大于余额${corebalance},请重新输入!`
|
)
|
return false
|
}
|
}
|
|
const res = await tempModel.request({
|
customerId,
|
serialNo,
|
loanSerialNo,
|
paymentNoticeSerialNo: paymentSerialNo || '',
|
...currItem
|
})
|
// 修改数据后,重新计算金额
|
this.updatePaymentInfo(res, isAdd)
|
if (isAdd) {
|
this.isDoingAdd = false
|
}
|
this.isShowSucc = true
|
this.changeList(res)
|
}
|
},
|
|
// 修改
|
updateRecord() {
|
const { list, tempRecord, updateList } = this
|
const index = list.findIndex(
|
({ serialNo }) => serialNo === tempRecord.serialNo
|
)
|
this.updateList = [...updateList, { ...tempRecord }]
|
this.$set(list, index, this.getEditRecord(tempRecord))
|
},
|
|
// 新增
|
addRecord() {
|
const { isDoingAdd, list, updateList } = this
|
if (isDoingAdd) {
|
this.$message.warning('请先提交当前新增项')
|
return false
|
}
|
const editRecord = this.getEditRecord()
|
this.tempRecord = {}
|
this.list = [editRecord, ...list]
|
this.updateList = [{}, ...updateList]
|
this.isDoingAdd = true
|
},
|
|
updateValue(val, inputItem, parentName, recordIndex = 0) {
|
const { list } = this
|
const { name } = inputItem
|
const listItem = list[recordIndex]
|
const key = Object.keys(listItem).find(k => k === name)
|
this.$set(list, recordIndex, {
|
...listItem,
|
[key]: { ...listItem[key], value: val }
|
})
|
},
|
|
updatePaymentInfo() {
|
const { query } = this
|
const { serialNo, customerId } = query
|
this.paymentZhTermInitData({
|
customerId,
|
loanSerialNo: serialNo
|
})
|
},
|
|
/**
|
* info 初始值
|
*/
|
getEditRecord(info = {}) {
|
const { tableHeader, addModel } = this
|
const formList = addModel.getFormList(info)
|
return tableHeader.reduce(
|
(pre, { prop, isMoney = false }) => {
|
if (prop === 'action') {
|
pre[prop] = {
|
buttons: Object.keys(info).length > 0 ? editButtons : addButtons
|
}
|
} else {
|
const inputItem = formList.find(({ name }) => name === prop)
|
if (inputItem) {
|
pre[prop] = inputItem
|
}
|
}
|
return pre
|
},
|
{ ...info }
|
)
|
},
|
...mapActions(['paymentZhTermInitData'])
|
},
|
computed: {
|
isEdit() {
|
const { conf } = this
|
return conf.edit === 'Y'
|
}
|
},
|
watch: {
|
$route() {
|
const { serialNo } = this.$route.query
|
if (serialNo) {
|
this.init()
|
}
|
}
|
}
|
}
|
</script>
|
<style lang="postcss" scoped>
|
.middle-button {
|
margin-bottom: 20px;
|
}
|
.del-id {
|
text-align: center;
|
margin: 0 0 20px 0;
|
padding: 0;
|
}
|
</style>
|