'2.20'
This commit is contained in:
@@ -79,7 +79,7 @@
|
||||
<!-- <el-button size="mini" @click="receivedMediation(scope.row)" type="text" icon="el-icon-edit-outline">被申请人签收</el-button> -->
|
||||
<el-button size="mini" type="text" icon="el-icon-edit"
|
||||
@click="evidenceUpload(scope.row)" v-hasPermi="['caseManagement:list:evidenceEdit']">上传证据</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="caseFilingDetails(scope.row)">归档详情</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseFlowId > 14" @click="caseFilingDetails(scope.row)">归档详情</el-button>
|
||||
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="payStatus(scope.row)">缴费</el-button> -->
|
||||
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="selectMediator(scope.row)">预约时间</el-button> -->
|
||||
<!-- <el-button size="mini" type="text" icon="el-icon-tickets" @click="secretaryConfirm(scope.row)">秘书审核</el-button> -->
|
||||
@@ -113,7 +113,7 @@
|
||||
:queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow" :formPayDetailAffiliate="formPayDetailAffiliate"></payDialog>
|
||||
<!-- 缴费确认查看详情 -->
|
||||
<paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
|
||||
:detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" @getList="getList">
|
||||
:detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" :isapplicant="isapplicant" @getList="getList">
|
||||
</paymentdetailsDialog>
|
||||
<!-- 案件受理 -->
|
||||
<caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
|
||||
@@ -250,7 +250,8 @@ export default {
|
||||
timeConfirmVisable: false,
|
||||
timeConfirmData: {},
|
||||
confirmTionData:{},
|
||||
buttonList: []
|
||||
buttonList: [],
|
||||
isapplicant: true, //判断角色申请人或非申请人
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@@ -269,7 +270,7 @@ export default {
|
||||
this.payStatus(val);
|
||||
}else if(type == 3 || type == 45){
|
||||
// 确认缴费
|
||||
this.paymentconfirmationRow(val);
|
||||
this.paymentconfirmationRow(val,type);
|
||||
}else if(type == 4){
|
||||
// 受理分配
|
||||
this.caseAccep(val);
|
||||
@@ -589,7 +590,7 @@ export default {
|
||||
this.showAcceptance = false
|
||||
},
|
||||
// 缴费确认
|
||||
paymentconfirmationRow(row) {
|
||||
paymentconfirmationRow(row,type) {
|
||||
this.paymentConfirma = row
|
||||
console.log(this.paymentConfirma)
|
||||
this.paymentDetails({
|
||||
@@ -599,6 +600,12 @@ export default {
|
||||
this.payTitle = "缴费确认"
|
||||
this.flag = 0;
|
||||
this.detailform = {}
|
||||
if (type == 3) {
|
||||
// 申请人
|
||||
this.isapplicant = true
|
||||
}else {
|
||||
this.isapplicant = false
|
||||
}
|
||||
},
|
||||
cancelpaymentdetails() {
|
||||
this.openDialog = false
|
||||
|
||||
Reference in New Issue
Block a user