批量页面开发,接口联调
This commit is contained in:
@@ -40,14 +40,14 @@
|
||||
<el-button size="mini" type="text" @click="courtConfirmations(scope.row)">组庭确认</el-button>
|
||||
<el-button size="mini" type="text" @click="reviewArbitrations(scope.row)">审核仲裁方式</el-button>
|
||||
<el-button size="mini" type="text" @click="batchWrittenReview(scope.row)">书面审理</el-button>
|
||||
<el-button size="mini" type="text">仲裁员审核仲裁文书</el-button>
|
||||
<el-button size="mini" type="text">核验仲裁文书</el-button>
|
||||
<el-button size="mini" type="text" @click="secretaryArbitration(scope.row)">秘书审核仲裁文书</el-button>
|
||||
<el-button size="mini" type="text" @click="arbitratorsVerify(scope.row)">仲裁员核验仲裁文书</el-button>
|
||||
<el-button size="mini" type="text">部门长审核仲裁文书</el-button>
|
||||
<el-button size="mini" type="text" @click="batchSignatures(scope.row)">签名</el-button>
|
||||
<el-button size="mini" type="text" @click="batchPrintings(scope.row)">用印</el-button>
|
||||
<el-button size="mini" type="text">生成裁决书</el-button>
|
||||
<el-button size="mini" type="text" @click="arbitrationAward(scope.row)">生成裁决书</el-button>
|
||||
<el-button size="mini" type="text" @click="servicearBitration(scope.row)">仲裁文书送达</el-button>
|
||||
<el-button size="mini" type="text" @click="archive(scope.row)">归档</el-button>
|
||||
<el-button size="mini" type="text">仲裁文书送达</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -55,7 +55,7 @@
|
||||
@pagination="getList(queryParams)"
|
||||
/>
|
||||
<!-- 缴费 -->
|
||||
<batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay"></batchPayment>
|
||||
<batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay" :batchPaymentValue="batchPaymentValue"></batchPayment>
|
||||
<!-- 缴费确认 -->
|
||||
<paymentConfirmation :caseVisablePayment="caseVisablePayment" @cancelCasePayment="cancelCasePayment"></paymentConfirmation>
|
||||
<!-- 组庭审核 -->
|
||||
@@ -70,14 +70,16 @@
|
||||
<batchSignature :caseVisableSignature="caseVisableSignature" @cancelCaseSignature="cancelCaseSignature"></batchSignature>
|
||||
<!-- 用印 -->
|
||||
<batchPrinting :caseVisablePrinting="caseVisablePrinting" @cancelCasePrinting="cancelCasePrinting"></batchPrinting>
|
||||
|
||||
|
||||
|
||||
<!-- 立案审查 -->
|
||||
<filingReview :caseVisableReviewF="caseVisableReviewF" @cancelCaseReviewF="cancelCaseReviewF" :filingFeviewbatchNumber="filingFeviewbatchNumber" :queryParams="queryParams" @getList="getList"></filingReview>
|
||||
<!-- 秘书审核仲裁文书 -->
|
||||
<arbitratorsDocuments :caseVisableSecretary="caseVisableSecretary" @cancelCaseSecretary="cancelCaseSecretary"></arbitratorsDocuments>
|
||||
<!-- 仲裁员审核仲裁文书 -->
|
||||
<arbitratorsvVerify :caseVisablearBitration="caseVisablearBitration" @cancelCaseBitration="cancelCaseBitration"></arbitratorsvVerify>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {caseNumRuleList,deleteCaseNumRule} from '@/api/officialSeal/officialSeal.js'
|
||||
import {listBatch,submitCaseApplicationBatch} from '@/api/batchManagement/batchManagement.js'
|
||||
import batchPayment from './components/batchPayment.vue'
|
||||
import paymentConfirmation from './components/paymentConfirmation.vue'
|
||||
@@ -87,6 +89,9 @@ import courtConfirmation from './components/courtConfirmation.vue'
|
||||
import reviewArbitrationMethod from './components/reviewArbitrationMethod.vue'
|
||||
import batchSignature from './components/batchSignature.vue'
|
||||
import batchPrinting from './components/batchPrinting.vue'
|
||||
import filingReview from './components/filingReview.vue'
|
||||
import arbitratorsDocuments from './components/arbitratorsDocuments.vue'
|
||||
import arbitratorsvVerify from './components/arbitratorsvVerify.vue'
|
||||
export default {
|
||||
components: {
|
||||
batchPayment,
|
||||
@@ -96,7 +101,10 @@ export default {
|
||||
courtConfirmation,
|
||||
reviewArbitrationMethod,
|
||||
batchSignature,
|
||||
batchPrinting
|
||||
batchPrinting,
|
||||
filingReview,
|
||||
arbitratorsDocuments,
|
||||
arbitratorsvVerify
|
||||
|
||||
},
|
||||
data() {
|
||||
@@ -109,6 +117,8 @@ export default {
|
||||
loading: false,
|
||||
// 总条数
|
||||
total: 0,
|
||||
filingFeviewbatchNumber:'',
|
||||
batchPaymentValue:{},
|
||||
caseVisablePay: false,//批量缴费弹窗
|
||||
caseVisablePayment:false,//批量缴费确认
|
||||
caseVisableReview:false,//批量组庭审核
|
||||
@@ -117,6 +127,9 @@ export default {
|
||||
caseVisableReviewl:false,//批量审核仲裁方式
|
||||
caseVisableSignature:false,//批量签名
|
||||
caseVisablePrinting:false,//批量用印
|
||||
caseVisableReviewF:false, //批量立案审查
|
||||
caseVisableSecretary:false,//秘书审核文书
|
||||
caseVisablearBitration:false,//仲裁员核查文书
|
||||
dataList: [],
|
||||
editData:{}
|
||||
};
|
||||
@@ -161,15 +174,17 @@ export default {
|
||||
})
|
||||
},
|
||||
// 批量立案审查
|
||||
filingFeview(){
|
||||
this.$modal.confirm("你确定要批量立案审查吗?").then((res) => {
|
||||
// this.deleteSealFn({ id: row.id })
|
||||
}).catch(() =>{
|
||||
|
||||
})
|
||||
filingFeview(row){
|
||||
this.filingFeviewbatchNumber = row.batchNumber
|
||||
this.caseVisableReviewF = true
|
||||
},
|
||||
cancelCaseReviewF(){
|
||||
this.caseVisableReviewF = false
|
||||
},
|
||||
// 批量缴费
|
||||
batchPayments(){
|
||||
batchPayments(row){
|
||||
this.batchPaymentValue = row
|
||||
console.log(row)
|
||||
this.caseVisablePay = true
|
||||
},
|
||||
cancelCasePay(){
|
||||
@@ -239,7 +254,38 @@ export default {
|
||||
},
|
||||
cancelCasePrinting(){
|
||||
this.caseVisablePrinting = false
|
||||
},
|
||||
// 生成裁决书
|
||||
arbitrationAward(){
|
||||
this.$modal.confirm("你确定要批量生成裁决书吗?").then((res) => {
|
||||
// this.deleteSealFn({ id: row.id })
|
||||
}).catch(() =>{
|
||||
|
||||
})
|
||||
},
|
||||
//仲裁文书送达
|
||||
servicearBitration(){
|
||||
this.$modal.confirm("你确定要批量仲裁文书批量送达吗?").then((res) => {
|
||||
// this.deleteSealFn({ id: row.id })
|
||||
}).catch(() =>{
|
||||
|
||||
})
|
||||
},
|
||||
// 秘书审核仲裁文书
|
||||
secretaryArbitration(){
|
||||
this.caseVisableSecretary = true
|
||||
},
|
||||
cancelCaseSecretary(){
|
||||
this.caseVisableSecretary = false
|
||||
},
|
||||
// 仲裁员审核文书
|
||||
arbitratorsVerify(){
|
||||
this.caseVisablearBitration = true
|
||||
},
|
||||
cancelCaseBitration(){
|
||||
this.caseVisablearBitration = false
|
||||
}
|
||||
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user