Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Mediation-Frontend into hcb
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
|
||||||
<el-form-item label="案件状态" prop="caseFlowId">
|
<el-form-item label="案件状态" prop="caseFlowId">
|
||||||
<el-select v-model="queryParams.caseFlowId" placeholder="请选择" clearable>
|
<el-select v-model="queryParams.caseFlowId" placeholder="请选择" clearable>
|
||||||
<el-option v-for="dict in buttonList" :key="dict.id" :label="dict.caseStatusName"
|
<el-option v-for="dict in caseStausArr" :key="dict.id" :label="dict.caseStatusName"
|
||||||
:value="dict.id" @keyup.enter.native="handleQuery"></el-option>
|
:value="dict.id" @keyup.enter.native="handleQuery"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -251,6 +251,7 @@ export default {
|
|||||||
timeConfirmData: {},
|
timeConfirmData: {},
|
||||||
confirmTionData:{},
|
confirmTionData:{},
|
||||||
buttonList: [],
|
buttonList: [],
|
||||||
|
caseStausArr: [],//案件状态
|
||||||
isapplicant: true, //判断角色申请人或非申请人
|
isapplicant: true, //判断角色申请人或非申请人
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@@ -328,6 +329,7 @@ export default {
|
|||||||
if(item.id !=17){
|
if(item.id !=17){
|
||||||
this.buttonList.push(item)
|
this.buttonList.push(item)
|
||||||
}
|
}
|
||||||
|
this.caseStausArr.push(item)
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24" v-if="modelFlag">
|
<el-col :span="24" v-if="modelFlag && showmediate">
|
||||||
<el-form-item label="调解书:">
|
<el-form-item label="调解书:">
|
||||||
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
|
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
|
||||||
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
||||||
@@ -500,7 +500,8 @@ export default {
|
|||||||
respondentEvidence: [], //被申请人证据
|
respondentEvidence: [], //被申请人证据
|
||||||
buttonFlag: true,
|
buttonFlag: true,
|
||||||
getUserInfoList: {},
|
getUserInfoList: {},
|
||||||
applicationFlag: null
|
applicationFlag: null,
|
||||||
|
showmediate: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -531,6 +532,7 @@ export default {
|
|||||||
addVisable(val) {
|
addVisable(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
this.activeName = "first";
|
this.activeName = "first";
|
||||||
|
this.showmediate = false;
|
||||||
this.getTemplateFn();
|
this.getTemplateFn();
|
||||||
if (this.addModifyData != 1) {
|
if (this.addModifyData != 1) {
|
||||||
this.caseApplicationSelectByIdFn(this.caseData.id);
|
this.caseApplicationSelectByIdFn(this.caseData.id);
|
||||||
@@ -570,6 +572,8 @@ export default {
|
|||||||
this.applicantEvidence.push(item);
|
this.applicantEvidence.push(item);
|
||||||
} else if (item.annexType == 6) {
|
} else if (item.annexType == 6) {
|
||||||
this.respondentEvidence.push(item);
|
this.respondentEvidence.push(item);
|
||||||
|
} else if (item.annexType == 7) {
|
||||||
|
this.showmediate = true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user