调解结果开发 #34
@@ -507,7 +507,7 @@ export default {
|
||||
addVisable(val) {
|
||||
if (val) {
|
||||
this.activeName = "first";
|
||||
this.getTemplateFn()
|
||||
this.getTemplateFn();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
@@ -14,8 +14,15 @@
|
||||
<el-form-item label="缴费金额:" prop="feePayable">
|
||||
<el-input v-model="form.feePayable" />
|
||||
</el-form-item>
|
||||
<el-form-item label="缴费凭证:" prop="caseStatusName">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index" @click="preview(item.annexPath)">
|
||||
<el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList.length > 0">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index"
|
||||
@click="preview(item.annexPath)">
|
||||
{{ item.annexName }}
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList.length > 0">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
||||
@click="preview(item.annexPath)">
|
||||
{{ item.annexName }}
|
||||
</div>
|
||||
</el-form-item>
|
||||
@@ -29,9 +36,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {confirmPaid} from '@/api/caseManagement/caseManagement.js'
|
||||
import { confirmPaid } from '@/api/caseManagement/caseManagement.js'
|
||||
export default {
|
||||
props: ["openDialog", "title", "flag", "detailform", "getList","paymentConfirma","queryParams"],
|
||||
props: ["openDialog", "title", "flag", "detailform", "getList", "paymentConfirma", "queryParams"],
|
||||
data() {
|
||||
return {
|
||||
form: {},
|
||||
@@ -42,7 +49,6 @@ export default {
|
||||
detailform: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
console.log(val,"PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||
this.form = val;
|
||||
}
|
||||
},
|
||||
@@ -57,20 +63,19 @@ export default {
|
||||
},
|
||||
// 确认缴费
|
||||
submitForm() {
|
||||
let paramsVal = {
|
||||
caseId:this.paymentConfirma.id,
|
||||
batchNumber:"",
|
||||
caseFlowId:this.paymentConfirma.caseFlowId
|
||||
}
|
||||
let paramsVal = {
|
||||
caseId: this.paymentConfirma.id,
|
||||
batchNumber: "",
|
||||
caseFlowId: this.paymentConfirma.caseFlowId
|
||||
}
|
||||
confirmPaid(paramsVal).then((res) => {
|
||||
this.$message({
|
||||
message: "确认成功",
|
||||
type: "success",
|
||||
});
|
||||
|
||||
this.cancel();
|
||||
this.$emit("getList", this.queryParams);
|
||||
});
|
||||
this.cancel();
|
||||
this.$emit("getList", this.queryParams);
|
||||
},
|
||||
cancel() {
|
||||
this.$emit("cancelpaymentdetails");
|
||||
|
||||
Reference in New Issue
Block a user