Blame view

juvenile-prosecution-vue/src/views/business/modules/MinorModal.vue 13 KB
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
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
  <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">
                <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>
            </a-row>
            <a-row>
              <a-col :span="12">
62156ef2   wxy   数据分析
30
31
                <a-form-model-item label="学校名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="schoolName">
                  <a-input v-model="model.schoolName" placeholder="请输入学校名称"></a-input>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
32
33
34
                </a-form-model-item>
              </a-col>
              <a-col :span="12">
62156ef2   wxy   数据分析
35
36
                <a-form-model-item label="入学年份" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="startYear">
                  <a-input v-model="model.startYear" placeholder="请输入入学年份"></a-input>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
37
38
39
40
41
42
43
44
45
46
                </a-form-model-item>
              </a-col>
            </a-row>
            <a-row>
              <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">
62156ef2   wxy   数据分析
47
48
49
50
51
                <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>
              <a-col :span="12">
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
                <a-form-model-item label="家庭住址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="address">
                  <a-textarea v-model="model.address" placeholder="请输入家庭住址" :rows="1" ></a-textarea>
                </a-form-model-item>
              </a-col>
            </a-row>
            <a-row>
              <a-col :span="12">
                <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>
            </a-row>
            <a-row>
              <a-col :span="12">
                <a-form-model-item label="重点关注原因" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="reason">
                  <a-textarea v-model="model.reason" placeholder="请输入重点关注原因"></a-textarea>
                </a-form-model-item>
              </a-col>
              <a-col :span="12">
62156ef2   wxy   数据分析
76
77
78
79
80
                <a-form-model-item label="特殊原因" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="specialReason">
                  <a-textarea v-model="model.specialReason" placeholder="请输入特殊原因"></a-textarea>
                </a-form-model-item>
              </a-col>
              <a-col :span="12">
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
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
                <a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark">
                  <a-textarea v-model="model.remark" placeholder="请输入备注"></a-textarea>
                </a-form-model-item>
              </a-col>
            </a-row>
          </a-form-model>
        </j-form-container>
        <!-- 子表单区域 -->
        <a-tabs activeKey="1" style="margin-top: -20px">
          <a-tab-pane tab="家庭成员" key="1" :forceRender="true">
            <j-editable-table
              ref="editableTable"
              :loading="familyLoading"
              sticky :columns="columns"
              :dataSource="dataSource"
              :maxHeight="190"
              :rowNumber="true"
              :rowSelection="true"
              :actionButton="true" />
  
          </a-tab-pane>
  
        </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   数据分析
113
  import { GetAge } from '@/utils/util'
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
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
  
  export default {
    name: 'MinorModal',
    components: {
      JEditableTable, JDate
    },
    data() {
      return {
        confirmLoading: false,
        title: '',
        width: 800,
        visible: false,
        disableSubmit: false,
        model: {},
        labelCol: {
          xs: { span: 24 },
          sm: { span: 6 }
        },
        wrapperCol: {
          xs: { span: 24 },
          sm: { span: 16 }
        },
        labelCol2: {
          xs: { span: 24 },
          sm: { span: 3 }
        },
        wrapperCol2: {
          xs: { span: 24 },
          sm: { span: 20 }
        },
        validatorRules: {
62156ef2   wxy   数据分析
145
146
          householdNum:[ { required: true, message: '请输入户号' },],
          number:[ { required: true, message: '请输入人员编号' },],
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
          name:[ { required: true, message: '请输入姓名' },],
          gender:[ { required: true, message: '请选择性别' },],
          identity:[  {required: true,validator:this.validateIdCard}],
          relation:[ { required: true, message: '请输入监护人关系' },],
          guardian:[ { required: true, message: '请输入监护人' },],
        },
        url: {
          add: '/sys/minor/add',
          edit: '/sys/minor/edit',
          queryById: '/sys/minor/queryById',
          familys: '/sys/minor/queryFamilyByMainId'
        },
        familyLoading: false,
        dataSource: [],
        columns: [
          {
            title: '户号',
            key: 'householdNum',
            width: '250px',
            type: FormTypes.input,
62156ef2   wxy   数据分析
167
168
169
170
171
172
173
174
175
            defaultValue: '',
            placeholder: '请输入${title}',
            validateRules: [{ required: true, message: '${title}不能为空' }]
          },
          {
            title: '人员编号',
            key: 'number',
            width: '180px',
            type: FormTypes.input,
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
176
177
178
179
180
181
182
183
            defaultValue: '',
            placeholder: '请输入${title}',
            validateRules: [{ required: true, message: '${title}不能为空' }]
          },
          {
            title: '姓名',
            key: 'name',
            width: '180px',
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
184
185
186
187
188
189
190
191
192
193
194
195
196
            type: FormTypes.input,
            defaultValue: '',
            placeholder: '请输入${title}',
            validateRules: [{ required: true, message: '${title}不能为空' }]
          },
          {
            title: '身份证号',
            key: 'identity',
            width: '200px',
            type: FormTypes.input,
            defaultValue: '',
            placeholder: '请输入${title}',
            validateRules: [{
62156ef2   wxy   数据分析
197
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}$)/',
             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   新增未成年人、户籍信息、特殊学校、...
199
200
201
202
              message: '${title}格式不正确'
            }]
          },
          {
62156ef2   wxy   数据分析
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
            title: '与户主的关系',
            key: 'relation',
            width: '180px',
            type: FormTypes.input,
            defaultValue: '',
            placeholder: '请输入${title}',
            validateRules: [{ required: true, message: '${title}不能为空' }]
          },
          {
            title: '行政区划',
            key: 'division',
            width: '180px',
            type: FormTypes.input,
            defaultValue: '',
            placeholder: '请输入${title}',
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
218
219
220
            validateRules: [{ required: true, message: '${title}不能为空' }]
          },
          {
62156ef2   wxy   数据分析
221
222
223
224
225
226
227
228
            title: '现住址',
            key: 'address',
            width: '180px',
            type: FormTypes.input_pop,
            defaultValue: '',
            placeholder: '请输入${title}',
          },
          {
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
            title: '是否犯罪',
            key: 'crime',
            width: '200px',
            type: FormTypes.select,
            options: [],
            dictCode: 'is_crime',
            placeholder: '请选择${title}',
            validateRules: [{ required: true, message: '${title}不能为空' }]
          },
          {
            title: '犯罪原因',
            key: 'reason',
            width: '250px',
            type: FormTypes.input_pop,
            defaultValue: '',
            placeholder: '请输入${title}',
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
245
246
247
248
249
250
251
252
          },
          {
            title: '其他参考信息',
            key: 'other',
            width: '250px',
            type: FormTypes.input_pop,
            defaultValue: '',
            placeholder: '请输入${title}',
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
          }
        ]
      }
    },
    props: {
      //表单禁用
      disabled: {
        type: Boolean,
        default: false,
        required: false
      }
    },
    computed: {
      formDisabled() {
        return this.disabled
      }
    },
    created() {
      //备份model原始值
      this.modelDefault = JSON.parse(JSON.stringify(this.model))
    },
    methods: {
62156ef2   wxy   数据分析
275
276
277
      getAgeByIdentity(identity){
        return GetAge(identity);
      },
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
      validateIdCard(rule,value,callback){
        console.log(value)
        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("请输入正确的公民身份号码!");
        }
      },
      // 获取所有的editableTable实例
      getAllTable() {
        return Promise.all([
          getRefPromise(this, 'editableTable')
        ])
      },
  
      add() {
62156ef2   wxy   数据分析
296
        this.dataSource=[];
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
        // 默认新增一条数据
        this.getAllTable().then(editableTables => {
          editableTables[0].add()
        })
  
        this.edit({})
      },
      edit(record) {
        this.model = Object.assign({}, record)
        this.visible = true
        // 加载子表数据
        if (this.model.id) {
          let params = { id: this.model.id }
          this.requestTableData(this.url.familys, params)
        }
      },
      /** 查询某个tab的数据 */
      requestTableData(url, params) {
        this.familyLoading = true
        getAction(url, params).then(res => {
62156ef2   wxy   数据分析
317
          console.log(this.dataSource)
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
318
          this.dataSource = res.result || []
62156ef2   wxy   数据分析
319
          console.log(this.dataSource)
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
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
        }).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>
  
  </style>