diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 430fec2..ff7231e 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -49,8 +49,8 @@ 案件压缩包导入 - 案件批量导入 + 案件批量提交
- + - + + - - + + +
+
+ + {{choosetrialmethodata.arbitratMethodIllustrate}} + + + + + 书面审理 + 开庭审理 + + + + 确定 + 取消 + + +
@@ -49,16 +68,24 @@ export default { name: "showchoosetrialmethodDialog", props: ["showchoosetrialmethod", "choosetrialmethodata", "queryParams"], data() { - return {}; + return { + form:{}, + rules:{ + arbitratMethod: [ + { required: true, message: '请选择开庭方式', trigger: 'change' } + ] + } + }; }, methods: { // 审核仲裁方式 arbitrateMethod submitForm(val) { let paramsdata = { - opinion: val, + opinion: val }; let id = { id: this.choosetrialmethodata.id, + arbitratMethod:this.choosetrialmethodata.arbitratMethod }; arbitrateMethod(paramsdata,id) .then((res) => { @@ -68,6 +95,28 @@ export default { }) .catch((err) => {}); }, + determine(val){ + this.$refs["form"].validate((valid) => { + if (valid) { + let paramsdata = { + opinion: val, + arbitratMethod:this.form.arbitratMethod + }; + let id = { + id: this.choosetrialmethodata.id, + }; + arbitrateMethod(paramsdata,id) + .then((res) => { + this.$modal.msgSuccess("提交成功"); + this.cancel(); + this.$emit("getcaseApply", this.queryParams); + }) + .catch((err) => {}); + } else { + return false; + } + }); + }, cancel() { this.$emit("cancelshowchoosetrialMethod"); }, diff --git a/src/views/caseManagement/components/payDialog.vue b/src/views/caseManagement/components/payDialog.vue index a41abbc..793c05f 100644 --- a/src/views/caseManagement/components/payDialog.vue +++ b/src/views/caseManagement/components/payDialog.vue @@ -26,9 +26,9 @@ - {{ +