diff --git a/src/api/reimbursementBatch.js b/src/api/reimbursementBatch.js
new file mode 100644
index 00000000..8c3083c5
--- /dev/null
+++ b/src/api/reimbursementBatch.js
@@ -0,0 +1,29 @@
+import request from '@/utils/http'
+
+//待报销列表
+export function waitReimburseList(data) {
+ return request({
+ url: '/driverApp/reimburse/waitReimburseList',
+ method:'POST',
+ contentType: 'application/json',
+ data
+ })
+}
+// 提交报销批次
+export function submitReimburseBatch(data) {
+ return request({
+ url: '/driverApp/reimburse/submitReimburseBatch',
+ method:'POST',
+ contentType: 'application/json',
+ data
+ })
+}
+// 已报销/报销失败列表
+export function reimbursedList(data) {
+ return request({
+ url: '/driverApp/reimburse/reimbursedList',
+ method:'POST',
+ contentType: 'application/json',
+ data
+ })
+}
\ No newline at end of file
diff --git a/src/views/caseList/caseDetail.vue b/src/views/caseList/caseDetail.vue
index 3c4bcf1b..369e2b19 100644
--- a/src/views/caseList/caseDetail.vue
+++ b/src/views/caseList/caseDetail.vue
@@ -65,10 +65,10 @@
-
+
*
- 二次审核结果
+ {{firstSubmit == 1 ? '审核结果' : '二次审核结果'}}
@@ -81,7 +81,7 @@
>
- 报销失败
+ {{firstSubmit == 1 ? '不通过' : '报销失败'}}
不通过原因
-
-
提交
@@ -129,11 +129,15 @@ export default {
states:'',
activeIcon: require('@/assets/check.png'),
inactiveIcon: require('@/assets/uncheck.png'),
- supplierRemk:'',
- drivingModel:''
+ otherReason:'',
+ other:'',
+ firstSubmit:2,
}
},
methods:{
+ getValue(){
+ console.log("other",this.other)
+ },
isUse(e){
this.states=e
},
@@ -260,6 +264,7 @@ export default {
span:nth-child(2){
@include fontWeightSize(600,22px);
color: #FF5D2E;
+ margin: 0 3px 0 9px;
}
span:last-child{
@include fontWeightSize(bold,10px);
@@ -270,7 +275,8 @@ export default {
.aduit{
width: 100%;
background-color: #FFFFFF;
- height: 201px;
+ //height: 201px;
+ line-height: 37px;
border-radius: 6px;
margin-bottom: 15px;
box-sizing: border-box;
@@ -292,6 +298,13 @@ export default {
backdrop-filter: blur(10px);
margin-top: 3px;
}
+ .aduitResult:after{
+ content: '该案件为二次提交,审核不通过后司机无法再次申请报销。';
+ color: red;
+ position: absolute;
+ line-height: 70px;
+ font-size: 10px;
+ }
}
.submitBtn{
//position: absolute;
diff --git a/src/views/driverCaseList/driverCaseList.vue b/src/views/driverCaseList/driverCaseList.vue
index de4928d8..b0434030 100644
--- a/src/views/driverCaseList/driverCaseList.vue
+++ b/src/views/driverCaseList/driverCaseList.vue
@@ -18,38 +18,24 @@
-
+
-
订单编号:PC230626124283
+
订单编号:{{item.userOrderCode}}
-

-
待提交
+
![]()
+
{{item.stateStr}}
-
报销金额:1238元
+
报销金额:{{item.reimburseAmount}}
+
审核备注:{{item.auditRemark}}
+
审核人员:{{item.auditUser}}
+
审核时间:{{item.auditTime}}
-
![]()
+
-
-
-
-
订单编号:PC230626124283
-
-

-
不通过
-

-
-
-
报销金额:1238元
-
审核备注:缺失凭证照片
-
审核人员:张三
-
审核时间:2024-01-24 00:00:00
-
-
![]()
-
-
+
提交
@@ -57,9 +43,9 @@
@@ -150,6 +200,7 @@ export default {
box-sizing: border-box;
padding: 10px 7px 10px 8px;
overflow-y: auto;
+ position: relative;
.itemWrap{
position: relative;
width: 100%;
@@ -184,6 +235,16 @@ export default {
}
}
}
+.submitBtn{
+ position: absolute;
+ bottom: 15px;
+ margin:20px 0 10px 6%;
+ border-radius: 4px;
+ text-align: center;
+ @include bgFontColor(#FFFFFF,#333333);
+ @include fontWeightSize(bold,15px);
+ @include whLin(88%,48px);
+}
.commonImg{
@include widHeiMar(13px,13px,4px);
}