InFeedFlowModal.vue
14.6 KB
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<template>
<div>
<a-drawer
:title="title"
:maskClosable="false"
:width="drawerWidth"
placement="right"
:closable="true"
@close="handleCancel"
:visible="visible"
:centered='true'
:confirmLoading="confirmLoading"
style="height: calc(100% - 55px);overflow: auto;padding-bottom: 53px;"
>
<a-spin :spinning="confirmLoading">
<a-form :form="form">
<a-card class="card" title="配置基础信息" :bordered="false">
<a-row :gutter="24">
<a-form-item label="进件流模板编号:" :labelCol="labelCol" :wrapperCol="wrapperCol" v-show=" model.collectionProcessNo ? true : false">
<a-input
:disabled="disabled"
v-decorator="[
'collectionProcessNo',
{'initialValue': model ? model.collectionProcessNo : ''}
]"
placeholder="请输入进件流模板编号"
/>
</a-form-item>
<a-form-item label="进件流模板名称:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input
v-decorator="[
'collectionProcessName',
{ rules: [{ required: true, message: '请输入进件流模板名称' }] },
]"
placeholder="请输入进件流模板名称"
/>
</a-form-item>
</a-row>
<a-row :gutter="24">
<a-form-item label="进件主体类型:" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select
v-decorator="[
'userType',
{ rules: [{ required: true, message: '请输入进件主体类型' }] },
]"
placeholder="请输入进件主体类型"
@change="handleSelectChange">
<a-select-option :value="1">个人</a-select-option>
<a-select-option :value="2">企业</a-select-option>
<a-select-option :value="3">企业法人</a-select-option>
</a-select>
</a-form-item>
</a-row>
</a-card>
</a-form>
<a-card :title="`${config.typeTitle}${config.subtypeTitle}信息`" v-show="showOtherInfo" :bordered="false">
<div>移动平台所有的{{config.typeTitle}}客户信息包含如下</div>
<div style="padding: 20px">
<a-tag v-for="(item,index) in flowNodeData" :key="index" style="margin:5px ">
<span @click="handleTemplatePhoto(item)">{{item.name}}</span>
</a-tag>
</div>
</a-card>
<a-card title="进件流配置" v-show="showOtherInfo" :bordered="false">
<div>移动平台进件流程配置:</div>
<div style="padding: 20px">
<a-row :gutter="24">
<a-col >
<button @click="addNodeService" style="margin-bottom: 20px">添加进件流节点</button>
</a-col>
</a-row>
<a-row :gutter="24">
<a-col>
<a-timeline>
<a-timeline-item v-for="(item,index) of receiveDotData" :key="index">
<template >
<slot :name="item" >{{item.name}}</slot>
<div style="color:#1890FF;"><span @click="delNodeService(item)">删除</span><span style="margin:0 5px;">|</span><span @click="editNodeService(item)">修改</span></div>
</template>
</a-timeline-item>
</a-timeline>
</a-col>
</a-row>
</div>
</a-card>
</a-spin>
<div class="drawer-bootom-button" >
<a-popconfirm title="确定放弃编辑?" @confirm="handleCancel" okText="确定" cancelText="取消">
<a-button style="margin-right: .8rem">取消</a-button>
</a-popconfirm>
<a-button @click="handleSubmit" type="primary" :loading="confirmLoading">确定</a-button>
</div>
</a-drawer>
<collection-create-form ref="collectionForm" @ok="modalFormOk"/>
</div>
</template>
<script>
import pick from 'lodash.pick'
import store from '@/store'
import CollectionCreateForm from './InFeedFlowDotModal'
import { saveCollectionProcess, updateCollectionProcess } from '@/api/insys'
import { postAction,getAction } from '@/api/configApi'
export default {
name: "InFeedFlowModel",
components:{
CollectionCreateForm,
},
data () {
return {
modalWidth:800,
drawerWidth:700,
visible: false,
confirmLoading: false,
confirmDirty: false,
title: '',
validatorRules:{},
labelCol: {
xs: { span: 24 },
sm: { span: 8 },
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 },
},
form: this.$form.createForm(this,{ name: 'validate_main' }),
model: {},
flowNodeData:[], //获取到进件流节点数据
receiveDotData:[],
receiveDotDataNum:[],
receiveDotDataName:[],
url: {
fileUpload: window._CONFIG['domianURL']+"/sys/common/upload",
imgerver: window._CONFIG['domianURL']+"/sys/common/view",
},
config:{
typeTitle:'',
subtypeTitle:''
},
showOtherInfo:false,
disabled: false
}
},
methods: {
handleTemplatePhoto(item){
const src = require(`@/assets/phototmp/${item.code}.png`)
const title = item.name
const h = this.$createElement;
this.$info({
title: title,
content: h('div', null, [
h('img',
{
attrs: {
src: src,
style:'width:200px'
},
},
)
]),
dangerouslyUseHTMLString: true,
})
},
handleSelectChange(value) {
this.reset()
if(value) {
this.showOtherInfo = true
}
if(value == '1'){
this.config.typeTitle = '个人'
this.config.subTypeTitle = '授信进件'
}else if(value == '2'){
this.config.typeTitle = '企业'
this.config.subTypeTitle = '授信进件'
}else if(value == '3'){
this.config.typeTitle = '企业法人'
this.config.subTypeTitle = '授信进件'
}
this.storeGetFlowNodeFn(value,'1')
},
//新增时候获取进件流数据
storeGetFlowNodeFn(ouserType,otype){
let that = this;
store.dispatch('GetFlowNodeData',{userType:ouserType,type:otype}).then(res => {
var res = res.result ? res.result.processNodes : []
that.flowNodeData = res
}).catch((err) => {
console.log(err);
});
},
//处理 submit数据
handleSubmitCheckedData(orgin){
for(var idx = 0; idx < orgin.length; idx++) {
if(orgin[idx].nodeServices){
for(var idx1 = 0; idx1 < orgin[idx].nodeServices.length; idx1++) {
//决策引擎
if(orgin[idx].nodeServices[idx1].data && orgin[idx].data){
orgin[idx].nodeServices[idx1].type = orgin[idx].data
}
delete orgin[idx].nodeServices[idx1].data
if(orgin[idx].nodeServices[idx1].checked){
delete orgin[idx].nodeServices[idx1].checked
}
}
}
if(orgin[idx].checked){
delete orgin[idx].checked
}
if(orgin[idx].data){
delete orgin[idx].data
}
}
return orgin
},
//处理编辑节点回显
handleEditProcessData(msg){
let oMsg = JSON.parse(msg.processInfo)
// console.log(oMsg)
this.receiveDotData = this.handleCallbackFlowListData(oMsg)
// console.log(this.receiveDotDataNum)
},
//处理编辑回显示节点process数据
handleCallbackFlowListData(data){
for(var idx = 0; idx < data.length; idx++) {
data[idx].checked = true
this.receiveDotDataNum.push(data[idx].index)
this.receiveDotDataName.push(data[idx].name)
if(data[idx].nodeServices){
for(var idx1 in data[idx].nodeServices) {
data[idx].nodeServices[idx1].checked = true
if(data[idx].nodeServices[idx1].type){
data[idx].data = data[idx].nodeServices[idx1].type
}
}
}
}
return data
},
//判断节点名称顺序是否相同
nodeNameOrIndexUnique(arr,name,index){
return new Promise((resove,reject)=>{
var flag = null
for(var i in arr){
if(arr[i]['index'] == index || arr[i]['name'] == name){
flag = true
}
}
resove(flag)
})
},
//获取用户对应部门弹出框提交给返回的数据
modalFormOk1 (formData,status) {
if(this.receiveDotData.length<0){
this.receiveDotData.push(formData)
this.receiveDotData.sort(this.sortFn('index'))
}else{
}
this.receiveDotData.sort(this.sortFn('index'))
},
modalFormOk(formData,status) {
console.log(status,formData,this.receiveDotData)
if(status == 0){ //新增
this.addArrayUniqueFn(formData)
}
else if(status == 1){//编辑
this.replaceArrayFn(formData)
}
this.receiveDotData.sort(this.sortFn('index'))
},
//新增去重
addArrayUniqueFn(formData){
this.receiveDotDataNum.indexOf(formData['index'])>-1 || this.receiveDotDataName.indexOf(formData['name'])>-1 ? this.$message.error('节点重复') : this.receiveDotData.push(formData) && this.receiveDotDataNum.push(formData['index']) && this.receiveDotDataName.push(formData['name'])
},
//编辑替换
replaceArrayFn(formData){
for(var i=0;i< this.receiveDotData.length;i++){
if(this.receiveDotData[i]['index'] == formData['index']){
this.receiveDotData.splice(i,1,formData)
}
}
},
replaceArrayFnCopy(formData){
if( this.receiveDotDataNum.includes(formData['index']) && this.receiveDotDataName.indexOf(formData['name'])== -1 ){//index 相同 name 不同 替换
this.receiveDotData = this.receiveDotData.map( (item,i) => {
return item.index === formData['index'] ? formData : item ;
})
}
},
//数组去重
arrayUnique(arr,index, name) {
var hash = {}
return arr.reduce(function (item, next) {
that.hash[next[index]] ? '' : that.hash[next[index]] = true && item.push(next)
return item
}, []);
},
//数组排序
sortFn(prop){
return function(a,b) {
return a[prop] - b[prop];
}
},
// 新增节点
addNodeService(){
if(this.flowNodeData.length<0){
return false
}
this.$refs.collectionForm.add(this.flowNodeData);
},
// 删除节点
delNodeService(item){
this.removeArrayFn(item)
},
// 修改节点
editNodeService(record){
this.$refs.collectionForm.edit(record,this.flowNodeData);
},
//删除方法
removeArrayFn(item){
for(var i=0;i< this.receiveDotData.length;i++){
if(this.receiveDotData[i].index == item.index ){
this.receiveDotData.splice(i,1)
this.receiveDotDataNum.splice(i,1)
this.receiveDotDataName.splice(i,1)
}
}
},
edit (record) {
this.model = record;
this.form.resetFields();
this.visible = true;
this.$nextTick(() => {
this.disabled = true
this.form.setFieldsValue(pick(record,'collectionProcessNo','collectionProcessName','userType'));
this.handleSelectChange(record.userType)
this.handleEditProcessData(record)
});
},
add () {
this.model = {};
this.form.resetFields();
this.visible = true;
this.$nextTick(() => {
this.disabled = false
this.form.setFieldsValue();
});
},
close () {
this.$emit('close');
this.visible = false;
this.disableSubmit = false;
this.selectedRole = [];
},
handleSubmit () {
// 触发表单验证
this.form.validateFields((err, values) => {
if (!err) {
this.confirmLoading = true;
let promiseFn;
let getCheckedData = this.handleSubmitCheckedData(this.receiveDotData)
let formData = Object.assign(values,{type:'1',processNodes: getCheckedData});
if(!!this.model.id){ //编辑
promiseFn = updateCollectionProcess(formData);
}else{
promiseFn = saveCollectionProcess(formData)
}
promiseFn.then((res)=>{
if(res.status.statusCode == 0){
this.$message.success(res.status.statusReason);
this.$emit('ok');
}else{
this.$message.warning(res.status.statusReason);
}
}).finally(() => {
this.confirmLoading = false;
this.close();
this.reset()
});
}
})
},
handleCancel () {
this.close()
this.reset()
},
// 根据屏幕变化,设置抽屉尺寸
resetScreenSize(){
let screenWidth = document.body.clientWidth;
if(screenWidth < 500){
this.drawerWidth = screenWidth;
}else{
this.drawerWidth = 700;
}
},
reset(){
this.receiveDotData = []
this.config.typeTitle = ''
this.config.subTypeTitle = ''
this.showOtherInfo = false
this.receiveDotDataNum = []
this.receiveDotDataName = []
}
}
}
</script>
<style scoped>
.wrapperSlot >>> label {
display: block;
}
.ant-spin-container >>> .ant-timeline-item{
float: left;
width: 20%;
}
.ant-spin-container >>> .ant-timeline-item-tail{
top: 0.25em;
width: 100%;
border-top: 2px solid #e8e8e8;
}
.ant-spin-container >>> .ant-timeline-item-content{
top: 10px;
margin: 3px 0 0 -20px;
}
.drawer-bootom-button {
position: absolute;
bottom: -8px;
width: 100%;
border-top: 1px solid #e8e8e8;
padding: 10px 16px;
text-align: right;
left: 0;
background: #fff;
border-radius: 0 0 2px 2px;
}
</style>