diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue
index 9ae7bd7..9efd414 100644
--- a/src/views/caseManagement/caseList.vue
+++ b/src/views/caseManagement/caseList.vue
@@ -1,41 +1,22 @@
-
+
-
+
-
+ /> -->
+
-
-
+
+
- 搜索
- 重置
+ 搜索
+ 重置
- 案件录入
- 案件批量导入
+ 案件录入
+ 案件批量导入
@@ -91,111 +50,36 @@
}}
-
-
-
-
+
+
+
+
-
+
{{ scope.row.caseStatusName }}
-
+
- 详情
+ 详情
- 案件日志
- 修改
- 提交
- 删除
- 立案审查
- 缴费
+ 案件日志
+ 修改
+ 提交
+ 删除
+ 立案审查
+ 缴费
- 组庭确认
- 组庭审核
- 审核仲裁方式
- 组庭确认
+ 组庭审核
+ 审核仲裁方式
+ 书面审理
- 开庭审理
- 生成裁决书
+ v-hasPermi="['caseManagement:list:hear']">书面审理
+ 开庭审理
+ 生成裁决书
-
+
-
+
-
+
+
-
+
-
+
-
+
+
-
+
+
-
+
+
-
+
-
+
@@ -388,6 +175,7 @@ import {
submitCaseApply,
selectCaseApply,
} from "@/api/caseAccess/caseEntry";
+import { listDept } from "@/api/system/dept";
import { document, caseLogRecordList } from "@/api/caseManagement/caseManagement";
export default {
@@ -451,11 +239,13 @@ export default {
caseAttachList: [], //案件质证资料
showcaseLog: false, //案件日志弹框显示
flagLoading: true, //案件日志弹框loading
- caselogDataArr: []
+ caselogDataArr: [],
+ options:[]//机构数据
};
},
created() {
this.getcaseApply(this.queryParams);
+ this.getInstitution()
},
methods: {
cancel() {
@@ -464,6 +254,20 @@ export default {
cancelBatch() {
this.openbatch = false;
},
+ // 机构发生变化
+ changeDept(data){
+ this.queryParams.nameId = data[0]
+ },
+ // 获取机构数据
+ getInstitution(){
+ listDept().then(res=>{
+ res.data.forEach(item=>{
+ item.value = item.deptId;
+ item.label = item.deptName
+ })
+ this.options = this.handleTree(res.data, "deptId");
+ })
+ },
/** 查询列表 */
getcaseApply(val) {
this.loading = true;
@@ -580,7 +384,7 @@ export default {
this.getcaseApply(this.queryParams);
this.$modal.msgSuccess("立案申请成功");
})
- .catch(() => {});
+ .catch(() => { });
},
// 立案审查
filingreviewRow(row) {
@@ -681,7 +485,7 @@ export default {
this.$modal.msgSuccess("裁决书生成成功");
}
})
- .catch(() => {});
+ .catch(() => { });
},
// 归档
fileRow(row) {
@@ -724,13 +528,12 @@ export default {
this.getcaseApply(this.queryParams);
this.$modal.msgSuccess("删除成功");
})
- .catch(() => {});
+ .catch(() => { });
},
},
};