Merge branch 'gyj' of SH-Arbitrate/Arbitrate-Frontend into dev
This commit was merged in pull request #121.
This commit is contained in:
@@ -25,6 +25,14 @@ export function creatTrialRecord(data) {
|
|||||||
data: data,
|
data: data,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// 确认生成笔录
|
||||||
|
export function creatTrialRecordnew(data) {
|
||||||
|
return request({
|
||||||
|
url: "/caseApplication/creatTrialRecordnew",
|
||||||
|
method: "post",
|
||||||
|
data: data,
|
||||||
|
});
|
||||||
|
}
|
||||||
// 组庭确认
|
// 组庭确认
|
||||||
export function pendTralSure(data) {
|
export function pendTralSure(data) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
@@ -380,7 +380,6 @@ export default {
|
|||||||
caseApplicationDetail(parms).then((res) => {
|
caseApplicationDetail(parms).then((res) => {
|
||||||
this.detailform = res.data;
|
this.detailform = res.data;
|
||||||
this.detailsAwardNum = res.data;
|
this.detailsAwardNum = res.data;
|
||||||
console.log(this.detailsAwardNum)
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 裁决书详情
|
// 裁决书详情
|
||||||
|
|||||||
@@ -34,9 +34,9 @@
|
|||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-row style="margin-bottom:5px;">
|
<!-- <el-row style="margin-bottom:5px;">
|
||||||
<el-button type="primary" size="mini" class="el-icon-download" @click="downloadZips">案件归档</el-button>
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadZips">案件归档</el-button>
|
||||||
</el-row>
|
</el-row> -->
|
||||||
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
||||||
<el-table-column label="序号" type="index" align="center">
|
<el-table-column label="序号" type="index" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@@ -59,6 +59,7 @@
|
|||||||
v-if="scope.row.filearbitraUrl && scope.row.filearbitraUrl !== ''"
|
v-if="scope.row.filearbitraUrl && scope.row.filearbitraUrl !== ''"
|
||||||
@click="showModel(scope.row)">查看裁决书</el-button>
|
@click="showModel(scope.row)">查看裁决书</el-button>
|
||||||
<el-button size="mini" type="text" icon="el-icon-reading" @click="showDetail(scope.row)">归档详情</el-button>
|
<el-button size="mini" type="text" icon="el-icon-reading" @click="showDetail(scope.row)">归档详情</el-button>
|
||||||
|
<el-button type="text" size="mini" icon="el-icon-download" @click="downloadZips(scope.row)">下载案件压缩包</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -131,7 +132,7 @@ export default {
|
|||||||
this.handleQuery();
|
this.handleQuery();
|
||||||
},
|
},
|
||||||
// 下在案件归档压缩包
|
// 下在案件归档压缩包
|
||||||
downloadZips(){
|
downloadZips(row){
|
||||||
// console.log(this.download)
|
// console.log(this.download)
|
||||||
},
|
},
|
||||||
// 查询列表数据
|
// 查询列表数据
|
||||||
|
|||||||
@@ -866,6 +866,6 @@ export default {
|
|||||||
<style>
|
<style>
|
||||||
/* // #formContainer {} */
|
/* // #formContainer {} */
|
||||||
.el-table .pendingTrial {
|
.el-table .pendingTrial {
|
||||||
background:oldlace;
|
background:rgb(97, 224, 23);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -11,8 +11,13 @@
|
|||||||
<div class="loading" v-if ="flagLoading">
|
<div class="loading" v-if ="flagLoading">
|
||||||
<i class="el-icon-loading"></i>
|
<i class="el-icon-loading"></i>
|
||||||
</div>
|
</div>
|
||||||
|
<div>申请人证据清单:</div>
|
||||||
<div v-for="item in this.caseAttachListR" style="margin-top:10px;">
|
<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>
|
<el-link target="_blank" type="primary" v-if="item.annexType == 2" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||||
|
</div>
|
||||||
|
<div style="margin-top:30px;;">被申请人证据清单:</div>
|
||||||
|
<div v-for="item in this.caseAttachListR" style="margin-top:10px;">
|
||||||
|
<el-link target="_blank" type="primary" v-if="item.annexType == 6" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||||
</div>
|
</div>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button @click="cancel" class="endbutton1"
|
<el-button @click="cancel" class="endbutton1"
|
||||||
|
|||||||
@@ -170,16 +170,16 @@
|
|||||||
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.applicantOpinion" placeholder="请输入" />
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.applicantOpinion" placeholder="请输入" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<!-- <el-col :span="24">
|
||||||
<el-form-item label="查明本案事实" prop="caseFacts">
|
<el-form-item label="查明本案事实" prop="caseFacts">
|
||||||
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFacts" placeholder="请输入" />
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFacts" placeholder="请输入" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
<el-col :span="24">
|
<!-- <el-col :span="24">
|
||||||
<el-form-item label="本案争议焦点" prop="caseFocus">
|
<el-form-item label="本案争议焦点" prop="caseFocus">
|
||||||
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFocus" placeholder="请输入" />
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFocus" placeholder="请输入" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
<!-- <el-col :span="12">
|
<!-- <el-col :span="12">
|
||||||
<el-form-item label="被申请人质证意见:" prop="responCrossOpin" :rules="[
|
<el-form-item label="被申请人质证意见:" prop="responCrossOpin" :rules="[
|
||||||
{
|
{
|
||||||
@@ -288,6 +288,7 @@ import { getUserProfile } from "@/api/system/user";
|
|||||||
import {
|
import {
|
||||||
writtenHear,
|
writtenHear,
|
||||||
creatTrialRecord,
|
creatTrialRecord,
|
||||||
|
creatTrialRecordnew,
|
||||||
document,
|
document,
|
||||||
} from "@/api/caseManagement/caseManagement.js";
|
} from "@/api/caseManagement/caseManagement.js";
|
||||||
|
|
||||||
@@ -397,7 +398,7 @@ export default {
|
|||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs["form2"].validate((valid) => {
|
this.$refs["form2"].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
creatTrialRecord({
|
creatTrialRecordnew({
|
||||||
caseAppliId: this.formData.id,
|
caseAppliId: this.formData.id,
|
||||||
// evidenDetermi: this.form2.evidenDetermi,
|
// evidenDetermi: this.form2.evidenDetermi,
|
||||||
// factDetermi: this.form2.factDetermi,
|
// factDetermi: this.form2.factDetermi,
|
||||||
@@ -412,19 +413,20 @@ export default {
|
|||||||
isAbsence: this.form2.isAbsence,
|
isAbsence: this.form2.isAbsence,
|
||||||
appliIsAbsen: this.form2.appliIsAbsen,
|
appliIsAbsen: this.form2.appliIsAbsen,
|
||||||
respondentOpinion: this.form2.respondentOpinion,
|
respondentOpinion: this.form2.respondentOpinion,
|
||||||
applicantOpinion: this.form2.applicaCrossOpin,
|
applicantOpinion: this.form2.applicantOpinion,
|
||||||
caseFacts: this.form2.caseFacts,
|
// caseFacts: this.form2.caseFacts,
|
||||||
caseFocus: this.form2.caseFocus
|
// caseFocus: this.form2.caseFocus
|
||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
res.data.caseAttachList.forEach((item) => {
|
// console.log(res);
|
||||||
if (item.annexType == 7) {
|
// res.data.caseAttachList.forEach((item) => {
|
||||||
this.recordArr.push({
|
// if (item.annexType == 7) {
|
||||||
annexName: item.annexName,
|
// this.recordArr.push({
|
||||||
annexPath: item.annexPath,
|
// annexName: item.annexName,
|
||||||
});
|
// annexPath: item.annexPath,
|
||||||
}
|
// });
|
||||||
});
|
// }
|
||||||
|
// });
|
||||||
this.$modal.msgSuccess("提交成功");
|
this.$modal.msgSuccess("提交成功");
|
||||||
this.showsubmit = false;
|
this.showsubmit = false;
|
||||||
this.closeArbitrationresults();
|
this.closeArbitrationresults();
|
||||||
|
|||||||
Reference in New Issue
Block a user