峰峰执法平台简易案件程序板块 pad端
yang
2022-10-17 4107256a8d1fa9a2db0969122bfc760994b12421
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
<template>
    <div class="finalreport-form">
      <basic-container>
        <el-dialog
          title="行政处罚法制审核意见表"
          :close-on-click-modal="false"
          :visible.sync="visible">
          <el-form :model="dataForm" :rules="dataRule" ref="dataForm">
            <el-form-item label="案件" prop="processAjApprovalId">
              <el-select v-model="dataForm.processAjApprovalName" placeholder="请选择" @change="causeChange">
                <el-option
                  v-for="item in processAjApprovalList"
                  :key="item.id"
                  :label="item.processAjCoverName"
                  :value="item">
                </el-option>
              </el-select>
            </el-form-item>
            <table class="examination-table" align="center" border="1" cellpadding="0" cellspacing="0">
              <thead>
              <tr>
                <th colspan="2">案 由</th>
                <td colspan="4">
                  <el-form-item prop="caseReason">
                    <el-input v-model="dataForm.caseReason"></el-input>
                  </el-form-item>
                </td>
                <th colspan="2">案件来源</th>
                <td colspan="3">
                  <el-form-item prop="caseSource">
                    <el-input v-model="dataForm.caseSource"></el-input>
                  </el-form-item>
                </td>
              </tr>
              <tr>
                <th colspan="2">当事人名称/姓名</th>
                <td colspan="4">
                  <el-form-item prop="citizenName">
                    <el-input v-model="dataForm.citizenName"></el-input>
                  </el-form-item>
                </td>
                <th colspan="2">法定代表人(负责人)姓名</th>
                <td colspan="3">
                  <el-form-item prop="legalPerson">
                    <el-input v-model="dataForm.legalPerson"></el-input>
                  </el-form-item>
                </td>
              </tr>
              <tr>
                <th colspan="2">工作单位</th>
                <td colspan="4">
                  <el-form-item prop="unitName">
                    <el-input v-model="dataForm.unitName"></el-input>
                  </el-form-item>
                </td>
                <th colspan="2">联系方式</th>
                <td colspan="3">
                  <el-form-item prop="phone">
                    <el-input v-model="dataForm.phone"></el-input>
                  </el-form-item>
                </td>
              </tr>
              <tr>
                <th colspan="2">地址或住址</th>
                <td colspan="9">
                  <el-form-item prop="address">
                    <el-input v-model="dataForm.address"></el-input>
                  </el-form-item>
                </td>
              </tr>
              <tr>
                <th colspan="2">发案时间</th>
                <td colspan="4">
                  <el-form-item prop="crimeTime">
                    <el-date-picker
                      v-model="dataForm.crimeTime"
                      type="date"
                      placeholder="选择日期时间"
                      align="right"
                      value-format="yyyy-MM-dd"
                    >
                    </el-date-picker>
                  </el-form-item>
                </td>
                <th colspan="2">发案地点</th>
                <td colspan="3">
                  <el-form-item prop="crimeAddress">
                    <el-input v-model="dataForm.crimeAddress"></el-input>
                  </el-form-item>
                </td>
              </tr>
              <tr>
                <th colspan="2">立案时间</th>
                <td colspan="4">
                  <el-form-item prop="recordTime">
                    <el-input v-model="dataForm.recordTime"></el-input>
                  </el-form-item>
                </td>
                <th colspan="2">案件承办人及执法证编号</th>
                <td colspan="3">
                  <el-form-item prop="undertakerCard">
                    <el-input v-model="dataForm.undertakerCard"></el-input>
                  </el-form-item>
                </td>
              <tr>
                <th colspan="2">行政处罚决定书文号</th>
                <td colspan="9">
                  <el-form-item prop="documentNum">
                    <el-input v-model="dataForm.documentNum"></el-input>
                  </el-form-item>
                </td>
              </tr>
              </thead>
              <tbody>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">简要案情及查处经过</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="caseStatement">
                        <el-input v-model="dataForm.caseStatement" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">行政处罚内容</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="penaltyDecision">
                        <el-input v-model="dataForm.penaltyDecision" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">处罚执行方式及罚没财物的处置情况</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="penaltyDecisionCase">
                        <el-input v-model="dataForm.penaltyDecisionCase" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">承办人意见</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="agentIdea">
                        <el-input v-model="dataForm.agentIdea" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">承办单位意见</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="unitIdea">
                        <el-input v-model="dataForm.unitIdea" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">法制部门意见</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="legislationIdea">
                        <el-input v-model="dataForm.legislationIdea" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
                <tr>
                  <th class="yijianbox bezhu" colspan="2">领导审批意见</th>
                  <td class="yijianbox" colspan="9">
                    <div class="shenbian-box bezhutextarea">
                      <el-form-item prop="leaderIdea">
                        <el-input v-model="dataForm.leaderIdea" type="textarea" :autosize="{minRow:2,maxRows:5}"></el-input>
                      </el-form-item>
                    </div>
                  </td>
                </tr>
              </tbody>
            </table>
            <div class="tianbiao-box">
              <el-row>
                <el-col :span="12">
                  <el-form-item label="填表人签名" prop="agentIdeaSign1">
                    <el-input v-model="dataForm.agentIdeaSign1" placeholder="填表人签名"></el-input>
                  </el-form-item>
                </el-col>
                <el-col :span="12">
                  <el-form-item label="执行时间" prop="executionTime">
                    <el-date-picker
                      v-model="dataForm.executionTime"
                      type="date"
                      placeholder="选择日期时间"
                      align="right"
                      value-format="yyyy-MM-dd"
                    >
                    </el-date-picker>
                  </el-form-item>
                </el-col>
              </el-row>
 
            </div>
          </el-form>
          <div class="examinat-submitBtns">
            <el-button @click="visible = false">取消</el-button>
            <el-button type="primary" @click="dataFormSubmit()">确定</el-button>
          </div>
        </el-dialog>
      </basic-container>
    </div>
</template>
 
<script>
    import {getObj, addObj, putObj} from '@/api/finalreport'
    import {findAll} from '@/api/process/processajapproval'
    export default {
        name: "finalreport-form",
        data () {
            return {
                visible: false,
                processAjApprovalList:[],
                dataForm: {
                    processAjCoverName: '',
                    address: '',
                    agentIdea: '',
                    agentIdeaSign1: '',
                    caseReason: '',
                    caseSource: '',
                    caseStatement: '',
                    citizenName: '',
                    crimeAddress: '',
                    crimeTime: '',
                    documentNum: '',
                    executionTime: '',
                    leaderIdea: '',
                    legalPerson: '',
                    legislationIdea: '',
                    penaltyDecision: '',
                    penaltyDecisionCase: '',
                    phone: '',
                    processAjApprovalId: '',
                    recordTime: '',
                    tenantId: '',
                    undertakerCard: '',
                    undertakerName: '',
                    unitIdea: '',
                    unitName: ''
                },
                dataRule: {
                    createBy: [
                        { required: true, message: '不能为空', trigger: 'blur' }
                    ],
                    createTime: [
                        { required: true, message: '不能为空', trigger: 'blur' }
                    ],
                    delFlag: [
                        { required: true, message: '不能为空', trigger: 'blur' }
                    ],
                    updateBy: [
                        { required: true, message: '不能为空', trigger: 'blur' }
                    ],
                    updateTime: [
                        { required: true, message: '不能为空', trigger: 'blur' }
                    ],
                    address: [
                        { required: true, message: '地址不能为空', trigger: 'blur' }
                    ],
                    // agentIdea: [
                    //     { required: true, message: '承 办 人意 见不能为空', trigger: 'blur' }
                    // ],
                    agentIdeaSign1: [
                        { required: true, message: '填表人签名不能为空', trigger: 'blur' }
                    ],
                    caseReason: [
                        { required: true, message: '案由不能为空', trigger: 'blur' }
                    ],
                    caseSource: [
                        { required: true, message: '案件来源不能为空', trigger: 'blur' }
                    ],
                    // caseStatement: [
                    //     { required: true, message: '简要案情及查处经过不能为空', trigger: 'blur' }
                    // ],
                    citizenName: [
                        { required: true, message: '公民姓名不能为空', trigger: 'blur' }
                    ],
                    crimeAddress: [
                        { required: true, message: '发案地址不能为空', trigger: 'blur' }
                    ],
                    crimeTime: [
                        { required: true, message: '发案时间不能为空', trigger: 'blur' }
                    ],
                    // documentNum: [
                    //     { required: true, message: '行政处罚决定书文号不能为空', trigger: 'blur' }
                    // ],
                    executionTime: [
                        { required: true, message: '执行时间不能为空', trigger: 'blur' }
                    ],
                    // leaderIdea: [
                    //     { required: true, message: '领导审批意见不能为空', trigger: 'blur' }
                    // ],
                    legalPerson: [
                        { required: true, message: '法定代表人(负责人)姓名不能为空', trigger: 'blur' }
                    ],
                    // legislationIdea: [
                    //     { required: true, message: '法制审核意见不能为空', trigger: 'blur' }
                    // ],
                    // penaltyDecision: [
                    //     { required: true, message: '行 政 处 罚 内 容不能为空', trigger: 'blur' }
                    // ],
                    // penaltyDecisionCase: [
                    //     { required: true, message: '处罚执行方式及罚没财物的处置情况不能为空', trigger: 'blur' }
                    // ],
                    phone: [
                        { required: true, message: '联系电话不能为空', trigger: 'blur' }
                    ],
                    processAjApprovalId: [
                        { required: true, message: '立案审批表id不能为空', trigger: 'blur' }
                    ],
                    recordTime: [
                        { required: true, message: '立案时间不能为空', trigger: 'blur' }
                    ],
                    tenantId: [
                        { required: true, message: '租户id不能为空', trigger: 'blur' }
                    ],
                    // undertakerCard: [
                    //     { required: true, message: '案件承办人执法证编号不能为空', trigger: 'blur' }
                    // ],
                    undertakerName: [
                        { required: true, message: '案件承办人姓名不能为空', trigger: 'blur' }
                    ],
                    // unitIdea: [
                    //     { required: true, message: '承办单位意见不能为空', trigger: 'blur' }
                    // ],
                    unitName: [
                        { required: true, message: '单位名称不能为空', trigger: 'blur' }
                    ]
                }
            }
        },
        methods: {
            init (id) {
                this.dataForm.id = id || 0
                this.visible = true
                this.$nextTick(() => {
                    this.$refs['dataForm'].resetFields()
                    if (this.dataForm.id) {
                        getObj(this.dataForm.id).then(response => {
                            this.dataForm = response.data.data
                        })
                    }
                })
                //获取所有案件
                this.findAllProcessAj();
            },
 
            //查询所有案件
            findAllProcessAj(){
                findAll().then(res => {
                    console.log(res.data.data)
                    this.processAjApprovalList = res.data.data
                });
            },
 
 
            //选择案件改变
            causeChange(item) {
                console.log(item);
                this.dataForm.processAjApprovalId = item.id
                this.dataForm.processAjApprovalName = item.processAjCoverName
                this.dataForm.caseReason = item.caseReason
                this.dataForm.caseSource = item.caseSource
                this.dataForm.citizenName = item.citizenName
                this.dataForm.address = item.citizenUnitoraddr
                this.dataForm.phone = item.citizenIdcard
                this.dataForm.caseStatement = item.caseStatement
                this.dataForm.recordTime = item.agentIdeaTime
            },
 
 
 
 
            // 表单提交
            dataFormSubmit () {
                this.$refs['dataForm'].validate((valid) => {
                    if (valid) {
                        if (this.dataForm.id) {
                            putObj(this.dataForm).then(data => {
                                this.$message.success('修改成功')
                                this.visible = false
                                this.$emit('refreshDataList')
                            });
                        } else {
                            addObj(this.dataForm).then(data => {
                                this.$message.success('添加成功')
                                this.visible = false
                                this.$emit('refreshDataList')
                            })
                        }
                    }
                })
            }
        }
    }
</script>
 
<style>
  .finalreport-form .el-dialog__header{
    text-align: center;
    font-weight: 700;
  }
  .examination-table .el-textarea__inner,.examination-table .el-input__inner {
    background-color: transparent;
    border: none;
  }
  .examination-table .el-form-item{
    height: 90%;
  }
  .examination-table .el-form-item__content,.examination-table .el-textarea{
    height: 100%;
  }
  .chooseadmpenBox .el-form-item{
    margin-bottom: 0;
  }
  .examinat-box .el-form-item{
    width: 100%;
  }
  .shenbian-box .el-textarea__inner{
    height: 100% !important;
  }
  .tianbiao-box .el-input{
    width: auto;
  }
</style>
<style scoped>
  .examination-table {
    table-layout: fixed;
    width: 90%;
    margin: 0 auto;
    min-width: 600px;
  }
  .shulie-font{
    width: 24px;
  }
  .leftTh{
    width: 70px;
  }
  .rightTh{
    width: 88px;
  }
  .yijianbox {
    height: 160px;
  }
  .bezhutextarea{
    height: 90%;
  }
  .chengbanyijian {
    position: relative;
  }
  .chooseadmpenBox {
    height: 50px;
    padding-left: 10px;
  }
  .examinat-box {
    position: absolute;
    bottom: 0px;
    left: 20px;
    height: 100%;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
  }
  .qianming-box-inside{
    display: flex;
    height: 25%;
  }
  .qianming-box-main {
    display: flex;
    align-items: center;
    width: 50%;
  }
  .qianming-box-main2{
    display: flex;
    align-items: center;
    width: 50%;
    height: 50%;
  }
  .chengbanDate {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
  }
  .qianming-main-inside2 {
    display: flex;
    height: 40%;
  }
  .examinat-submitBtns{
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }
  .examinationpenaltCloumn{
    flex-direction: column;
    display: flex;
    height: 50%;
  }
  .examinationFlex{
    display: flex;
    height: 50%;
  }
  .tianbiao-box{
    width: 90%;
    margin:20px auto 0;
  }
</style>