加入仲裁员审核流程,首页修改 #119
@@ -34,9 +34,9 @@
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<!-- <el-row>
|
||||
<el-button size="mini">案件归档</el-button>
|
||||
</el-row> -->
|
||||
<el-row style="margin-bottom:5px;">
|
||||
<el-button type="primary" size="mini" class="el-icon-download" @click="downloadZips">案件归档</el-button>
|
||||
</el-row>
|
||||
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
||||
<el-table-column label="序号" type="index" align="center">
|
||||
<template slot-scope="scope">
|
||||
@@ -130,6 +130,10 @@ export default {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 下在案件归档压缩包
|
||||
downloadZips(){
|
||||
// console.log(this.download)
|
||||
},
|
||||
// 查询列表数据
|
||||
getList(parms) {
|
||||
this.loading = true;
|
||||
|
||||
@@ -126,6 +126,13 @@
|
||||
</p>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="仲裁申请书:">
|
||||
<div v-for="item in caseApplicationObj.caseAttachList" v-if="item.annexType ==1">
|
||||
<el-link target="_blank" type="primary" :href ="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<!-- 申请人主体信息 -->
|
||||
@@ -512,6 +519,7 @@ export default {
|
||||
props: ["caseApplicationObj"],
|
||||
data() {
|
||||
return {
|
||||
fileURL: window.location.origin + "/API",
|
||||
formData: {},
|
||||
applicateArr: [],
|
||||
quiltArr: [],
|
||||
@@ -561,6 +569,7 @@ export default {
|
||||
if (this.caseApplicationObj) {
|
||||
this.formData = this.caseApplicationObj;
|
||||
}
|
||||
console.log(this.caseApplicationObj)
|
||||
console.log("this.formData", this.formData);
|
||||
if (this.caseApplicationObj && this.caseApplicationObj.caseAffiliates) {
|
||||
this.caseApplicationObj.caseAffiliates.forEach((item) => {
|
||||
|
||||
@@ -111,7 +111,7 @@
|
||||
<el-button size="mini" type="text" icon="el-icon-tickets" @click="payStatus(scope.row)" v-if="scope.row.caseStatus == 2 &&
|
||||
checkPermi(['caseManagement:list:pay']) && btnStatus
|
||||
">缴费</el-button>
|
||||
|
||||
<el-button size="mini" type="text" icon="el-icon-tickets" @click="evidenceListS(scope.row)" >证据清单</el-button>
|
||||
<!-- <el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
@@ -237,6 +237,8 @@
|
||||
<caseCompressionPackage :openCompressedPackages="openCompressedPackages" :queryParams="queryParams" @cancelCompreess="cancelCompreess"
|
||||
:getcaseApply="getcaseApply">
|
||||
</caseCompressionPackage>
|
||||
<!-- 证据清单 -->
|
||||
<evidenceList :evidenceListD ="evidenceListD" @cancelevidenceList="cancelevidenceList" :caseAttachListR ="caseAttachListR"></evidenceList>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
@@ -257,7 +259,8 @@ import evidenceDialog from './components/evidenceDialog.vue';
|
||||
import timeDialog from './components/timeDialog.vue';
|
||||
import operateDialog from './components/operateDialog.vue';
|
||||
import uploadCaseDialog from './components/uploadCaseDialog.vue';
|
||||
import caseCompressionPackage from './components/caseCompressionPackage.vue'
|
||||
import caseCompressionPackage from './components/caseCompressionPackage.vue';
|
||||
import evidenceList from './components/evidenceList.vue'
|
||||
// 秘书审核页面
|
||||
import caseentryExamineDialog from './components/caseentryExamine.vue';
|
||||
import { caseApplicationDetail } from "@/api/pay/pay";
|
||||
@@ -297,7 +300,8 @@ export default {
|
||||
operateDialog,
|
||||
uploadCaseDialog,
|
||||
caseentryExamineDialog,
|
||||
caseCompressionPackage
|
||||
caseCompressionPackage,
|
||||
evidenceList
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
@@ -349,6 +353,8 @@ export default {
|
||||
payForm: {},
|
||||
caseAttachList: [], //案件质证资料
|
||||
showcaseLog: false, //案件日志弹框显示
|
||||
evidenceListD:false,//证据清单弹框显示
|
||||
caseAttachListR:[], //证据清单
|
||||
flagLoading: true, //案件日志弹框loading
|
||||
caselogDataArr: [],
|
||||
options: [], //机构数据
|
||||
@@ -588,6 +594,11 @@ export default {
|
||||
this.showcaseLog = true;
|
||||
this.caseLogRecordListFn(row);
|
||||
},
|
||||
// 证据清单
|
||||
evidenceListS(row){
|
||||
this.evidenceListD = true;
|
||||
this.getInfo(row);
|
||||
},
|
||||
// 查询案件日志信息
|
||||
caseLogRecordListFn(val) {
|
||||
this.flagLoading = true;
|
||||
@@ -607,6 +618,10 @@ export default {
|
||||
cancelViewProcess() {
|
||||
this.processVisable = false;
|
||||
},
|
||||
// 关闭案件详情
|
||||
cancelevidenceList(){
|
||||
this.evidenceListD = false;
|
||||
},
|
||||
// 修改
|
||||
editRow(row) {
|
||||
this.flag = "1";
|
||||
@@ -769,6 +784,8 @@ export default {
|
||||
version: row.version
|
||||
}
|
||||
selectCaseApply(params).then((res) => {
|
||||
// 证据清单
|
||||
this.caseAttachListR = res.data.caseAttachList;
|
||||
// this.visible = true;
|
||||
// this.formData = res.data;
|
||||
this.form.caseName = res.data.caseName;
|
||||
@@ -790,7 +807,7 @@ export default {
|
||||
}
|
||||
});
|
||||
this.caseAttachList = res.data.caseAttachList;
|
||||
console.log(this.caseAttachList,"caseAttachList")
|
||||
// console.log(this.caseAttachList,"caseAttachList")
|
||||
this.form.requestRule = res.data.requestRule;
|
||||
this.form.properPreser = res.data.properPreser;
|
||||
});
|
||||
|
||||
@@ -583,6 +583,15 @@
|
||||
@click="generateForm1()"
|
||||
>新增被申请人主体信息</el-button
|
||||
> -->
|
||||
<div>
|
||||
<div style="display: inline-flex">
|
||||
<div class="infoIcon"></div>
|
||||
<div class="caseInfo2">仲裁申请书:</div>
|
||||
</div>
|
||||
<div v-for="item in caseAttachList" :key ="item.annexId" v-if="item.annexType==1" style="margin-top:-25px;margin-left:100px;">
|
||||
<el-link target="_blank" type="primary" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||
</div>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm" v-if="flag != 0" class="endbutton"><span>确 定</span></el-button>
|
||||
<el-button @click="cancel" class="endbutton1"><span>取 消</span></el-button>
|
||||
@@ -609,6 +618,7 @@ export default {
|
||||
],
|
||||
data() {
|
||||
return {
|
||||
fileURL: window.location.origin + "/API",
|
||||
formData: this.form,
|
||||
filedata: {
|
||||
annexType: 2,
|
||||
|
||||
@@ -0,0 +1,95 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-dialog
|
||||
title="证据清单"
|
||||
:visible="evidenceListD"
|
||||
:caseAttachListR = "caseAttachListR"
|
||||
@close="cancel"
|
||||
center
|
||||
:distroy-on-close="true"
|
||||
>
|
||||
<div class="loading" v-if ="flagLoading">
|
||||
<i class="el-icon-loading"></i>
|
||||
</div>
|
||||
<div v-for="item in this.caseAttachListR" style="margin-top:10px;">
|
||||
<el-link target="_blank" type="primary" v-if="item.annexType == 2 || item.annexType == 6" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="cancel" class="endbutton1"
|
||||
><span>取 消</span></el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ["evidenceListD", "flagLoading", "caseAttachListR"],
|
||||
data() {
|
||||
return {
|
||||
fileURL: window.location.origin + "/API",
|
||||
myData:[]
|
||||
};
|
||||
},
|
||||
created(){
|
||||
// 获取组件传值监听
|
||||
// this.$watch('caseAttachListR',(newVal)=>{
|
||||
// this.myData = newVal;
|
||||
// console.log(this.myData)
|
||||
// })
|
||||
},
|
||||
methods: {
|
||||
|
||||
cancel() {
|
||||
this.$emit("cancelevidenceList");
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .el-dialog__body {
|
||||
height: 500px !important;
|
||||
overflow: auto !important;
|
||||
}
|
||||
::v-deep .el-dialog {
|
||||
width: 800px;
|
||||
background: #ffffff;
|
||||
border-radius: 20px;
|
||||
}
|
||||
.endbutton1 {
|
||||
width: 154px;
|
||||
height: 37px;
|
||||
background: #ffffff;
|
||||
border: 1px solid #d0d0d0;
|
||||
border-radius: 19px;
|
||||
span {
|
||||
width: 31px;
|
||||
height: 13px;
|
||||
font-size: 16px;
|
||||
font-family: Microsoft YaHei;
|
||||
font-weight: 400;
|
||||
color: #959595;
|
||||
}
|
||||
}
|
||||
.loading {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
.el-icon-loading {
|
||||
font-size: 50px;
|
||||
}
|
||||
}
|
||||
.noData {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
color: #959595;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
@@ -3,7 +3,7 @@
|
||||
<el-dialog title="案件流程" :visible="processVisable" @close="cancel" center :distroy-on-close="true">
|
||||
<div>
|
||||
<el-steps class="steps" :active="caseStatus">
|
||||
<el-step :title="item.caseNodeName || item.content" v-for="(item,index) in pageData.allCasenode" :key="index" :description="(item.createNickName || '') + (item.caseNodeTime || '')"></el-step>
|
||||
<el-step :title="item.caseNodeName || item.content" v-for="(item,index) in pageData.allCasenode" :key="index" :description="(item.createNickName || '') + (item.caseNodeTime || '')+(item.nextRoleName || '')"></el-step>
|
||||
|
||||
</el-steps>
|
||||
</div>
|
||||
@@ -41,6 +41,7 @@ export default {
|
||||
selectCaseProgress(data).then(res=>{
|
||||
this.pageData = res.data.data;
|
||||
let allCasenode = res.data.data.allCasenode;
|
||||
console.log(allCasenode)
|
||||
allCasenode.forEach((item,index) => {
|
||||
if(item.caseNode==res.data.data.caseStatus){
|
||||
this.caseStatus = index
|
||||
|
||||
Reference in New Issue
Block a user