案件归档快递接口调整,案件日志调整,组庭确认取消时间 #95
@@ -97,3 +97,11 @@ export function updateHeardate(data) {
|
|||||||
data: data,
|
data: data,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// 案件快递信息查询
|
||||||
|
export function logistics(data) {
|
||||||
|
return request({
|
||||||
|
url: "/adjudication/logistics",
|
||||||
|
method: "get",
|
||||||
|
params: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -70,7 +70,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
||||||
import { caseLogRecordList } from "@/api/caseManagement/caseManagement";
|
import { caseLogRecordList, logistics } from "@/api/caseManagement/caseManagement";
|
||||||
import { adjudicationArchives, videoList } from "@/api/caseFiling/caseFiling";
|
import { adjudicationArchives, videoList } from "@/api/caseFiling/caseFiling";
|
||||||
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
||||||
export default {
|
export default {
|
||||||
@@ -95,7 +95,7 @@ export default {
|
|||||||
// 校验表单
|
// 校验表单
|
||||||
rules: {},
|
rules: {},
|
||||||
dataList: [],
|
dataList: [],
|
||||||
detailform: {}, //详情数据
|
detailform: [], //详情数据
|
||||||
showarchiveDetails: false, //详情数据弹框
|
showarchiveDetails: false, //详情数据弹框
|
||||||
flagLoading: false, //详情弹框loading
|
flagLoading: false, //详情弹框loading
|
||||||
videoList:"",
|
videoList:"",
|
||||||
@@ -138,7 +138,8 @@ export default {
|
|||||||
},
|
},
|
||||||
// model框显示
|
// model框显示
|
||||||
showDetail(row) {
|
showDetail(row) {
|
||||||
this.getDetail({ id: row.id });
|
// this.getDetail({ id: row.id });
|
||||||
|
this.logisticsFn({ id: row.id })
|
||||||
this.getvideoList({ caseId: row.id });
|
this.getvideoList({ caseId: row.id });
|
||||||
this.getCaseDetail({ id: row.id })
|
this.getCaseDetail({ id: row.id })
|
||||||
this.getCaseLog({caseAppliId :row.id})
|
this.getCaseLog({caseAppliId :row.id})
|
||||||
@@ -156,11 +157,18 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
/** 查询详情 */
|
/** 查询详情 */
|
||||||
getDetail(parms) {
|
// getDetail(parms) {
|
||||||
adjudicationArchives(parms).then((res) => {
|
// adjudicationArchives(parms).then((res) => {
|
||||||
|
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||||
|
// this.detailform = res.data.logisticsInfoVOList;
|
||||||
|
// });
|
||||||
|
// },
|
||||||
|
// 查询快递单号信息 logistics
|
||||||
|
logisticsFn(params) {
|
||||||
|
logistics(params).then((res) => {
|
||||||
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
// console.log(res,"PPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||||
this.detailform = res.data.logisticsInfoVOList;
|
this.detailform = res.data;
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
// 查询案件详情
|
// 查询案件详情
|
||||||
getCaseDetail(params){
|
getCaseDetail(params){
|
||||||
@@ -172,8 +180,8 @@ export default {
|
|||||||
// 查看案件日志
|
// 查看案件日志
|
||||||
getCaseLog(params){
|
getCaseLog(params){
|
||||||
caseLogRecordList(params).then(res=>{
|
caseLogRecordList(params).then(res=>{
|
||||||
console.log(res,"LLLLLLLLLLL");
|
// console.log(res,"LLLLLLLLLLL");
|
||||||
this.caseLog = res.rows;
|
this.caseLog = res.data;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="loading" v-if="flagLoading">
|
<div>
|
||||||
<i class="el-icon-loading"></i>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<div class="noData" v-if="noData">暂无数据!</div>
|
<div class="noData" v-if="noData">暂无数据!</div>
|
||||||
<el-timeline v-else>
|
<el-timeline v-else>
|
||||||
<el-timeline-item
|
<el-timeline-item
|
||||||
@@ -21,7 +18,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ["flagLoading", "caselogDataArr"],
|
props: ["caselogDataArr"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
activities: [],
|
activities: [],
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="loading" v-if="flagLoading">
|
<div>
|
||||||
<i class="el-icon-loading"></i>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<div class="deliverName">
|
<div class="deliverName">
|
||||||
<span>申请人快递信息:</span>
|
<span>申请人快递信息:</span>
|
||||||
{{ expressOne.company }} {{ expressOne.no }}
|
{{ expressOne.company }} {{ expressOne.no }}
|
||||||
@@ -39,7 +36,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ["deliveryDataArr", "flagLoading"],
|
props: ["deliveryDataArr"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
reverse: true,
|
reverse: true,
|
||||||
@@ -48,9 +45,10 @@ export default {
|
|||||||
expressTwo: {},
|
expressTwo: {},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
watch: {
|
||||||
|
deliveryDataArr() {
|
||||||
console.log(this.deliveryDataArr, "deliveryDataArr");
|
console.log(this.deliveryDataArr, "deliveryDataArr");
|
||||||
if (this.deliveryDataArr && this.deliveryDataArr.length > 0) {
|
if (this.deliveryDataArr && this.deliveryDataArr.length > 0) {
|
||||||
this.deliveryDataArr.forEach((item) => {
|
this.deliveryDataArr.forEach((item) => {
|
||||||
if (item.identityType == 1) {
|
if (item.identityType == 1) {
|
||||||
let applicantdata = item.logisticsInfo;
|
let applicantdata = item.logisticsInfo;
|
||||||
@@ -75,6 +73,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
cancel() {
|
cancel() {
|
||||||
|
|||||||
@@ -539,7 +539,7 @@ export default {
|
|||||||
caseAppliId: val.id,
|
caseAppliId: val.id,
|
||||||
};
|
};
|
||||||
caseLogRecordList(params).then((res) => {
|
caseLogRecordList(params).then((res) => {
|
||||||
this.caselogDataArr = res.rows;
|
this.caselogDataArr = res.data;
|
||||||
this.flagLoading = false;
|
this.flagLoading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<!-- 组庭确认页面 -->
|
<!-- 组庭确认页面 -->
|
||||||
<el-dialog title="组庭确认" :visible="showcourtReview" @close="cancel" :destroy-on-close="true" center>
|
<el-dialog title="组庭确认" :visible="showcourtReview" @close="cancel" :destroy-on-close="true" center>
|
||||||
<el-form ref="courtReviewform" :model="courtReviewform">
|
<el-form ref="courtReviewform" :model="courtReviewform">
|
||||||
<el-form-item label="开庭日期:" prop="hearDate" :rules="[
|
<!-- <el-form-item label="开庭日期:" prop="hearDate" :rules="[
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请选择开庭日期',
|
message: '请选择开庭日期',
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
placeholder="选择日期">
|
placeholder="选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
<el-form-item label="是否同意组庭:">
|
<el-form-item label="是否同意组庭:">
|
||||||
<el-radio-group v-model="isAgreePendTral">
|
<el-radio-group v-model="isAgreePendTral">
|
||||||
<el-radio :label="1">是</el-radio>
|
<el-radio :label="1">是</el-radio>
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="login">
|
<div class="login">
|
||||||
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
|
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
|
||||||
<h3 class="title">智慧仲裁后台管理系统</h3>
|
<h3 class="title">智慧仲裁系统</h3>
|
||||||
<el-form-item prop="username">
|
<el-form-item prop="username">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="loginForm.username"
|
v-model="loginForm.username"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="register">
|
<div class="register">
|
||||||
<el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
|
<el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
|
||||||
<h3 class="title">智慧仲裁后台管理系统</h3>
|
<h3 class="title">智慧仲裁系统</h3>
|
||||||
<el-form-item prop="username">
|
<el-form-item prop="username">
|
||||||
<el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
|
<el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
|
||||||
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
||||||
|
|||||||
Reference in New Issue
Block a user