<template>
|
<div class="search-fomr">
|
<SectionTitle :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 CommTable from '@/components/CommTable'
|
import SectionTitle from '@/components/SectionTitle'
|
import Dialog from '@/components/Dialog'
|
|
import fallBackOrgSubFlowList from '@/controller/fallBackOrgSubFlowList' // 功能约束 - 功能子流程定义
|
import selectSubFlow from '@/controller/selectSubFlow'
|
import { mapState } from 'vuex'
|
|
const normalButtons = [
|
{ text: '修改', prop: 'updateButton' },
|
{ text: '删除', prop: 'deleteButton' },
|
{ text: '前移(向上)', prop: 'upButton' },
|
{ text: '推后(向下)', prop: 'downButton' }
|
]
|
|
const addButtons = [
|
{ text: '取消', prop: 'cancleButton' },
|
{ text: '保存', prop: 'addButton' }
|
]
|
|
const editButtons = [
|
{ text: '取消', prop: 'cancleButton' },
|
{ text: '保存', prop: 'submitButton' }
|
]
|
|
export default {
|
components: {
|
CommTable,
|
Dialog,
|
SectionTitle
|
},
|
props: {
|
conf: {
|
type: Object,
|
default: () => ({})
|
},
|
serialNo: {
|
type: String,
|
default: ''
|
},
|
functionName: {
|
type: String,
|
required: true
|
}
|
},
|
data() {
|
return {
|
currentIndex: 0, // 操作当前行的下标
|
total: 0,
|
pageInfo: {
|
currentPage: 1,
|
pageSize: 10
|
},
|
loading: false,
|
isDoingAdd: false, // 是否是新增操作
|
isShowDel: false,
|
tableHeader: [],
|
list: [],
|
updateList: [], // 更新的列
|
model: null,
|
selectModel: null,
|
subFlowNameOptions: [],
|
query: '',
|
currentFuncType: ''
|
}
|
},
|
created() {
|
this.init()
|
},
|
methods: {
|
init() {
|
const { $route, isEdit, tableMark } = this
|
const { query } = $route
|
this.query = query
|
let model = fallBackOrgSubFlowList()
|
this.model = model
|
this.selectModel = selectSubFlow()
|
const tabList = model.getTableList()
|
this.tableHeader = isEdit
|
? tabList
|
: tabList.filter(({ type }) => type !== 'buttons')
|
this.getList()
|
this.selectOptions()
|
},
|
|
// 获取数据
|
async getList() {
|
const { model, serialNo } = this
|
this.loading = true
|
const res = await model.request({ orgFunSerialNo: serialNo })
|
this.loading = false
|
const { list } = res
|
this.list = res.list.map(item => ({
|
...item,
|
action: {
|
buttons: normalButtons
|
}
|
}))
|
this.$emit('sendTable', this.list)
|
},
|
|
async selectOptions() {
|
const { selectModel, functionName, sonProcessCode } = this
|
const codeObj = sonProcessCode.find(({ type }) => type === functionName)
|
if (codeObj && Object.keys(codeObj).length > 0) {
|
const { list } = await selectModel.request({ codeNo: codeObj.value })
|
this.subFlowNameOptions = [...list]
|
} else {
|
this.subFlowNameOptions = []
|
}
|
},
|
// 新增
|
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, subFlowNameOptions } = this
|
const formList = model.getFormList(info)
|
// console.log(formList)
|
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.name === 'subFlowNameDesc' &&
|
inputItem.type === 'select'
|
) {
|
inputItem.options = [...subFlowNameOptions]
|
}
|
if (inputItem) {
|
pre[prop] = inputItem
|
}
|
}
|
return pre
|
},
|
{ ...info }
|
)
|
},
|
|
// 取消操作
|
changeList(res) {
|
const {
|
list,
|
tempRecord,
|
updateList,
|
buttonProp,
|
currentIndex,
|
subFlowNameOptions,
|
query
|
} = this
|
const { operation } = query
|
// buttonProp 当前点击的操作
|
console.log(buttonProp, updateList)
|
let listIndex = 0
|
let updateIndex = 0
|
const applySerialno =
|
typeof tempRecord.applySerialno === 'object'
|
? tempRecord.applySerialno.value
|
: tempRecord.applySerialno
|
// 新增 数据单
|
const sequence =
|
typeof tempRecord.sequence === 'object'
|
? tempRecord.sequence.value
|
: tempRecord.sequence
|
if (applySerialno) {
|
listIndex = list.findIndex(({ serialNo: itemNo }) =>
|
typeof itemNo === 'object'
|
? itemNo.value === serialNo
|
: itemNo === serialNo
|
)
|
updateIndex = updateList.findIndex(
|
({ serialNo: itemNo }) => itemNo === serialNo
|
)
|
} else {
|
listIndex = currentIndex
|
}
|
console.log(list)
|
if (res) {
|
const { subFlowNameDesc } = res
|
const { label } = subFlowNameOptions.find(
|
({ value }) => value === subFlowNameDesc
|
)
|
res = {
|
...res,
|
subFlowNameDesc: label,
|
subFlowName: res.subFlowNameDesc,
|
sequence: tempRecord.sequence.value
|
}
|
console.log(res)
|
}
|
if (buttonProp === 'cancleButton') {
|
// 区分是新增数据的取消 还是修改数据的取消
|
if (operation === 'add') {
|
if (!this.isDoingAdd) {
|
// 值互换
|
let tempList = updateList[updateIndex]
|
tempList = {
|
...tempList,
|
subFlowName: tempList.subFlowNameDesc,
|
subFlowNameDesc: tempList.subFlowName
|
}
|
// console.log(updateList[updateIndex],list[currentIndex])
|
this.$set(list, listIndex, tempList)
|
// 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 (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
|
}
|
})
|
}
|
this.$emit('sendTable', this.list)
|
},
|
|
// 保存操作
|
// isAdd 区别是新增还是修改时的保存操作
|
async toSubmit(isAdd = false) {
|
const { list, currentIndex } = this
|
const curr = list[currentIndex]
|
const [err, values] = this.$refs.waterTable.validate(curr)
|
// 存在未填数据
|
if (err) {
|
this.$message.warning(err)
|
this.tempRecord = {}
|
} else {
|
// 当前放必填项已填
|
if (isAdd) {
|
// 新增
|
this.isDoingAdd = false
|
}
|
this.changeList(values)
|
}
|
},
|
|
updateValue(val, inputItem, parentName, recordIndex = 0) {
|
// sequence执行顺序
|
const { list, tempRecord } = this
|
let listLength = list.length
|
if (Object.keys(tempRecord).length !== 0) {
|
listLength = tempRecord.sequence
|
}
|
const { name, options = [] } = inputItem
|
const listItem = list[recordIndex]
|
const key = Object.keys(listItem).find(k => k === name)
|
if (name === 'subFlowName') {
|
// 由于保存时修改过subFlowName的值,并将其原值存储在subFlowNameDesc中,所以这里去subFlowNameDesc字段做判断
|
const sameIndex = list.findIndex(item => item[`${key}Desc`] === val)
|
console.log(sameIndex)
|
if (sameIndex !== -1) {
|
this.$message.warning('列表已存在该数据,请重新选择')
|
return
|
}
|
}
|
this.$set(list, recordIndex, {
|
...listItem,
|
[key]: { ...listItem[key], value: val },
|
sequence: { ...listItem['sequence'], value: listLength }
|
})
|
},
|
|
// 修改
|
updateRecord() {
|
let { list, tempRecord, updateList, query, currentIndex } = this
|
const { operation } = query
|
tempRecord = {
|
...tempRecord,
|
subFlowNameDesc: tempRecord.subFlowName,
|
subFlowName: tempRecord.subFlowNameDesc
|
}
|
console.log(tempRecord)
|
if (operation === 'add') {
|
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()
|
}
|
// 新增
|
if (prop === 'addButton') {
|
this.toSubmit(true)
|
}
|
// 上移
|
if (prop === 'upButton') {
|
this.toUpMove()
|
}
|
// 下移
|
if (prop === 'downButton') {
|
this.toDownMove()
|
}
|
},
|
|
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('删除成功')
|
},
|
|
toUpMove() {
|
const { currentIndex, list, tempRecord } = this
|
if (currentIndex === 0) {
|
this.$message.warning('当前数据已经处于第一项,无法上移')
|
} else {
|
const tempData = list[currentIndex - 1]
|
list[currentIndex - 1] = tempRecord
|
list[currentIndex] = tempData
|
this.list = [...list]
|
}
|
},
|
|
toDownMove() {
|
const { list, currentIndex, tempRecord } = this
|
if (currentIndex === list.length - 1) {
|
this.$message.warning('当前数据已经处于最后一项,无法下移')
|
} else {
|
const tempData = list[currentIndex + 1]
|
list[currentIndex + 1] = tempRecord
|
list[currentIndex] = tempData
|
this.list = [...list]
|
}
|
},
|
|
swapArray(arr, index1, index2) {
|
arr[index1] = arr.splice(index2, 1, arr[index1])[0]
|
console.log(arr[index1])
|
return arr
|
}
|
},
|
computed: {
|
isEdit() {
|
const { conf, currentFuncType } = this
|
return conf.edit === 'Y' && currentFuncType !== '00'
|
},
|
...mapState({
|
sonProcessCode: state => state.loanInstitution.sonProcessCode,
|
currentTabs: state => state.loanInstitution.currentTabs
|
})
|
},
|
watch: {
|
sonProcessCode(val) {
|
const { functionName, currentTabs } = this
|
this.isDoingAdd = false
|
// console.log(val, functionName, currentTabs)
|
// functionName === currentTabs标识操作的是当前页面的表格。否则会都刷新,无法保留每个表格的数据
|
if (functionName === currentTabs) {
|
// this.init()
|
this.selectOptions()
|
this.list = []
|
const index = val.findIndex(({ type }) => type === currentTabs)
|
this.currentFuncType = val[index].value
|
}
|
}
|
}
|
}
|
</script>
|
|
<style scoped></style>
|