批量管理接口联调
This commit is contained in:
@@ -59,25 +59,25 @@
|
||||
<!-- 缴费确认 -->
|
||||
<paymentConfirmation :caseVisablePayment="caseVisablePayment" @cancelCasePayment="cancelCasePayment" :confirmPaymen="confirmPaymen" :queryParams="queryParams" @getList="getList" :totalFeeConfir="totalFeeConfir"></paymentConfirmation>
|
||||
<!-- 组庭审核 -->
|
||||
<courtReview :caseVisableReview="caseVisableReview" @cancelCaseReview="cancelCaseReview"></courtReview>
|
||||
<courtReview :caseVisableReview="caseVisableReview" @cancelCaseReview="cancelCaseReview" :formateCourtData="formateCourtData" :queryParams="queryParams" @getList="getList"></courtReview>
|
||||
<!-- 查看案件列表 -->
|
||||
<!-- <viewingCases :caseVisableViewing="caseVisableViewing" @cancelCaseViewing="cancelCaseViewing"></viewingCases> -->
|
||||
<!-- 组庭确认 -->
|
||||
<courtConfirmation :showcourtReview="showcourtReview" @cancelcourtReview="cancelcourtReview"></courtConfirmation>
|
||||
<courtConfirmation :showcourtReview="showcourtReview" @cancelcourtReview="cancelcourtReview" :courtConfirmationData="courtConfirmationData" :queryParams="queryParams" @getList="getList"></courtConfirmation>
|
||||
<!-- 审核仲裁方式 -->
|
||||
<reviewArbitrationMethod :caseVisableReviewl="caseVisableReviewl" @cancelCaseReviewl="cancelCaseReviewl"></reviewArbitrationMethod>
|
||||
<reviewArbitrationMethod :caseVisableReviewl="caseVisableReviewl" @cancelCaseReviewl="cancelCaseReviewl" :queryParams="queryParams" @getList="getList" :reviewMethod="reviewMethod"></reviewArbitrationMethod>
|
||||
<!-- 签名 -->
|
||||
<batchSignature :caseVisableSignature="caseVisableSignature" @cancelCaseSignature="cancelCaseSignature"></batchSignature>
|
||||
<batchSignature :caseVisableSignature="caseVisableSignature" @cancelCaseSignature="cancelCaseSignature" :queryParams="queryParams" @getList="getList"></batchSignature>
|
||||
<!-- 用印 -->
|
||||
<batchPrinting :caseVisablePrinting="caseVisablePrinting" @cancelCasePrinting="cancelCasePrinting"></batchPrinting>
|
||||
<batchPrinting :caseVisablePrinting="caseVisablePrinting" @cancelCasePrinting="cancelCasePrinting" :queryParams="queryParams" @getList="getList"></batchPrinting>
|
||||
<!-- 立案审查 -->
|
||||
<filingReview :caseVisableReviewF="caseVisableReviewF" @cancelCaseReviewF="cancelCaseReviewF" :filingFeviewbatchNumber="filingFeviewbatchNumber" :queryParams="queryParams" @getList="getList"></filingReview>
|
||||
<!-- 秘书审核仲裁文书 -->
|
||||
<arbitratorsDocuments :caseVisableSecretary="caseVisableSecretary" @cancelCaseSecretary="cancelCaseSecretary"></arbitratorsDocuments>
|
||||
<arbitratorsDocuments :caseVisableSecretary="caseVisableSecretary" @cancelCaseSecretary="cancelCaseSecretary" :queryParams="queryParams" @getList="getList" :secretaryArb="secretaryArb"></arbitratorsDocuments>
|
||||
<!-- 仲裁员审核仲裁文书 -->
|
||||
<arbitratorsvVerify :caseVisablearBitration="caseVisablearBitration" @cancelCaseBitration="cancelCaseBitration"></arbitratorsvVerify>
|
||||
<arbitratorsvVerify :caseVisablearBitration="caseVisablearBitration" @cancelCaseBitration="cancelCaseBitration" :queryParams="queryParams" @getList="getList" :arbitratorDeter="arbitratorDeter"></arbitratorsvVerify>
|
||||
<!-- 部门长审核仲裁文书 -->
|
||||
<departmentReviews :caseVisablearHead="caseVisablearHead" @cancelCaseHead="cancelCaseHead"></departmentReviews>
|
||||
<departmentReviews :caseVisablearHead="caseVisablearHead" @cancelCaseHead="cancelCaseHead" :queryParams="queryParams" @getList="getList" :departmentDoc="departmentDoc"></departmentReviews>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -127,6 +127,12 @@ export default {
|
||||
confirmPaymen:{},//批量确认缴费
|
||||
totalFees:{},//缴费总金额
|
||||
totalFeeConfir:{},//确认缴费总金额
|
||||
formateCourtData:{},//组庭审核
|
||||
courtConfirmationData:{},//组庭确认
|
||||
secretaryArb:{},//秘书确认
|
||||
arbitratorDeter:{},//仲裁员确认
|
||||
departmentDoc:{}, //部门长确认
|
||||
reviewMethod:{},//仲裁员审核仲裁方式
|
||||
caseVisablePay: false,//批量缴费弹窗
|
||||
caseVisablePayment:false,//批量缴费确认
|
||||
caseVisableReview:false,//批量组庭审核
|
||||
@@ -215,7 +221,8 @@ export default {
|
||||
this.caseVisablePayment = false
|
||||
},
|
||||
// 批量组庭审核
|
||||
courtReviews(){
|
||||
courtReviews(row){
|
||||
this.formateCourtData = row;
|
||||
this.caseVisableReview = true
|
||||
},
|
||||
cancelCaseReview(){
|
||||
@@ -229,14 +236,18 @@ export default {
|
||||
}
|
||||
},
|
||||
// 批量组庭确认
|
||||
courtConfirmations(){
|
||||
courtConfirmations(row){
|
||||
this.courtConfirmationData = row
|
||||
console.log(row)
|
||||
this.showcourtReview = true
|
||||
},
|
||||
cancelcourtReview(){
|
||||
this.showcourtReview = false
|
||||
},
|
||||
// 批量审核仲裁方式
|
||||
reviewArbitrations(){
|
||||
reviewArbitrations(row){
|
||||
console.log(row)
|
||||
this.reviewMethod = row
|
||||
this.caseVisableReviewl = true
|
||||
},
|
||||
cancelCaseReviewl(){
|
||||
@@ -289,21 +300,24 @@ export default {
|
||||
})
|
||||
},
|
||||
// 秘书审核仲裁文书
|
||||
secretaryArbitration(){
|
||||
secretaryArbitration(row){
|
||||
this.secretaryArb = row
|
||||
this.caseVisableSecretary = true
|
||||
},
|
||||
cancelCaseSecretary(){
|
||||
this.caseVisableSecretary = false
|
||||
},
|
||||
// 仲裁员审核文书
|
||||
arbitratorsVerify(){
|
||||
arbitratorsVerify(row){
|
||||
this.arbitratorDeter = row
|
||||
this.caseVisablearBitration = true
|
||||
},
|
||||
cancelCaseBitration(){
|
||||
this.caseVisablearBitration = false
|
||||
},
|
||||
// 部门长审核仲裁文书
|
||||
departmentDocuments(){
|
||||
departmentDocuments(row){
|
||||
this.departmentDoc =row
|
||||
this.caseVisablearHead = true
|
||||
},
|
||||
cancelCaseHead(){
|
||||
|
||||
Reference in New Issue
Block a user