50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<template>
<j-modal
:confirmLoading="confirmLoading"
:title="title"
:width="1200"
:visible="visible"
:maskClosable="false"
switchFullscreen
@ok="handleOk"
:okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
@cancel="handleCancel">
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<!-- 主表单区域 -->
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
<a-row>
<a-col :span="12">
|
9c110e9a
wxy
未检人员列表、详情、新增、编辑
|
18
19
20
21
22
23
24
25
26
27
28
29
|
<a-form-model-item label="户号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="householdNum">
<a-input v-model="model.householdNum" placeholder="请输入户号"></a-input>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="人员编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="number">
<a-input v-model="model.number" placeholder="请输入人员编号"></a-input>
</a-form-model-item>
</a-col>
</a-row>
<a-row>
<a-col :span="12">
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
30
31
32
33
34
35
36
37
38
|
<a-form-model-item label="姓名" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name">
<a-input v-model="model.name" placeholder="请输入姓名"></a-input>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="性别" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="gender">
<j-dict-select-tag v-model="model.gender" dictCode="sex" placeholder="请选择性别" />
</a-form-model-item>
</a-col>
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
39
40
41
42
43
|
<a-col :span="12">
<a-form-model-item label="身份证号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="identity">
<a-input v-model="model.identity" placeholder="请输入身份证号"></a-input>
</a-form-model-item>
</a-col>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
44
|
<a-col :span="12">
|
62156ef2
wxy
数据分析
|
45
46
|
<a-form-model-item label="学校名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="schoolName">
<a-input v-model="model.schoolName" placeholder="请输入学校名称"></a-input>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
47
48
49
|
</a-form-model-item>
</a-col>
<a-col :span="12">
|
62156ef2
wxy
数据分析
|
50
51
|
<a-form-model-item label="入学年份" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="startYear">
<a-input v-model="model.startYear" placeholder="请输入入学年份"></a-input>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
52
53
|
</a-form-model-item>
</a-col>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
54
55
56
57
58
59
|
<a-col :span="12">
<a-form-model-item label="是否失学" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="school">
<j-dict-select-tag v-model="model.school" dictCode="school_status" placeholder="请选择是否失学" />
</a-form-model-item>
</a-col>
<a-col :span="12">
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
60
61
62
63
64
65
66
67
68
|
<a-form-model-item label="监护人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="guardian">
<a-input v-model="model.guardian" placeholder="请输入监护人"></a-input>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="监护人关系" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="relation">
<a-input v-model="model.relation" placeholder="请输入监护人关系"></a-input>
</a-form-model-item>
</a-col>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
69
|
<a-col :span="12">
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
70
71
|
<a-form-model-item label="家庭住址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="address">
<a-textarea v-model="model.address" placeholder="请输入家庭住址" :rows="1"></a-textarea>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
72
73
74
|
</a-form-model-item>
</a-col>
<a-col :span="12">
|
62156ef2
wxy
数据分析
|
75
|
<a-form-model-item label="特殊原因" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="specialReason">
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
76
77
78
79
80
81
|
<a-textarea v-model="model.specialReason" placeholder="请输入特殊原因" :rows="1"></a-textarea>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="重点关注原因" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="reason">
<j-dict-select-tag v-model="model.reason" dictCode="attention_reason" placeholder="请选择重点关注原因" />
|
62156ef2
wxy
数据分析
|
82
83
84
|
</a-form-model-item>
</a-col>
<a-col :span="12">
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
85
|
<a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark">
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
86
|
<a-textarea v-model="model.remark" placeholder="请输入备注" :rows="1"></a-textarea>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
87
88
89
90
91
92
|
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
</j-form-container>
<!-- 子表单区域 -->
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
93
|
<a-tabs activeKey="1" type="card">
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
94
95
|
<a-tab-pane tab="家庭成员" key="1" :forceRender="true">
<j-editable-table
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
96
|
class="main_table"
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
97
98
99
100
|
ref="editableTable"
:loading="familyLoading"
sticky :columns="columns"
:dataSource="dataSource"
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
101
|
:maxHeight="192"
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
102
103
104
|
:rowNumber="true"
:rowSelection="true"
:actionButton="true" />
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
105
|
</a-tab-pane>
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
106
107
108
109
110
111
112
113
114
115
|
</a-tabs>
</a-spin>
</j-modal>
</template>
<script>
import { getAction, httpAction } from '@/api/manage'
import { FormTypes, VALIDATE_NO_PASSED, getRefPromise, validateFormModelAndTables } from '@/utils/JEditableTableUtil'
import JEditableTable from '@/components/jeecg/JEditableTable'
import JDate from '@/components/jeecg/JDate'
|
62156ef2
wxy
数据分析
|
116
|
import { GetAge } from '@/utils/util'
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
117
118
119
120
121
122
123
124
125
126
|
export default {
name: 'MinorModal',
components: {
JEditableTable, JDate
},
data() {
return {
confirmLoading: false,
title: '',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
127
128
129
130
131
|
visible: false,
disableSubmit: false,
model: {},
labelCol: {
xs: { span: 24 },
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
132
|
sm: { span: 5 }
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
133
134
135
|
},
wrapperCol: {
xs: { span: 24 },
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
136
|
sm: { span: 19 }
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
137
138
139
140
141
142
143
144
145
146
|
},
labelCol2: {
xs: { span: 24 },
sm: { span: 3 }
},
wrapperCol2: {
xs: { span: 24 },
sm: { span: 20 }
},
validatorRules: {
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
147
148
149
150
151
152
|
householdNum: [{ required: true, message: '请输入户号' }],
name: [{ required: true, message: '请输入姓名' }],
gender: [{ required: true, message: '请选择性别' }],
identity: [{ required: true, validator: this.validateIdCard }],
relation: [{ required: true, message: '请输入监护人关系' }],
guardian: [{ required: true, message: '请输入监护人' }]
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
153
154
155
156
157
158
159
160
161
162
163
164
165
|
},
url: {
add: '/sys/minor/add',
edit: '/sys/minor/edit',
queryById: '/sys/minor/queryById',
familys: '/sys/minor/queryFamilyByMainId'
},
familyLoading: false,
dataSource: [],
columns: [
{
title: '户号',
key: 'householdNum',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
166
|
width: '230px',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
167
|
type: FormTypes.input,
|
62156ef2
wxy
数据分析
|
168
169
170
171
172
173
174
|
defaultValue: '',
placeholder: '请输入${title}',
validateRules: [{ required: true, message: '${title}不能为空' }]
},
{
title: '人员编号',
key: 'number',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
175
|
width: '230px',
|
62156ef2
wxy
数据分析
|
176
|
type: FormTypes.input,
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
177
178
179
180
181
182
183
|
defaultValue: '',
placeholder: '请输入${title}',
validateRules: [{ required: true, message: '${title}不能为空' }]
},
{
title: '姓名',
key: 'name',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
184
|
width: '100px',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
185
186
187
188
189
190
191
192
|
type: FormTypes.input,
defaultValue: '',
placeholder: '请输入${title}',
validateRules: [{ required: true, message: '${title}不能为空' }]
},
{
title: '身份证号',
key: 'identity',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
193
|
width: '190px',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
194
195
196
197
|
type: FormTypes.input,
defaultValue: '',
placeholder: '请输入${title}',
validateRules: [{
|
62156ef2
wxy
数据分析
|
198
|
// pattern: '/(^[1-9]\\d{5}(18|19|([23]\\d))\\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9Xx]$)|(^[1-9]\\d{7}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{3}$)/',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
199
|
pattern: '^\\d{6}(18|19|20)?\\d{2}(0[1-9]|1[012])(0[1-9]|[12]\\d|3[01])\\d{3}(\\d|[xX])$',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
200
201
202
203
|
message: '${title}格式不正确'
}]
},
{
|
62156ef2
wxy
数据分析
|
204
205
|
title: '与户主的关系',
key: 'relation',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
206
|
width: '120px',
|
62156ef2
wxy
数据分析
|
207
208
209
210
211
212
213
214
215
216
217
218
|
type: FormTypes.input,
defaultValue: '',
placeholder: '请输入${title}',
validateRules: [{ required: true, message: '${title}不能为空' }]
},
{
title: '行政区划',
key: 'division',
width: '180px',
type: FormTypes.input,
defaultValue: '',
placeholder: '请输入${title}',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
219
220
221
|
validateRules: [{ required: true, message: '${title}不能为空' }]
},
{
|
62156ef2
wxy
数据分析
|
222
223
|
title: '现住址',
key: 'address',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
224
|
width: '200px',
|
62156ef2
wxy
数据分析
|
225
226
|
type: FormTypes.input_pop,
defaultValue: '',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
227
|
placeholder: '请输入${title}'
|
62156ef2
wxy
数据分析
|
228
229
|
},
{
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
230
231
|
title: '是否犯罪',
key: 'crime',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
232
|
width: '100px',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
233
234
235
236
237
238
239
240
241
|
type: FormTypes.select,
options: [],
dictCode: 'is_crime',
placeholder: '请选择${title}',
validateRules: [{ required: true, message: '${title}不能为空' }]
},
{
title: '犯罪原因',
key: 'reason',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
242
|
width: '200px',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
243
244
|
type: FormTypes.input_pop,
defaultValue: '',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
245
|
placeholder: '请输入${title}'
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
246
247
248
249
|
},
{
title: '其他参考信息',
key: 'other',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
250
|
width: '200px',
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
251
252
|
type: FormTypes.input_pop,
defaultValue: '',
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
253
|
placeholder: '请输入${title}'
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
}
]
}
},
props: {
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
computed: {
formDisabled() {
return this.disabled
}
},
created() {
//备份model原始值
this.modelDefault = JSON.parse(JSON.stringify(this.model))
},
methods: {
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
276
277
|
getAgeByIdentity(identity) {
return GetAge(identity)
|
62156ef2
wxy
数据分析
|
278
|
},
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
279
|
validateIdCard(rule, value, callback) {
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
280
|
console.log(value)
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
281
282
283
284
285
286
|
if (undefined == value || null == value || '' == value) {
callback('请输入正确的公民身份号码!')
} else if (!value || new RegExp(/(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{7}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}$)/).test(value)) {
callback()
} else {
callback('请输入正确的公民身份号码!')
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
287
288
289
290
291
292
293
294
295
296
|
}
},
// 获取所有的editableTable实例
getAllTable() {
return Promise.all([
getRefPromise(this, 'editableTable')
])
},
add() {
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
297
|
this.dataSource = []
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
298
299
300
301
302
303
304
305
306
307
308
|
// 默认新增一条数据
this.getAllTable().then(editableTables => {
editableTables[0].add()
})
this.edit({})
},
edit(record) {
this.model = Object.assign({}, record)
this.visible = true
// 加载子表数据
|
9c110e9a
wxy
未检人员列表、详情、新增、编辑
|
309
310
|
if (this.model.householdNum) {
let params = { householdNum: this.model.householdNum }
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
311
312
313
314
315
316
317
|
this.requestTableData(this.url.familys, params)
}
},
/** 查询某个tab的数据 */
requestTableData(url, params) {
this.familyLoading = true
getAction(url, params).then(res => {
|
62156ef2
wxy
数据分析
|
318
|
console.log(this.dataSource)
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
319
|
this.dataSource = res.result || []
|
62156ef2
wxy
数据分析
|
320
|
console.log(this.dataSource)
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
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
|
}).finally(() => {
this.familyLoading = false
})
},
handleCancel() {
this.close()
},
close() {
this.visible = false
this.getAllTable().then(editableTables => {
editableTables[0].initialize()
})
this.$emit('close')
this.$refs.form.resetFields()
},
handleOk() {
this.validateFields()
},
/** 触发表单验证 */
validateFields() {
this.getAllTable().then(tables => {
/** 一次性验证主表和所有的次表 */
return validateFormModelAndTables(this.$refs.form, this.model, tables)
}).then(allValues => {
let formData = this.classifyIntoFormData(allValues)
// 发起请求
return this.requestAddOrEdit(formData)
}).catch(e => {
if (e.error === VALIDATE_NO_PASSED) {
// 如果有未通过表单验证的子表,就自动跳转到它所在的tab
this.activeKey = e.index == null ? this.activeKey : (e.index + 1).toString()
} else {
console.error(e)
}
})
},
/** 整理成formData */
classifyIntoFormData(allValues) {
let MinorPage = Object.assign(this.model, allValues.formValue)
return {
...MinorPage, // 展开
familyList: allValues.tablesValue[0].values
}
},
/** 发起新增或修改的请求 */
requestAddOrEdit(formData) {
let url = this.url.add, method = 'post'
if (this.model.id) {
url = this.url.edit
method = 'put'
}
this.confirmLoading = true
httpAction(url, formData, method).then((res) => {
if (res.success) {
this.$message.success(res.message)
this.$emit('ok')
this.close()
} else {
this.$message.warning(res.message)
}
}).finally(() => {
this.confirmLoading = false
})
}
}
}
</script>
<style scoped>
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
390
391
392
393
394
395
396
397
398
|
.ant-form-item {
margin-bottom: 10px;
}
</style>
<style>
.main_table .input-table .thead {
overflow-y: auto;
}
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
399
|
|
106c9657
lifengge
修改未检人员页面,含新增、编辑、查...
|
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
|
.main_table .input-table .thead .tr {
overflow-y: auto;
}
.main_table .input-table .scroll-view {
overflow-y: auto;
scrollbar-width: thin;
}
/* 设置滚动条的样式 */
.main_table .input-table .scroll-view::-webkit-scrollbar {
width: 10px;
height: 10px;
}
/* 滚动槽 */
.main_table .input-table .scroll-view::-webkit-scrollbar-track {
background: #f5f5f5;
}
/* 滚动条滑块 */
.main_table .input-table .scroll-view::-webkit-scrollbar-thumb {
background: #dedede;
-webkit-box-shadow: none;
}
.main_table .ant-row-flex {
margin-top: -55px;
flex-flow: row-reverse;
}
.main_table .ant-row-flex .action-button {
margin-bottom: 20px;
}
|
50565778
wxy
新增未成年人、户籍信息、特殊学校、...
|
434
|
</style>
|