|
|
@@ -11,7 +11,7 @@
|
|
11
|
11
|
clearable
|
|
12
|
12
|
@keyup.enter.native="handleQuery"
|
|
13
|
13
|
/> -->
|
|
14
|
|
- <el-cascader :options="options" @change="changeDept" :props="{ checkStrictly: true }" clearable></el-cascader>
|
|
|
14
|
+ <el-cascader v-model="queryParams.nameId" :options="options" @change="changeDept" :props="{ checkStrictly: true }" clearable></el-cascader>
|
|
15
|
15
|
</el-form-item>
|
|
16
|
16
|
<el-form-item label="案件状态" prop="caseStatus">
|
|
17
|
17
|
<el-select v-model="queryParams.caseStatus" placeholder="请选择案件状态" clearable @keyup.enter.native="handleQuery">
|
|
|
@@ -97,10 +97,11 @@
|
|
97
|
97
|
v-if="scope.row.caseStatus == 7" v-hasPermi="['caseManagement:list:checkarbitrationway']">审核仲裁方式</el-button>
|
|
98
|
98
|
<el-button size="mini" type="text" icon="el-icon-edit-outline" @click="adjudicaterecordRow(scope.row)"
|
|
99
|
99
|
v-if="scope.row.caseStatus == 9 && scope.row.arbitratMethod == 2"
|
|
100
|
|
- v-hasPermi="['caseManagement:list:hear']">书面审理</el-button>
|
|
|
100
|
+ >书面审理</el-button>
|
|
|
101
|
+ <!-- v-hasPermi="['caseManagement:list:hear']" -->
|
|
101
|
102
|
<el-button size="mini" type="text" icon="el-icon-service" @click="trialcourtRow(scope.row)"
|
|
102
|
103
|
v-if="scope.row.caseStatus == 8 && scope.row.arbitratMethod == 1"
|
|
103
|
|
- v-hasPermi="['caseManagement:list:hear']">开庭审理</el-button>
|
|
|
104
|
+ >开庭审理</el-button>
|
|
104
|
105
|
<el-button size="mini" type="text" icon="el-icon-document" @click="generateawardRow(scope.row)"
|
|
105
|
106
|
v-if="scope.row.caseStatus == 10" v-hasPermi="['caseManagement:list:createaward']">生成裁决书</el-button>
|
|
106
|
107
|
<!-- <el-button
|
|
|
@@ -207,9 +208,10 @@ export default {
|
|
207
|
208
|
caseNum: undefined,
|
|
208
|
209
|
// caseStatusList: [0, 1, 2, 5, 6, 7, 8, 9, 10, 16],
|
|
209
|
210
|
caseStatusList: [0, 1, 2, 5, 6, 7, 8, 9, 10],
|
|
210
|
|
- hearDate: "",
|
|
|
211
|
+ // hearDate: "",
|
|
211
|
212
|
caseStatus: null,
|
|
212
|
213
|
applicantName: "",
|
|
|
214
|
+ nameId: '',
|
|
213
|
215
|
pageNum: 1,
|
|
214
|
216
|
pageSize: 10,
|
|
215
|
217
|
},
|
|
|
@@ -295,7 +297,9 @@ export default {
|
|
295
|
297
|
resetQuery() {
|
|
296
|
298
|
this.resetForm("queryForm");
|
|
297
|
299
|
(this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10]),
|
|
298
|
|
- this.getcaseApply(this.queryParams);
|
|
|
300
|
+ this.queryParams.applicantName = '',
|
|
|
301
|
+ this.queryParams.nameId = '',
|
|
|
302
|
+ this.getcaseApply(this.queryParams);
|
|
299
|
303
|
},
|
|
300
|
304
|
// 案件录入
|
|
301
|
305
|
filingApplication() {
|