修改测试bug,优化页面
This commit is contained in:
@@ -124,6 +124,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24" v-if="modelFlag && formData.mediaResult">
|
||||||
|
<el-form-item label="调解结果:" >
|
||||||
|
<el-radio-group v-model="formData.mediaResult">
|
||||||
|
<el-radio :label="1">达成调解</el-radio>
|
||||||
|
<el-radio :label="2">未达成调解</el-radio>
|
||||||
|
<el-radio :label="3">未达成调解但不在争议</el-radio>
|
||||||
|
<el-radio :label="4">未达成调解但同意引入仲裁</el-radio>
|
||||||
|
<el-radio :label="5">达成和解</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<div style="display: inline-flex">
|
<div style="display: inline-flex">
|
||||||
<div class="infoIcon"></div>
|
<div class="infoIcon"></div>
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
</el-upload>
|
</el-upload>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24" v-if="showmediate">
|
||||||
<el-form-item label="证据:">
|
<el-form-item label="证据:">
|
||||||
<div v-for="(item, index) in detailsAwardNum.caseAttachList" :key="index" v-if="item.annexType == 2">
|
<div v-for="(item, index) in detailsAwardNum.caseAttachList" :key="index" v-if="item.annexType == 2">
|
||||||
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24" v-if="showEvidence">
|
||||||
<el-form-item label="调解申请书:">
|
<el-form-item label="调解申请书:">
|
||||||
<div v-for="(item, index) in detailsAwardNum.caseAttachList" :key="index" v-if="item.annexType == 3">
|
<div v-for="(item, index) in detailsAwardNum.caseAttachList" :key="index" v-if="item.annexType == 3">
|
||||||
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="调解书:">
|
<el-form-item label="调解书:" v-if="showConciliation">
|
||||||
<div v-for="(item, index) in detailsAwardNum.caseAttachList" :key="index" v-if="item.annexType == 7">
|
<div v-for="(item, index) in detailsAwardNum.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)">
|
||||||
{{ item.annexName }}
|
{{ item.annexName }}
|
||||||
@@ -105,6 +105,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="调解结果:" v-if="detailsAwardNum.mediaResult">
|
||||||
|
<el-radio-group v-model="detailsAwardNum.mediaResult">
|
||||||
|
<el-radio :label="1">达成调解</el-radio>
|
||||||
|
<el-radio :label="2">未达成调解</el-radio>
|
||||||
|
<el-radio :label="3">未达成调解但不在争议</el-radio>
|
||||||
|
<el-radio :label="4">未达成调解但同意引入仲裁</el-radio>
|
||||||
|
<el-radio :label="5">达成和解</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<div style="display: inline-flex">
|
<div style="display: inline-flex">
|
||||||
<div class="infoIcon"></div>
|
<div class="infoIcon"></div>
|
||||||
@@ -251,6 +262,9 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getToken } from "@/utils/auth";
|
import { getToken } from "@/utils/auth";
|
||||||
|
import {
|
||||||
|
caseApplicationSelectById,
|
||||||
|
} from "@/api/caseManagement/caseManagement.js";
|
||||||
export default {
|
export default {
|
||||||
props: ["showarchiveDetails","detailsAwardNum","videoList","flagLoadingS","trialTranscripts","caseFilingData"],
|
props: ["showarchiveDetails","detailsAwardNum","videoList","flagLoadingS","trialTranscripts","caseFilingData"],
|
||||||
components: {
|
components: {
|
||||||
@@ -268,6 +282,9 @@ export default {
|
|||||||
headers: {
|
headers: {
|
||||||
Authorization: "Bearer " + getToken(),
|
Authorization: "Bearer " + getToken(),
|
||||||
},
|
},
|
||||||
|
showEvidence:false,
|
||||||
|
showmediate:false,
|
||||||
|
showConciliation:false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -275,15 +292,20 @@ watch: {
|
|||||||
handler(val) {
|
handler(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
this.activeName = 'five'
|
this.activeName = 'five'
|
||||||
|
this.caseApplicationSelectByIdFn(this.caseFilingData.id)
|
||||||
|
this.showEvidence=false,
|
||||||
|
this.showmediate=false,
|
||||||
|
this.showConciliation=false
|
||||||
// this.detailsAwardNum.affiliate.respondentSex = Number(this.detailsAwardNum.affiliate.respondentSex)
|
// this.detailsAwardNum.affiliate.respondentSex = Number(this.detailsAwardNum.affiliate.respondentSex)
|
||||||
console.log(this.detailsAwardNum)
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
created(){
|
created(){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
isNoData(data,type){
|
isNoData(data,type){
|
||||||
@@ -295,6 +317,20 @@ watch: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return resNumber
|
return resNumber
|
||||||
|
},
|
||||||
|
/** 根据案件id获取对应信息 */
|
||||||
|
caseApplicationSelectByIdFn(data) {
|
||||||
|
caseApplicationSelectById({ id: data }).then((res) => {
|
||||||
|
res.data.caseAttachList.forEach(item => {
|
||||||
|
if(item.annexType==2){
|
||||||
|
this.showmediate = true
|
||||||
|
}else if(item.annexType==3){
|
||||||
|
this.showEvidence = true
|
||||||
|
}else if(item.annexType==7){
|
||||||
|
this.showConciliation = true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
},
|
},
|
||||||
/** 查看证据 */
|
/** 查看证据 */
|
||||||
fileDetil(val) {
|
fileDetil(val) {
|
||||||
@@ -348,7 +384,7 @@ watch: {
|
|||||||
overflow: auto !important;
|
overflow: auto !important;
|
||||||
}
|
}
|
||||||
::v-deep .el-dialog {
|
::v-deep .el-dialog {
|
||||||
width: 850px;
|
width: 925px;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,9 +21,9 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="案件标的:" prop="caseSubjectAmount">
|
<!-- <el-form-item label="案件标的:" prop="caseSubjectAmount">
|
||||||
<el-input v-model="formData.caseSubjectAmount" placeholder="请输入案件标的" :disabled="true" />
|
<el-input v-model="formData.caseSubjectAmount" placeholder="请输入案件标的" :disabled="true" />
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="调解费用:" prop="feePayable">
|
<el-form-item label="调解费用:" prop="feePayable">
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24" v-if="mediationType">
|
<el-col :span="24">
|
||||||
<el-form-item label="调解结果:">
|
<el-form-item label="调解结果:">
|
||||||
<el-radio-group v-model="mediaResult" :disabled="!selectRoido" @change="resultsMediation">
|
<el-radio-group v-model="mediaResult" :disabled="!selectRoido" @change="resultsMediation">
|
||||||
<el-radio :label="1">达成调解</el-radio>
|
<el-radio :label="1">达成调解</el-radio>
|
||||||
@@ -185,6 +185,7 @@ export default {
|
|||||||
} else if (this.mediationData.mediationMethod == "2") {
|
} else if (this.mediationData.mediationMethod == "2") {
|
||||||
this.title = "线下调解";
|
this.title = "线下调解";
|
||||||
this.mediationType = false;
|
this.mediationType = false;
|
||||||
|
this.selectRoido = true
|
||||||
}
|
}
|
||||||
if (val) {
|
if (val) {
|
||||||
this.caseApplicationSelectByIdFn({
|
this.caseApplicationSelectByIdFn({
|
||||||
@@ -314,6 +315,7 @@ export default {
|
|||||||
this.loadingSubmit = true;
|
this.loadingSubmit = true;
|
||||||
}
|
}
|
||||||
let mediationVal = {}
|
let mediationVal = {}
|
||||||
|
|
||||||
if (this.codes == 200) {
|
if (this.codes == 200) {
|
||||||
mediationVal = {
|
mediationVal = {
|
||||||
id: this.mediationData.id,
|
id: this.mediationData.id,
|
||||||
@@ -343,4 +345,8 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
::v-deep .el-input--medium .el-input__inner {
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
+1
-1
@@ -68,7 +68,7 @@
|
|||||||
<!-- 底部 -->
|
<!-- 底部 -->
|
||||||
<div class="el-login-footer">
|
<div class="el-login-footer">
|
||||||
<div>Copyright © 2023 乙巢(上海)企业管理服务有限公司.</div>
|
<div>Copyright © 2023 乙巢(上海)企业管理服务有限公司.</div>
|
||||||
<div>Version:1.0.1</div>
|
<div>Version:1.1.0</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user