|
|
@@ -14,8 +14,15 @@
|
|
14
|
14
|
<el-form-item label="缴费金额:" prop="feePayable">
|
|
15
|
15
|
<el-input v-model="form.feePayable" />
|
|
16
|
16
|
</el-form-item>
|
|
17
|
|
- <el-form-item label="缴费凭证:" prop="caseStatusName">
|
|
18
|
|
- <div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index" @click="preview(item.annexPath)">
|
|
|
17
|
+ <el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList.length > 0">
|
|
|
18
|
+ <div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index"
|
|
|
19
|
+ @click="preview(item.annexPath)">
|
|
|
20
|
+ {{ item.annexName }}
|
|
|
21
|
+ </div>
|
|
|
22
|
+ </el-form-item>
|
|
|
23
|
+ <el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList.length > 0">
|
|
|
24
|
+ <div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
|
|
25
|
+ @click="preview(item.annexPath)">
|
|
19
|
26
|
{{ item.annexName }}
|
|
20
|
27
|
</div>
|
|
21
|
28
|
</el-form-item>
|
|
|
@@ -29,9 +36,9 @@
|
|
29
|
36
|
</template>
|
|
30
|
37
|
|
|
31
|
38
|
<script>
|
|
32
|
|
-import {confirmPaid} from '@/api/caseManagement/caseManagement.js'
|
|
|
39
|
+import { confirmPaid } from '@/api/caseManagement/caseManagement.js'
|
|
33
|
40
|
export default {
|
|
34
|
|
- props: ["openDialog", "title", "flag", "detailform", "getList","paymentConfirma","queryParams"],
|
|
|
41
|
+ props: ["openDialog", "title", "flag", "detailform", "getList", "paymentConfirma", "queryParams"],
|
|
35
|
42
|
data() {
|
|
36
|
43
|
return {
|
|
37
|
44
|
form: {},
|
|
|
@@ -42,7 +49,6 @@ export default {
|
|
42
|
49
|
detailform: {
|
|
43
|
50
|
handler(val) {
|
|
44
|
51
|
if (val) {
|
|
45
|
|
- console.log(val,"PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP");
|
|
46
|
52
|
this.form = val;
|
|
47
|
53
|
}
|
|
48
|
54
|
},
|
|
|
@@ -57,20 +63,19 @@ export default {
|
|
57
|
63
|
},
|
|
58
|
64
|
// 确认缴费
|
|
59
|
65
|
submitForm() {
|
|
60
|
|
- let paramsVal = {
|
|
61
|
|
- caseId:this.paymentConfirma.id,
|
|
62
|
|
- batchNumber:"",
|
|
63
|
|
- caseFlowId:this.paymentConfirma.caseFlowId
|
|
64
|
|
- }
|
|
|
66
|
+ let paramsVal = {
|
|
|
67
|
+ caseId: this.paymentConfirma.id,
|
|
|
68
|
+ batchNumber: "",
|
|
|
69
|
+ caseFlowId: this.paymentConfirma.caseFlowId
|
|
|
70
|
+ }
|
|
65
|
71
|
confirmPaid(paramsVal).then((res) => {
|
|
66
|
72
|
this.$message({
|
|
67
|
73
|
message: "确认成功",
|
|
68
|
74
|
type: "success",
|
|
69
|
75
|
});
|
|
70
|
|
-
|
|
|
76
|
+ this.cancel();
|
|
|
77
|
+ this.$emit("getList", this.queryParams);
|
|
71
|
78
|
});
|
|
72
|
|
- this.cancel();
|
|
73
|
|
- this.$emit("getList", this.queryParams);
|
|
74
|
79
|
},
|
|
75
|
80
|
cancel() {
|
|
76
|
81
|
this.$emit("cancelpaymentdetails");
|