案件新增,多人多机构
This commit is contained in:
@@ -8,11 +8,11 @@
|
||||
@close="cancel"
|
||||
:destroy-on-close="true"
|
||||
>
|
||||
<div v-show="choosetrialmethodata.arbitraMethodIssame!=2">
|
||||
<div v-show="formData.arbitraMethodIssame!=2">
|
||||
<el-descriptions>
|
||||
<el-descriptions-item label="当前仲裁方式:">
|
||||
<el-tag size="small">{{
|
||||
choosetrialmethodata.arbitratMethodName
|
||||
formData.arbitratMethodName
|
||||
}}</el-tag>
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
@@ -41,8 +41,8 @@
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div v-show="choosetrialmethodata.arbitraMethodIssame==2">
|
||||
<div>{{choosetrialmethodata.arbitratMethodIllustrate}}</div>
|
||||
<div v-show="formData.arbitraMethodIssame==2">
|
||||
<div>{{formData.arbitratMethodIllustrate}}</div>
|
||||
<el-form :model="form" :rules="rules" ref="form">
|
||||
<el-form-item label="选择开庭方式" prop="arbitratMethod">
|
||||
<el-radio-group v-model="form.arbitratMethod">
|
||||
@@ -62,6 +62,7 @@
|
||||
|
||||
<script>
|
||||
import { arbitrateMethod } from "@/api/caseManagement/caseManagement.js";
|
||||
import { selectCaseApply } from "@/api/caseAccess/caseEntry";
|
||||
export default {
|
||||
name: "showchoosetrialmethodDialog",
|
||||
props: ["showchoosetrialmethod", "choosetrialmethodata", "queryParams"],
|
||||
@@ -73,9 +74,24 @@ export default {
|
||||
arbitratMethod: [
|
||||
{ required: true, message: '请选择开庭方式', trigger: 'change' }
|
||||
]
|
||||
}
|
||||
},
|
||||
formData:{}
|
||||
};
|
||||
},
|
||||
watch:{
|
||||
showchoosetrialmethod(val){
|
||||
if(val){
|
||||
let params = {
|
||||
id: this.choosetrialmethodata.id,
|
||||
version: this.choosetrialmethodata.version
|
||||
}
|
||||
selectCaseApply(params).then(res=>{
|
||||
console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||
this.formData = res.data;
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 审核仲裁方式 arbitrateMethod
|
||||
submitForm(val) {
|
||||
@@ -83,8 +99,8 @@ export default {
|
||||
opinion: val
|
||||
};
|
||||
let id = {
|
||||
id: this.choosetrialmethodata.id,
|
||||
arbitratMethod:this.choosetrialmethodata.arbitratMethod
|
||||
id: this.formData.id,
|
||||
arbitratMethod:this.formData.arbitratMethod
|
||||
};
|
||||
arbitrateMethod(paramsdata,id)
|
||||
.then((res) => {
|
||||
|
||||
Reference in New Issue
Block a user