zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<template>
  <div class="search-form" v-show="orgType">
    <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 { mapMutations, mapState } from 'vuex'
 
import CommTable from '@/components/CommTable'
import SectionTitle from '@/components/SectionTitle'
import Dialog from '@/components/Dialog'
 
import queryLoanrepaymentsAccountList from '@/controller/queryLoanrepaymentsAccountList' // 放款/回款账户清单列表
 
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,
    Dialog,
    SectionTitle
  },
  props: {
    conf: {
      type: Object,
      default: () => ({})
    }
  },
  data() {
    return {
      currentIndex: 0, // 操作当前行的下标
      total: 0,
      pageInfo: {
        currentPage: 1,
        pageSize: 10
      },
      loading: false,
      isDoingAdd: false, // 是否是新增操作
      isShowDel: false,
      tableHeader: [],
      list: [],
      updateList: [], // 更新的列
      formList: [],
      query: null,
      model: null,
      selectModel: null,
      accountTypeOptions: []
    }
  },
  created() {
    this.init()
  },
  methods: {
    init() {
      const { $route, isEdit } = this
      const { query } = $route
      this.query = query
      const model = queryLoanrepaymentsAccountList()
 
      this.model = model
      this.selectModel = queryCodeValueList()
      const tabList = model.getTableList()
      this.tableHeader = isEdit
        ? tabList
        : tabList.filter(({ type }) => type !== 'buttons')
      this.getList()
      this.selectOptions()
    },
 
    // 获取数据
    async getList() {
      const { model, query } = this
      const { serialNo = '' } = query
      this.loading = true
      const res = await model.request({
        serialNo
      })
      this.loading = false
      this.list = res.list.map(item => ({
        ...item,
        action: {
          buttons: normalButtons
        }
      }))
    },
 
    async selectOptions() {
      const { selectModel } = this
      const { list } = await selectModel.request({
        codeNo: 'FundUnitAccountType'
      })
      this.accountTypeOptions = [...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, accountTypeOptions } = 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 === 'accountTypeDesc'
            ) {
              inputItem.options = [...accountTypeOptions]
            }
            if (inputItem) {
              pre[prop] = inputItem
            }
          }
          return pre
        },
        { ...info }
      )
    },
 
    // 取消操作
    changeList(res) {
      const {
        list,
        tempRecord,
        updateList,
        buttonProp,
        currentIndex,
        accountTypeOptions,
        query,
        isDoingAdd
      } = this
      const { operation } = query
      if (res) {
        const { accountTypeDesc } = res
        const { label } = accountTypeOptions.find(
          ({ value, label }) => {
            return label === accountTypeDesc || value === accountTypeDesc
          }
        )
        res = {
          ...res,
          accountTypeDesc: label,
          accountType: res.accountTypeDesc
        }
      }
      // buttonProp 当前点击的操作
      let listIndex = 0
      let updateIndex = 0
      const applySerialno =
        typeof tempRecord.applySerialno === 'object'
          ? tempRecord.applySerialno.value
          : tempRecord.applySerialno
      // 新增 数据单
      const accountTypeDesc =
        typeof tempRecord.accountTypeDesc === 'object'
          ? tempRecord.accountTypeDesc.value
          : tempRecord.accountTypeDesc
      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
      }
 
      if (buttonProp === 'cancleButton') {
        if (operation === 'add') {
          // 区分是新增数据的取消 还是修改数据的取消
          if (!isDoingAdd && accountTypeDesc) {
            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
          }
        })
      }
    },
 
    // 保存操作
    // 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)
      } else {
        // 当前放必填项已填
        if (isAdd) {
          // 新增
          this.isDoingAdd = false
        }
        this.changeList(values)
      }
    },
 
    updateValue(val, inputItem, parentName, recordIndex = 0) {
      const { list } = this
      const { name, options = [] } = inputItem
      const listItem = list[recordIndex]
      const key = Object.keys(listItem).find(k => k === name)
      console.log(val, key)
      if (key === 'accountTypeDesc') {
        const sameValue = list.findIndex(item => item['accountType'] === val)
        console.log(sameValue)
        if (sameValue !== -1) {
          this.$message.warning('不能录入一样的银行信息,请重新选择')
          return
        }
        this.$set(list, recordIndex, {
          ...listItem,
          [key]: { ...listItem[key], value: val }
        })
      } else {
        this.$set(list, recordIndex, {
          ...listItem,
          [key]: { ...listItem[key], value: val }
        })
      }
      console.log(this.list)
    },
 
    // 修改
    updateRecord() {
      const { list, tempRecord, updateList, query } = this
      const { operation } = query
      let index = ''
      if (operation === 'add') {
        index = list.findIndex(
          ({ accountTypeDesc }) =>
            accountTypeDesc === tempRecord.accountTypeDesc
        )
      } else {
        // 根据applySerialno查找是修改那一行
        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') {
        if (this.isDoingAdd) {
          this.$message.warning('请先提交当前新增项')
          return false
        }
        this.updateRecord()
      }
      // 保存
      if (prop === 'submitButton') {
        this.toSubmit()
      }
      // 新增
      if (prop === 'addButton') {
        this.toSubmit(true)
      }
    },
 
    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('sendTableList', this.list)
    },
    submit() {
      this.setFundUnitLoanAccountSubmitReqs(this.list)
    },
    ...mapMutations(['setFundUnitLoanAccountSubmitReqs'])
  },
  computed: {
    isEdit() {
      const { conf } = this
      return conf.edit === 'Y'
    },
    ...mapState({
      orgType: state => state.captialUnit.orgType
    })
  },
  watch: {
    serialNo() {
      const { serialNo } = this
      if (serialNo) {
        this.init()
      }
    }
  }
}
</script>
 
<style scoped></style>