Selaa lähdekoodia

申请人和被申请人是否书面审理,申请人缺席后按钮置灰,点击不用调用接口

gyj 2 vuotta sitten
vanhempi
commit
b30d79a516

+ 1
- 0
src/views/caseManagement/caseList.vue Näytä tiedosto

821
         // console.log(this.caseAttachList,"caseAttachList")
821
         // console.log(this.caseAttachList,"caseAttachList")
822
         this.form.requestRule = res.data.requestRule;
822
         this.form.requestRule = res.data.requestRule;
823
         this.form.properPreser = res.data.properPreser;
823
         this.form.properPreser = res.data.properPreser;
824
+        this.form.applicantIsWrittenHear = 1
824
       });
825
       });
825
     },
826
     },
826
     // 删除
827
     // 删除

+ 15
- 2
src/views/caseManagement/components/caseentryDialog.vue Näytä tiedosto

72
                 :autosize="{ minRows: 4, maxRows: 8 }" />
72
                 :autosize="{ minRows: 4, maxRows: 8 }" />
73
             </el-form-item>
73
             </el-form-item>
74
           </el-col>
74
           </el-col>
75
-          <el-col :span="12">
75
+          <el-col :span="24">
76
             <el-form-item label="是否财产保全申请:" prop="properPreser">
76
             <el-form-item label="是否财产保全申请:" prop="properPreser">
77
               <el-radio-group v-model="formData.properPreser">
77
               <el-radio-group v-model="formData.properPreser">
78
                 <el-radio :label="1">是</el-radio>
78
                 <el-radio :label="1">是</el-radio>
79
                 <el-radio :label="0">否</el-radio>
79
                 <el-radio :label="0">否</el-radio>
80
               </el-radio-group>
80
               </el-radio-group>
81
             </el-form-item>
81
             </el-form-item>
82
+          </el-col>
83
+           <el-col :span="24"  v-if="flag == '1'">
84
+            <el-form-item label="是否书面审理" prop="applicantIsWrittenHear">
85
+              <el-radio-group v-model="formData.applicantIsWrittenHear">
86
+                <el-radio :label="1">是</el-radio>
87
+                <el-radio :label="0">否</el-radio>
88
+              </el-radio-group>
89
+            </el-form-item>
82
           </el-col>
90
           </el-col>
83
           <!-- 应缴费用 -->
91
           <!-- 应缴费用 -->
84
           <el-col :span="12" v-if="flag == 0">
92
           <el-col :span="12" v-if="flag == 0">
500
                 {
508
                 {
501
                   required: true,
509
                   required: true,
502
                   message: '请选择性别'
510
                   message: '请选择性别'
511
+                  
503
                 },
512
                 },
504
               ]">
513
               ]">
505
                 <el-radio-group v-model="itm.responSex">
514
                 <el-radio-group v-model="itm.responSex">
664
       activeName: 'first',
673
       activeName: 'first',
665
       fileURL: window.location.origin + "/API",
674
       fileURL: window.location.origin + "/API",
666
       formData: this.form,
675
       formData: this.form,
676
+      // formData:{
677
+      //   applicantIsWrittenHear:1
678
+      // },
667
       filedata: {
679
       filedata: {
668
         annexType: 2,
680
         annexType: 2,
669
       },
681
       },
811
           {
823
           {
812
             required: true,
824
             required: true,
813
           },
825
           },
814
-        ],
826
+        ]
827
+       
815
       },
828
       },
816
       // annexId: '',
829
       // annexId: '',
817
       caseAttachListArr: [],
830
       caseAttachListArr: [],

+ 2
- 1
src/views/caseManagement/components/trialincourtDialog.vue Näytä tiedosto

150
       </div>
150
       </div>
151
       
151
       
152
       <div slot="footer" class="dialog-footer">
152
       <div slot="footer" class="dialog-footer">
153
-        <el-button class="endbutton" :disabled="showsubmit && recordArr.length == 0" @click="submitResults">提交</el-button>
153
+        <el-button class="endbutton" :disabled="(showsubmit && recordArr.length == 0) || form2.isAbsence==1" @click="submitResults">提交</el-button>
154
         <el-button @click="cancel" class="endbutton1"><span>关 闭</span></el-button>
154
         <el-button @click="cancel" class="endbutton1"><span>关 闭</span></el-button>
155
       </div>
155
       </div>
156
     </el-dialog>
156
     </el-dialog>
490
               this.$modal.msgSuccess("提交成功");
490
               this.$modal.msgSuccess("提交成功");
491
               this.showsubmit = false;
491
               this.showsubmit = false;
492
               this.closeArbitrationresults();
492
               this.closeArbitrationresults();
493
+              console.log(this.form2)
493
               this.form2.respondentOpinion ="";
494
               this.form2.respondentOpinion ="";
494
               this.form2.applicantOpinion = "";
495
               this.form2.applicantOpinion = "";
495
               
496