diff --git a/src/api/caseManagement/caseManagement.js b/src/api/caseManagement/caseManagement.js
index 6839180..71d00cb 100644
--- a/src/api/caseManagement/caseManagement.js
+++ b/src/api/caseManagement/caseManagement.js
@@ -2,99 +2,99 @@ import request from '@/utils/request'
// 查询案件列表
export function caseApplicationList(data) {
- return request({
- url: 'caseApplication/list',
- method: 'get',
- params: data
- })
+ return request({
+ url: 'caseApplication/list',
+ method: 'get',
+ params: data
+ })
}
/** 新增案件 */
export function caseApplicationInsert(data) {
- return request({
- url: 'caseApplication/insert',
- method: 'post',
- data: data
- })
+ return request({
+ url: 'caseApplication/insert',
+ method: 'post',
+ data: data
+ })
}
/** 根据id查询案件信息 */
export function caseApplicationSelectById(data) {
- return request({
- url: '/caseApplication/selectById',
- method: 'get',
- params: data
- })
+ return request({
+ url: '/caseApplication/selectById',
+ method: 'get',
+ params: data
+ })
}
/** 案件证据查询 */
export function getFileList(data) {
- return request({
- url: "/common/fileList",
- method: "get",
- params: data,
- });
+ return request({
+ url: "/common/fileList",
+ method: "get",
+ params: data,
+ });
}
/** 批量上传证据 */
export function batchUpload(data) {
- return request({
- url: "/caseApplication/batchUpload",
- method: "post",
- data: data,
- });
+ return request({
+ url: "/caseApplication/batchUpload",
+ method: "post",
+ data: data,
+ });
}
// 提交
export function submitCaseApply(data) {
- return request({
- url: '/caseApplication/submit',
- method: 'post',
- data: data
- })
- }
+ return request({
+ url: '/caseApplication/submit',
+ method: 'post',
+ data: data
+ })
+}
// 缴费确认
export function confirmPaid(data) {
- return request({
- url: "/pay/confirmPaid",
- method: "post",
- data: data,
- });
- }
+ return request({
+ url: "/pay/confirmPaid",
+ method: "post",
+ data: data,
+ });
+}
// 案件id查询缴费清单
export function selectPaymentDetail(data) {
- return request({
- url: "/pay/selectPaymentDetail",
- method: "get",
- params: data,
- });
- }
- //案件受理
- export function accept(data) {
- return request({
- url: "/caseApplication/accept",
- method: "post",
- data: data,
- });
- }
- export function listMediator(data) {
- return request({
- url: "caseApplication/listMediator",
- method: "get",
- params: data,
- });
- }
+ return request({
+ url: "/pay/selectPaymentDetail",
+ method: "get",
+ params: data,
+ });
+}
+//案件受理
+export function accept(data) {
+ return request({
+ url: "/caseApplication/accept",
+ method: "post",
+ data: data,
+ });
+}
+export function listMediator(data) {
+ return request({
+ url: "caseApplication/listMediator",
+ method: "get",
+ params: data,
+ });
+}
// 确认仲裁员以及时间
export function updateBooking(data) {
- return request({
- url: "/caseApplication/updateBooking",
- method: "post",
- data: data,
- });
- }
- //用印申请
- export function sealApply(data) {
- return request({
- url: "/mssignSeal/sealApply",
- method: "post",
- data: data,
- });
- }
+ return request({
+ url: "/caseApplication/updateBooking",
+ method: "post",
+ data: data,
+ });
+}
+//用印申请
+export function sealApply(data) {
+ return request({
+ url: "/mssignSeal/sealApply",
+ method: "post",
+ data: data,
+ });
+}
// 用印确认
export function selectSealUrl(data) {
return request({
@@ -105,13 +105,13 @@ export function selectSealUrl(data) {
}
//查询预约信息
export function selectReservation(data) {
- return request({
- url: "/caseApplication/selectReservation",
- method: "get",
- params: data,
- });
- }
- //核实调解员
+ return request({
+ url: "/caseApplication/selectReservation",
+ method: "get",
+ params: data,
+ });
+}
+//核实调解员
export function verifyMediator(data) {
return request({
url: "/caseApplication/verifyMediator",
@@ -119,11 +119,17 @@ export function verifyMediator(data) {
data: data,
});
}
+// 确认调节时间
+export function confirmDate(data) {
+ return request({
+ url: "/caseApplication/confirmDate",
+ })
+}
// 查看案件流程
export function selectCaseProgress(data) {
return request({
url: "/mssignSeal/selectCaseProgress",
method: "post",
data: data,
- });
+ })
}
diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue
index f9b3fbf..ff0f95c 100644
--- a/src/views/caseManagement/caseList.vue
+++ b/src/views/caseManagement/caseList.vue
@@ -78,6 +78,7 @@
预约时间
秘书审核
部门长审核
+ 确认调解时间
@@ -111,6 +112,8 @@
+
+
@@ -129,6 +132,7 @@ import caseAcceptance from './components/caseAcceptance.vue'
import selectMediator from './components/selectMediator.vue'
import confirmMediator from './components/confirmMediator.vue'
import departmentMediator from './components/departmentMediator.vue'
+import timeConfirm from './components/timeConfirm.vue'
export default {
name: "caseList",
dicts: ["case_flow_node"],
@@ -143,7 +147,8 @@ export default {
caseAcceptance,
selectMediator,//调解员弹窗
confirmMediator,
- departmentMediator
+ departmentMediator,
+ timeConfirm
},
data() {
return {
@@ -190,7 +195,9 @@ export default {
tabFlag: false,
confirmData:{},
departmentVisable:false,
- departmentData:{}
+ departmentData:{},
+ timeConfirmVisable:false,
+ timeConfirmData:{}
};
},
created() {
@@ -260,16 +267,21 @@ export default {
this.payForm.caseId = res.data.id;
});
},
- /** 确认时间/调解员 */
+ /** 确认调解员 */
secretaryConfirm(val){
this.confirmVisable = true;
this.confirmData = val;
},
- /** 部门长确认时间/调解员 */
+ /** 部门长确认调解员 */
department(val){
this.departmentVisable = true;
this.departmentData = val;
},
+ /**确认时间 */
+ timeConfirm(val){
+ this.timeConfirmVisable = true;
+ this.timeConfirmData = val;
+ },
/** 时间改变处理 */
caseTimeChange() {
if (this.caseTime) {
@@ -326,6 +338,9 @@ export default {
cancelDepartment(){
this.departmentVisable = false;
},
+ cancelTimeConfirm(){
+ this.timeConfirmVisable = false;
+ },
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
diff --git a/src/views/caseManagement/components/confirmMediator.vue b/src/views/caseManagement/components/confirmMediator.vue
index f15651c..849031a 100644
--- a/src/views/caseManagement/components/confirmMediator.vue
+++ b/src/views/caseManagement/components/confirmMediator.vue
@@ -1,6 +1,6 @@
-
@@ -25,13 +25,13 @@
-
+
-
-
+