董国庆
2025-04-11 aa6ab634ff987ad35d960efcad6eb0f7c6af6ea7
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
<template>
  <div class="app-container">
    <el-card class="box-card">
      <el-form
        ref="form"
        :model="form"
        :rules="rules"
        label-width="180px"
        size="small"
        :disabled="isViewMode"
      >
        <!-- 基本信息 -->
        <el-row :gutter="24">
          <el-col :span="6">
            <el-form-item label="镇(街道)" prop="street" >
              <!-- <el-input v-model="form.street" placeholder="请输入" clearable style="width: 100%;" /> -->
 
              <el-select
                v-model="form.street"
                placeholder="请选择镇街"
                clearable
                size="small"
              >
                <el-option
                  v-for="item in streetOptions"
                  :key="item.dictCode"
                  :label="item.dictLabel"
                  :value="item.dictLabel"
                />
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="所在村(社区)" prop="community" >
              <el-input
                v-model="form.community"
                placeholder="请输入"
                clearable
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="拆迁项目名称" prop="projectName" >
              <el-input
                v-model="form.projectName"
                placeholder="请输入"
                clearable
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="拆迁时间" prop="demolitionTime">
              <el-date-picker
                v-model="form.demolitionTime"
                type="date"
                placeholder="请选择拆迁时间"
                style="width: 100%"
                value-format="yyyy-MM-dd"
              />
            </el-form-item>
          </el-col>
        </el-row>
 
        <el-row :gutter="24">
          <el-col :span="6">
            <el-form-item label="户主姓名" prop="householdHead" >
              <el-input
                v-model="form.householdHead"
                placeholder="请输入"
                clearable
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="户主身份号" prop="idCard" >
              <el-input
                v-model="form.idCard"
                placeholder="请输入"
                clearable
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="联系电话" prop="mobile" >
              <el-input
                v-model="form.mobile"
                placeholder="请输入"
                clearable
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
        </el-row>
 
        <!-- 本次安置人数 -->
        <div class="section-title">本次安置人数</div>
        <el-row :gutter="24">
          <el-col :span="8">
            <el-form-item
              label="集体经济组织成员"
              prop="currentCollectiveNum"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.currentCollectiveNum"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">人</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="非集体经济组织成员"
              prop="currentNoCollectiveNum"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.currentNoCollectiveNum"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">人</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="合计" prop="currentCount">
              <div class="input-with-unit">
                <el-input
                  v-model="form.currentCount"
                  placeholder="自动计算"
                  disabled
                  style="width: 100%"
                >
                  <template slot="append">人</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
        </el-row>
 
        <el-row :gutter="24">
          <el-col :span="12">
            <el-form-item
              label="待安置家庭成员姓名"
              prop="waitFamilyNames"
              
            >
              <el-input
                v-model="form.waitFamilyNames"
                placeholder="请输入"
                clearable
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
          <el-col :span="12">
            <el-form-item
              label="待安置人员应安置面积合计"
              label-width="215px"
              prop="waitFamilyArea"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.waitFamilyArea"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">㎡</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
        </el-row>
 
        <!-- 补偿金额 -->
        <div class="section-title">补偿金额</div>
        <el-row :gutter="24">
          <el-col :span="8">
            <el-form-item
              label="新建商品住房/商业用房/停车位"
              label-width="215px"
              prop="compensationNewAmount"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.compensationNewAmount"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">万元</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="二手住房"
              label-width="215px"
              prop="compensationOldAmount"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.compensationOldAmount"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">万元</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="合计"
              label-width="215px"
              prop="compensationSum"
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.compensationSum"
                  placeholder="自动计算"
                  disabled
                  style="width: 100%"
                >
                  <template slot="append">万元</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
        </el-row>
 
        <el-row :gutter="24">
          <el-col :span="8">
            <el-form-item
              label="25%首付款"
              label-width="215px"
              prop="downPaymentAmount"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.downPaymentAmount"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">万元</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="每季度需支付款项"
              label-width="215px"
              prop="quarterPayAmount"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.quarterPayAmount"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">万元</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="过渡补贴"
              label-width="215px"
              prop="subsidyAmount"
              
            >
              <div class="input-with-unit">
                <el-input
                  v-model="form.subsidyAmount"
                  placeholder="请输入"
                  clearable
                  style="width: 100%"
                >
                  <template slot="append">万元</template>
                </el-input>
              </div>
            </el-form-item>
          </el-col>
        </el-row>
 
        <el-row>
          <el-col :span="24">
            <el-form-item label="备注" label-width="215px" prop="remark">
              <el-input
                type="textarea"
                v-model="form.remark"
                placeholder="请输入备注信息"
                :rows="3"
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
        </el-row>
 
        <el-row>
          <el-col :span="24">
            <el-form-item
              label="购房差异情况"
              label-width="215px"
              prop="situation"
            >
              <el-input
                type="textarea"
                v-model="form.situation"
                placeholder="请输入购房差异情况说明"
                :rows="3"
                style="width: 100%"
              />
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
      <!-- 按钮区域 -->
      <div class="form-footer">
        <el-button v-if="isAddMode" type="primary" @click="submitForm"
          >提交</el-button
        >
        <el-button v-if="isEditMode" type="primary" @click="submitForm"
          >保存</el-button
        >
        <el-button @click="goBack">返回</el-button>
      </div>
    </el-card>
  </div>
</template>
 
<script>
import { addDetail, getDetail, editDetail,getDictList } from "@/api/application-batch";
export default {
  name: "ApplayPerson",
  data() {
    return {
      form: {
        street: "", // 镇(街道)
        community: "", // 所在村(社区)
        projectName: "", // 拆迁项目名称
        demolitionTime: "", // 拆迁时间
        householdHead: "", // 户主姓名
        idCard: "", // 户主身份号
        mobile: "", // 联系电话
        currentCollectiveNum: "", // 集体经济组织成员
        currentNoCollectiveNum: "", // 非集体经济组织成员
        currentCount: "", // 合计人数
        waitFamilyNames: "", // 待安置家庭成员姓名
        waitFamilyArea: "", // 待安置人员应安置面积合计
        compensationNewAmount: "", // 新建商品住房/商业用房/停车位
        compensationOldAmount: "", // 二手住房
        compensationSum: "", // 合计金额
        downPaymentAmount: "", // 25%首付款
        quarterPayAmount: "", // 每季度需支付款项
        subsidyAmount: "", // 过渡补贴
        remark: "", // 备注
        situation: "", // 购房差异情况
        placementApplyId: this.$route.query.parentId,
      },
      streetOptions:[],
      rules: {
        street: [
          { required: true, message: "请输入镇(街道)", trigger: "blur" },
        ],
        community: [
          { required: true, message: "请输入所在村(社区)", trigger: "blur" },
        ],
        projectName: [
          { required: true, message: "请输入拆迁项目名称", trigger: "blur" },
        ],
        householdHead: [
          { required: true, message: "请输入户主姓名", trigger: "blur" },
        ],
        idCard: [
          { required: true, message: "请输入户主身份号", trigger: "blur" },
          {
            pattern: /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/,
            message: "请输入正确的身份证号",
            trigger: "blur",
          },
        ],
        mobile: [
          { required: true, message: "请输入联系电话", trigger: "blur" },
          {
            pattern: /^1[3-9]\d{9}$/,
            message: "请输入正确的手机号码",
            trigger: "blur",
          },
        ],
        currentCollectiveNum: [
          {
            required: true,
            message: "请输入集体经济组织成员人数",
            trigger: "blur",
          },
          { pattern: /^[0-9]\d*$/, message: "请输入正整数", trigger: "blur" },
        ],
        currentNoCollectiveNum: [
          {
            required: true,
            message: "请输入非集体经济组织成员人数",
            trigger: "blur",
          },
          { pattern: /^[0-9]\d*$/, message: "请输入正整数", trigger: "blur" },
        ],
        waitFamilyNames: [
          {
            required: true,
            message: "请输入待安置家庭成员姓名",
            trigger: "blur",
          },
        ],
        waitFamilyArea: [
          {
            required: true,
            message: "请输入待安置人员应安置面积合计",
            trigger: "blur",
          },
          {
            pattern: /^[0-9]+(\.[0-9]*)?$/,
            message: "请输入数字",
            trigger: "blur",
          },
        ],
        compensationNewAmount: [
          {
            required: true,
            message: "请输入新建商品住房/商业用房/停车位金额",
            trigger: "blur",
          },
          {
            pattern: /^[0-9]+(\.[0-9]*)?$/,
            message: "请输入数字",
            trigger: "blur",
          },
        ],
        compensationOldAmount: [
          { required: true, message: "请输入二手住房金额", trigger: "blur" },
          {
            pattern: /^[0-9]+(\.[0-9]*)?$/,
            message: "请输入数字",
            trigger: "blur",
          },
        ],
        downPaymentAmount: [
          { required: true, message: "请输入25%首付款", trigger: "blur" },
          {
            pattern: /^[0-9]+(\.[0-9]*)?$/,
            message: "请输入数字",
            trigger: "blur",
          },
        ],
        quarterPayAmount: [
          {
            required: true,
            message: "请输入每季度需支付款项金额",
            trigger: "blur",
          },
          {
            pattern: /^[0-9]+(\.[0-9]*)?$/,
            message: "请输入数字",
            trigger: "blur",
          },
        ],
        subsidyAmount: [
          { required: true, message: "请输入过渡补贴", trigger: "blur" },
          {
            pattern: /^[0-9]+(\.[0-9]*)?$/,
            message: "请输入数字",
            trigger: "blur",
          },
        ],
        situation: [
          { required: false, message: "请输入购房差异情况", trigger: "blur" },
        ],
      },
      originalForm: null, // 用于存储编辑前的原始数据
    };
  },
  computed: {
    // 从路由获取参数
    parentId() {
      return this.$route.query.parentId;
    },
    type() {
      return this.$route.query.type || "add";
    },
    id() {
      return this.$route.query.id;
    },
    // 判断是否是查看模式
    isViewMode() {
      return this.type === "detail";
    },
    // 判断是否是编辑模式
    isEditMode() {
      return this.type === "edit";
    },
    // 判断是否是添加模式
    isAddMode() {
      return this.type === "add";
    },
  },
  created() {
    this.initData();
    this.getStreetOptions();
  },
  watch: {
    // 监听集体和非集体成员人数,自动计算总人数
    "form.currentCollectiveNum": {
      handler(val) {
        this.calculateTotalMember();
      },
    },
    "form.currentNoCollectiveNum": {
      handler(val) {
        this.calculateTotalMember();
      },
    },
    // 监听新建和二手房金额,自动计算总金额
    "form.compensationNewAmount": {
      handler(val) {
        this.calculateTotalAmount();
      },
    },
    "form.compensationOldAmount": {
      handler(val) {
        this.calculateTotalAmount();
      },
    },
  },
  methods: {
     /** 获取镇街选项 */
     getStreetOptions() {
      getDictList().then((res) => {
        this.streetOptions = res.data;
      });
    },
    async initData() {
      if (this.id && (this.isEditMode || this.isViewMode)) {
        try {
          const response = await getDetail({ id: this.id });
          if (response.code === 200) {
            this.form = response.data;
            this.originalForm = JSON.parse(JSON.stringify(response.data));
          } else {
            this.$message.error(response.msg || "获取详情数据失败");
          }
        } catch (error) {
          this.$message.error("获取详情数据失败");
          console.error("获取详情数据失败:", error);
        }
      }
    },
    async submitForm() {
      this.$refs.form.validate(async (valid) => {
        if (valid) {
          try {
            const params = {
              ...this.form,
              placementApplyId: this.parentId,
            };
 
            let response;
            if (this.isAddMode) {
              response = await addDetail(params);
              this.$message.success("添加成功");
            } else if (this.isEditMode) {
              response = await editDetail({ ...params, id: this.id });
              this.$message.success("编辑成功");
            }
 
            if (response.code === 200) {
              this.goBack();
            } else {
              this.$message.error(
                response.msg || (this.isAddMode ? "添加失败" : "编辑失败")
              );
            }
          } catch (error) {
            this.$message.error(this.isAddMode ? "添加失败" : "编辑失败");
            console.error("提交表单失败:", error);
          }
        } else {
          this.$message.error("请填写完整信息");
        }
      });
    },
    goBack() {
      this.$router.go(-1);
    },
    // 计算总人数
    calculateTotalMember() {
      const collective = parseFloat(this.form.currentCollectiveNum) || 0;
      const nonCollective = parseFloat(this.form.currentNoCollectiveNum) || 0;
      this.form.currentCount = collective + nonCollective;
    },
    // 计算总金额
    calculateTotalAmount() {
      const newBuilding = parseFloat(this.form.compensationNewAmount) || 0;
      const secondHand = parseFloat(this.form.compensationOldAmount) || 0;
      this.form.compensationSum = newBuilding + secondHand;
    },
  },
};
</script>
 
<style lang="scss" scoped>
.app-container {
  padding: 20px;
  background-color: #f5f7fa;
  min-height: calc(100vh - 84px);
}
 
.box-card {
  margin-bottom: 20px;
  padding: 20px;
 
  :deep(.el-form-item) {
    margin-bottom: 22px;
  }
 
  :deep(.el-input-group__append) {
    padding: 0 15px;
  }
}
 
.section-title {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  margin: 30px 0 20px;
  padding-left: 10px;
  border-left: 4px solid #409eff;
}
 
.input-with-unit {
  width: 100%;
 
  :deep(.el-input-group__append) {
    background-color: #f5f7fa;
    color: #606266;
    border-left: 1px solid #dcdfe6;
  }
}
 
.form-footer {
  text-align: center;
  margin-top: 40px;
 
  .el-button {
    padding: 12px 35px;
    margin: 0 10px;
  }
}
 
:deep(.el-textarea__inner) {
  font-family: Arial, sans-serif;
  padding: 10px 15px;
  line-height: 1.5;
}
 
:deep(.el-date-editor) {
  width: 100% !important;
}
</style>