案件信息列表接口调整 #29

Merged
hhlxayunmei merged 1 commits from hhl into dev 2023-09-20 10:42:17 +00:00
6 changed files with 134 additions and 51 deletions
+8 -5
View File
@@ -366,6 +366,7 @@ export default {
// 查询参数
queryParams: {
caseNum: undefined,
caseStatusList: [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 16],
hearDate: "",
caseStatus: null,
pageNum: 1,
@@ -395,7 +396,7 @@ export default {
};
},
created() {
this.getcaseApply();
this.getcaseApply(this.queryParams);
},
methods: {
cancel() {
@@ -405,9 +406,9 @@ export default {
this.openbatch = false;
},
/** 查询列表 */
getcaseApply() {
getcaseApply(val) {
this.loading = true;
caseApply(this.queryParams).then((response) => {
caseApply(val).then((response) => {
this.dataList = response.rows;
// this.dataList.forEach((item) => {
// item.caseStatus = item.caseStatus == 0 ? "立案申请" : "待缴费";
@@ -418,13 +419,15 @@ export default {
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.caseStatusList = []
this.queryParams.pageNum = 1;
this.getcaseApply();
this.getcaseApply(this.queryParams);
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
this.queryParams.caseStatusList = [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 16],
this.getcaseApply(this.queryParams);
},
// 案件录入
filingApplication() {
@@ -171,7 +171,7 @@
<el-col :span="24">
<el-form-item
label="经庭审质证,对各方提供的证据认定如下:"
prop="arbitrationResult"
prop="evidenDetermi"
:rules="[
{
required: true,
@@ -184,7 +184,7 @@
type="textarea"
:autosize="{ minRows: 4}"
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
v-model="form2.evidenDetermi"
>
</el-input>
</el-form-item>
@@ -192,11 +192,11 @@
<el-col :span="24">
<el-form-item
label="仲裁庭经审理查明(写明仲裁庭认定的事实):"
prop="arbitrationResult"
prop="factDetermi"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -204,8 +204,8 @@
<el-input
type="textarea"
:autosize="{ minRows: 4}"
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.factDetermi"
>
</el-input>
</el-form-item>
@@ -213,11 +213,11 @@
<el-col :span="24">
<el-form-item
label="综上所述:"
prop="arbitrationResult"
prop="caseSketch"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -225,8 +225,8 @@
<el-input
type="textarea"
autosize
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.caseSketch"
>
</el-input>
</el-form-item>
@@ -234,11 +234,11 @@
<el-col :span="24">
<el-form-item
label="本庭认为:"
prop="arbitrationResult"
prop="arbitrateThink"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -246,8 +246,8 @@
<el-input
type="textarea"
autosize
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.arbitrateThink"
>
</el-input>
</el-form-item>
@@ -255,11 +255,11 @@
<el-col :span="24">
<el-form-item
label="裁决如下:"
prop="arbitrationResult"
prop="rulingFollows"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -267,8 +267,8 @@
<el-input
type="textarea"
autosize
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.rulingFollows"
>
</el-input>
</el-form-item>
@@ -16,8 +16,12 @@
</div>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">提 交</el-button>
<el-button @click="cancel">取 消</el-button>
<el-button type="primary" @click="submitForm" class="endbutton"
><span>提 交</span></el-button
>
<el-button @click="cancel" class="endbutton1"
><span> 取 消</span></el-button
>
</div>
</el-dialog>
</div>
@@ -61,4 +65,39 @@ export default {
.radiobox {
margin-left: 5%;
}
::v-deep .el-dialog {
width: 800px;
background: #ffffff;
border-radius: 20px;
}
.endbutton {
width: 124px;
height: 37px;
background: #0072ff;
border-radius: 19px;
span {
width: 32px;
height: 15px;
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #ffffff;
// line-height: 48px;
}
}
.endbutton1 {
width: 124px;
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;
}
}
</style>
@@ -1,12 +1,12 @@
<template>
<div>
<!-- 组庭审核页面 -->
<!-- 组庭确认页面 -->
<el-dialog
title="组庭确认"
:visible="showcourtReview"
width="500px"
@close="cancel"
:destroy-on-close="true"
center
>
<el-form ref="courtReviewform" :model="courtReviewform">
<el-form-item
@@ -31,8 +31,12 @@
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
<el-button type="primary" @click="submitForm" class="endbutton"
><span>确 定</span>
</el-button>
<el-button @click="cancel" class="endbutton1"
><span> 取 消</span></el-button
>
</div>
</el-dialog>
</div>
@@ -78,7 +82,44 @@ export default {
</script>
<style lang="scss" scoped>
::v-deep .el-dialog {
width: 422px;
height: 245px;
background: #ffffff;
border-radius: 20px;
}
.el-form-item {
margin-left: 10%;
}
.endbutton {
width: 124px;
height: 37px;
background: #0072ff;
border-radius: 19px;
span {
width: 32px;
height: 15px;
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #ffffff;
// line-height: 48px;
}
}
.endbutton1 {
width: 124px;
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;
// line-height: 48px;
}
}
</style>
@@ -147,11 +147,11 @@
<el-col :span="24">
<el-form-item
label="经庭审质证,对各方提供的证据认定如下:"
prop="arbitrationResult"
prop="evidenDetermi"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -159,8 +159,8 @@
<el-input
type="textarea"
:autosize="{ minRows: 4 }"
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.evidenDetermi"
>
</el-input>
</el-form-item>
@@ -168,11 +168,11 @@
<el-col :span="24">
<el-form-item
label="仲裁庭经审理查明(写明仲裁庭认定的事实):"
prop="arbitrationResult"
prop="factDetermi"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -180,8 +180,8 @@
<el-input
type="textarea"
:autosize="{ minRows: 4 }"
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.factDetermi"
>
</el-input>
</el-form-item>
@@ -189,11 +189,11 @@
<el-col :span="24">
<el-form-item
label="综上所述:"
prop="arbitrationResult"
prop="caseSketch"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -201,8 +201,8 @@
<el-input
type="textarea"
autosize
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.caseSketch"
>
</el-input>
</el-form-item>
@@ -210,11 +210,11 @@
<el-col :span="24">
<el-form-item
label="本庭认为:"
prop="arbitrationResult"
prop="arbitrateThink"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -222,8 +222,8 @@
<el-input
type="textarea"
autosize
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.arbitrateThink"
>
</el-input>
</el-form-item>
@@ -231,11 +231,11 @@
<el-col :span="24">
<el-form-item
label="裁决如下:"
prop="arbitrationResult"
prop="rulingFollows"
:rules="[
{
required: true,
message: '请输入仲裁结果',
message: '请输入',
trigger: 'blur',
},
]"
@@ -243,8 +243,8 @@
<el-input
type="textarea"
autosize
placeholder="请输入仲裁结果"
v-model="form2.arbitrationResult"
placeholder="请输入"
v-model="form2.rulingFollows"
>
</el-input>
</el-form-item>
+2 -2
View File
@@ -11,8 +11,8 @@ const name = process.env.VUE_APP_TITLE || '智慧仲裁管理系统' // 网页
const port = process.env.port || process.env.npm_config_port || 80 // 端口
const API = 'http://121.40.189.20:9001' //测试
// const API = 'http://192.168.3.77:8080' //Q
// const API = 'http://121.40.189.20:9001' //测试
const API = 'http://192.168.3.77:8080' //Q
// vue.config.js 配置说明
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions