测试修改缴费确认

This commit is contained in:
gyj
2024-01-22 17:55:59 +08:00
parent 52035efd4e
commit d6e21e33b5
3 changed files with 8 additions and 7 deletions
+3 -1
View File
@@ -110,7 +110,7 @@
:queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow"></payDialog> :queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow"></payDialog>
<!-- 缴费确认查看详情 --> <!-- 缴费确认查看详情 -->
<paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle" <paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
:detailform="detailform" :flag="flag" :paymentConfirma="paymentConfirma" @getList="getList"> :detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" @getList="getList">
</paymentdetailsDialog> </paymentdetailsDialog>
<!-- 案件受理 --> <!-- 案件受理 -->
<caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance" <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
@@ -272,8 +272,10 @@ export default {
// 签名 // 签名
}else if(type == 12){ }else if(type == 12){
// 用印申请 // 用印申请
this.consultantApplica(val)
}else if(type == 13){ }else if(type == 13){
// 用印 // 用印
this.departmentApplica(val)
}else if(type == 14){ }else if(type == 14){
// 归档 // 归档
this.caseFiling(val); this.caseFiling(val);
@@ -86,7 +86,7 @@
<el-button <el-button
@click="openArbitrationresults" @click="openArbitrationresults"
type="primary" type="primary"
v-if="this.recordArr.length <= 0" v-if="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'"
>确认会议结果</el-button> >确认会议结果</el-button>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click="cancel" class="endbutton1"> <el-button @click="cancel" class="endbutton1">
@@ -94,7 +94,7 @@
</el-button> </el-button>
<el-button <el-button
@click="submitMediation" @click="submitMediation"
:disabled="this.recordArr.length <= 0" :disabled="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'"
class="endbutton1" class="endbutton1"
> >
<span>提 交</span> <span>提 交</span>
@@ -31,7 +31,7 @@
<script> <script>
import {confirmPaid} from '@/api/caseManagement/caseManagement.js' import {confirmPaid} from '@/api/caseManagement/caseManagement.js'
export default { export default {
props: ["openDialog", "title", "flag", "detailform", "getList","paymentConfirma"], props: ["openDialog", "title", "flag", "detailform", "getList","paymentConfirma","queryParams"],
data() { data() {
return { return {
form: {}, form: {},
@@ -66,11 +66,10 @@ export default {
message: "确认成功", message: "确认成功",
type: "success", type: "success",
}); });
if (res.code == 200) {
this.getList();
}
}); });
this.cancel(); this.cancel();
this.$emit("getList", this.queryParams);
}, },
cancel() { cancel() {
this.$emit("cancelpaymentdetails"); this.$emit("cancelpaymentdetails");