<template>
|
<div class="search-fomr">
|
<SectionTitle :title="title"></SectionTitle>
|
<el-button
|
style="margin-bottom:20px"
|
type="primary"
|
icon="el-icon-circle-plus-outline"
|
size="small"
|
@click="addRecord"
|
v-if="isEdit"
|
>新增</el-button>
|
<CommTable
|
:loading="loading"
|
:isAutoIndex="true"
|
:list="list"
|
:maxHeight="530"
|
:header="tableHeader"
|
:total="total"
|
@doAction="doAction"
|
@updateValue="updateValue"
|
ref="waterTable"
|
></CommTable>
|
|
<Dialog
|
v-model="isShowDel"
|
title="删除确认"
|
:buttons="[{ text: '取消' }, { text: '确定', type: 'primary' }]"
|
@handleClick="clickDel"
|
:contentText="`请确认是否需要删除该数据 ?`"
|
></Dialog>
|
</div>
|
</template>
|
|
<script>
|
import { mapMutations } from 'vuex'
|
|
import CommTable from '@/components/CommTable'
|
import Dialog from '@/components/Dialog'
|
import SectionTitle from '@/components/SectionTitle'
|
|
import loanChannelCertPayChargeList from '@/controller/loanChannelCertPayChargeList'
|
import loanChannelPutoutChargeList from '@/controller/loanChannelPutoutChargeList'
|
import loanChannelRepaymentChargeList from '@/controller/loanChannelRepaymentChargeList' // 还款-收费标准
|
|
import queryCodeValueList from '@/controller/queryCodeValueList'
|
|
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: () => ({}),
|
},
|
tableMark: {
|
type: String,
|
required: true,
|
},
|
serialNo: {
|
type: String,
|
required: true,
|
},
|
},
|
data() {
|
return {
|
currentIndex: 0, // 操作当前行的下标
|
total: 0,
|
pageInfo: {
|
currentPage: 1,
|
pageSize: 10,
|
},
|
loading: false,
|
isDoingAdd: false, // 是否是新增操作
|
isShowDel: false,
|
tableHeader: [],
|
list: [],
|
updateList: [], // 更新的列
|
formList: [],
|
model: null,
|
query: '',
|
selectModel: null,
|
}
|
},
|
created() {
|
this.init()
|
},
|
methods: {
|
init() {
|
const { $route, isEdit, tableMark } = this
|
const { query } = $route
|
this.query = query
|
let model = null
|
if (tableMark === 'loads') {
|
model = loanChannelPutoutChargeList()
|
}
|
if (tableMark === 'credit') {
|
model = loanChannelCertPayChargeList()
|
}
|
if (tableMark === 'repeat') {
|
model = loanChannelRepaymentChargeList()
|
this.selectModel = queryCodeValueList()
|
this.selectOptions()
|
}
|
this.model = model
|
const tabList = model.getTableList()
|
this.tableHeader = isEdit
|
? tabList
|
: tabList.filter(({ type }) => type !== 'buttons')
|
this.getList()
|
},
|
|
// 获取数据
|
async getList() {
|
const { model, serialNo: loanOrgSerialNo, tableMark } = this
|
this.loading = true
|
let res = null
|
if (tableMark === 'credit') {
|
res = await model.request({ loanOrgSerialNo })
|
}
|
if (tableMark === 'loads') {
|
res = await model.request({ loanOrgSerialNo })
|
}
|
if (tableMark === 'repeat') {
|
res = await model.request({ loanOrgSerialNo })
|
}
|
this.loading = false
|
const { list } = res
|
this.list = res.list.map((item) => ({
|
...item,
|
action: {
|
buttons: normalButtons,
|
},
|
}))
|
if (tableMark === 'loads') {
|
this.setLoanOrgRepaymentChargeListSubmitReqs(this.list)
|
}
|
if (tableMark === 'credit') {
|
this.setLoanChannelCertChargeListSubmitReqs(this.list)
|
}
|
if (tableMark === 'repeat') {
|
this.setLoanOrgPaymentChargeListSubmitRsps(this.list)
|
}
|
},
|
|
async selectOptions() {
|
const { selectModel } = this
|
const { list } = await selectModel.request({ codeNo: 'BankCode' })
|
this.bankListOptions = [...list]
|
},
|
|
// 新增
|
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
|
},
|
|
/**
|
* info 初始值
|
* 初始化当行输入框
|
*/
|
getEditRecord(info = {}) {
|
const { tableHeader, model, bankListOptions = [] } = this
|
const formList = model.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.type === 'select' &&
|
inputItem.name === 'openBankName'
|
) {
|
inputItem.options = [...bankListOptions]
|
}
|
console.log(inputItem)
|
if (inputItem) {
|
pre[prop] = inputItem
|
}
|
}
|
return pre
|
},
|
{ ...info }
|
)
|
},
|
|
// 取消操作
|
changeList(res) {
|
const {
|
list,
|
tempRecord,
|
updateList,
|
buttonProp,
|
currentIndex,
|
tableMark,
|
bankListOptions,
|
query,
|
} = this
|
const { operation } = query
|
if (tableMark === 'repeat' && res) {
|
const { openBankName } = res
|
const { label } = bankListOptions.find(
|
({ value }) => value === openBankName
|
)
|
res = {
|
...res,
|
openBank: openBankName,
|
openBankName: label,
|
}
|
}
|
// buttonProp 当前点击的操作
|
console.log(buttonProp, updateList)
|
let listIndex = 0
|
let updateIndex = 0
|
const applySerialno =
|
typeof tempRecord.applySerialno === 'object'
|
? tempRecord.applySerialno.value
|
: tempRecord.applySerialno
|
if (operation === 'add') {
|
if (buttonProp === 'cancleButton') {
|
// 区分是新增数据的取消 还是修改数据的取消
|
if (!this.isDoingAdd) {
|
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)
|
}
|
}
|
} else {
|
if (buttonProp === 'cancleButton') {
|
// 区分是新增数据的取消 还是修改数据的取消
|
if (applySerialno) {
|
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') {
|
this.updateList = updateList.filter(
|
(item, index) => index !== updateIndex
|
)
|
this.$set(list, listIndex, {
|
...res,
|
action: {
|
buttons: normalButtons,
|
},
|
})
|
}
|
if (buttonProp === 'submitButton') {
|
this.updateList = updateList.filter(
|
(item, index) => index !== updateIndex
|
)
|
this.$set(list, currentIndex, {
|
...res,
|
action: {
|
buttons: normalButtons,
|
},
|
})
|
}
|
|
if (tableMark === 'loads') {
|
this.setLoanOrgRepaymentChargeListSubmitReqs(this.list)
|
}
|
if (tableMark === 'credit') {
|
this.setLoanChannelCertChargeListSubmitReqs(this.list)
|
}
|
if (tableMark === 'repeat') {
|
this.setLoanOrgPaymentChargeListSubmitRsps(this.list)
|
}
|
},
|
|
// 保存操作
|
// isAdd 区别是新增还是修改时的保存操作
|
async toSubmit(isAdd = false) {
|
const { list, currentIndex, operationType } = this
|
const curr = list[currentIndex]
|
const [err, values] = this.$refs.waterTable.validate(curr)
|
// 存在未填数据
|
if (err) {
|
this.$message.warning(err)
|
} else {
|
// 当前放必填项已填
|
if (isAdd) {
|
// 新增
|
this.isDoingAdd = false
|
}
|
const { lowLimit, upLimit } = values
|
this.toCompare(lowLimit, upLimit, values, operationType)
|
// this.changeList(values)
|
}
|
},
|
|
toCompare(low, up, values, operationType) {
|
const { tableMark } = this
|
if (Number(low) < Number(up)) {
|
if (tableMark === 'repeat') {
|
const { chargeLowLimit, chargeUpLimit, chargeRate } = values
|
if (Number(chargeRate) > 99) {
|
this.$message.warning('收费费率(%)输入值范围[0,99],请重新输入')
|
this.isDoingAdd = true
|
return
|
}
|
if (Number(chargeLowLimit) < Number(chargeUpLimit)) {
|
this.changeList(values)
|
} else {
|
this.$message.warning('收费金额上限小于收费金额下限,请重新输入')
|
this.isDoingAdd = true
|
}
|
} else {
|
this.changeList(values)
|
}
|
} else {
|
this.$message.warning('档次单笔上限小于档次单笔数下限,请重新输入')
|
this.isDoingAdd = true
|
if (operationType === 'editButtons') {
|
this.editCancel = true
|
} else {
|
this.editCancel = false
|
}
|
return
|
}
|
},
|
|
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 },
|
})
|
},
|
|
// 修改
|
updateRecord() {
|
const { list, tempRecord, updateList, currentIndex, query } = this
|
const { operation } = query
|
if (operation === 'add') {
|
// 新增是直接去currentIndex 当前行的坐标
|
this.updateList = [...updateList, { ...tempRecord }]
|
this.$set(list, currentIndex, this.getEditRecord(tempRecord))
|
} else {
|
// 根据applySerialno查找是修改那一行
|
const index = list.findIndex(
|
({ applySerialno }) => applySerialno === tempRecord.applySerialno
|
)
|
this.updateList = [...updateList, { ...tempRecord }]
|
this.$set(list, index, this.getEditRecord(tempRecord))
|
}
|
},
|
|
doAction(item, record, index) {
|
const { prop } = item
|
this.currentIndex = index
|
this.buttonProp = prop
|
this.tempRecord = record
|
// 取消
|
if (prop === 'cancleButton') {
|
this.changeList()
|
}
|
// 删除
|
if (prop === 'deleteButton') {
|
this.isShowDel = true
|
}
|
// 修改
|
if (prop === 'updateButton') {
|
this.updateRecord()
|
}
|
// 保存
|
if (prop === 'submitButton') {
|
this.toSubmit(false, 'editButtons')
|
}
|
// 新增
|
if (prop === 'addButton') {
|
this.toSubmit(true, 'addButton')
|
}
|
},
|
|
clickDel(index) {
|
if (index === 0) {
|
this.isShowDel = false
|
} else {
|
this.toDel()
|
}
|
},
|
// 删除操作
|
toDel() {
|
const { currentIndex, list } = this
|
const delIndex = list.findIndex((item, index) => index === currentIndex)
|
this.list.splice(delIndex, 1)
|
this.isShowDel = false
|
this.$emit('sendTable', this.list)
|
console.log('删除成功')
|
},
|
|
...mapMutations([
|
'setLoanOrgRepaymentChargeListSubmitReqs',
|
'setLoanChannelCertChargeListSubmitReqs',
|
'setLoanOrgPaymentChargeListSubmitRsps',
|
]),
|
},
|
computed: {
|
isEdit() {
|
const { conf } = this
|
return conf.edit === 'Y'
|
},
|
title() {
|
const { tableMark } = this
|
if (tableMark === 'credit') {
|
return '身份验证收费标准'
|
}
|
if (tableMark === 'loads') {
|
return '代付收费标准'
|
}
|
if (tableMark === 'repeat') {
|
return '代扣收费标准'
|
}
|
},
|
},
|
watch: {
|
serialNo() {
|
const { serialNo } = this
|
if (serialNo) {
|
this.init()
|
}
|
},
|
},
|
}
|
</script>
|
|
<style scoped></style>
|