案件详情,归档详情,仲裁申请书展示,流程信息展示下一步操作角色
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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