diff --git a/src/api/deliveryRecord/deliveryRecord.js b/src/api/deliveryRecord/deliveryRecord.js
index 075aef5..8c9a19e 100644
--- a/src/api/deliveryRecord/deliveryRecord.js
+++ b/src/api/deliveryRecord/deliveryRecord.js
@@ -10,10 +10,11 @@ export function emailList(data) {
}
// 查询短信列表
-export function smsList(data) {
+export function smsList(data,params) {
return request({
url: '/caseApplication/smsRecord',
method: 'post',
- data: data
+ data: data,
+ params:params
})
}
\ No newline at end of file
diff --git a/src/api/officialSeal/officialSeal.js b/src/api/officialSeal/officialSeal.js
new file mode 100644
index 0000000..6e74e67
--- /dev/null
+++ b/src/api/officialSeal/officialSeal.js
@@ -0,0 +1,27 @@
+import request from '@/utils/request'
+
+// 查询邮件列表
+export function deptIdentifyList(data) {
+ return request({
+ url: '/deptIdentify/list',
+ method: 'get',
+ params: data
+ })
+}
+// 是否启用
+export function enableDept(data) {
+ return request({
+ url: '/deptIdentify/enableDept',
+ method: 'post',
+ data: data
+ })
+}
+
+// 认证
+export function selectDeptIndefiUrl(data) {
+ return request({
+ url: 'deptIdentify/selectDeptIndefiUrl',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/src/views/awardManagement/listofAwards.vue b/src/views/awardManagement/listofAwards.vue
index 91d63e9..a19ce61 100644
--- a/src/views/awardManagement/listofAwards.vue
+++ b/src/views/awardManagement/listofAwards.vue
@@ -5,12 +5,19 @@
-
+
+
+
+
+
快递信息
送达裁决书
案件归档
@@ -89,8 +96,7 @@
@closeDeliveryModel="closeDeliveryModel" :flagLoading="flagLoading">
+ @getcaseApply="getList" :operateTitle="operateTitle" @cancelOperate="cancelOperate" :operateData="operateData">
@@ -114,7 +120,7 @@ import { getDicts } from '@/api/system/dict/data.js'
export default {
name: "paymentList",
dicts: ["case_status"],
- components: { paymentdetailsDialog, mailawardDialog, expressDeliveryDialog,operateDialog },
+ components: { paymentdetailsDialog, mailawardDialog, expressDeliveryDialog, operateDialog },
data() {
return {
queryParams: {
@@ -149,9 +155,21 @@ export default {
deliveryDataArr: [],//快递信息数据
flagLoading: true,
operateVisable: false,
- operateData:{},
- operateStatus:0,
- operateTitle:""
+ operateData: {},
+ operateStatus: 0,
+ operateTitle: "",
+ selectCaseStatusList: [
+ {
+ label: "待办案件",
+ value: 0
+ },
+ {
+ label: "已办案件",
+ value: 1
+ }
+ ],
+ caseStatusType: false,
+ btnStatus: true,
};
},
created() {
@@ -194,6 +212,14 @@ export default {
handleQuery() {
this.queryParams.pageNum = 1;
this.getList(this.queryParams);
+ if (this.queryParams.selectCaseStatus == 1) {
+ this.queryParams.caseStatus = null;
+ this.caseStatusType = true;
+ this.btnStatus = false;
+ } else if (this.queryParams.selectCaseStatus == 0) {
+ this.caseStatusType = false;
+ this.btnStatus = true;
+ }
},
/** 重置按钮操作 */
resetQuery() {
diff --git a/src/views/caseFiling/components/archiveDetailsDialog.vue b/src/views/caseFiling/components/archiveDetailsDialog.vue
index 6755857..cc834d1 100644
--- a/src/views/caseFiling/components/archiveDetailsDialog.vue
+++ b/src/views/caseFiling/components/archiveDetailsDialog.vue
@@ -1,12 +1,6 @@
-
+
@@ -20,13 +14,12 @@
-
+
-
+
-
+
+
@@ -42,7 +35,7 @@ import caseInfo from "./caseInfo.vue";
import caselogInfo from "./caselogInfo.vue";
import expressDeliveryInfo from "./expressDeliveryInfo.vue";
export default {
- props: ["showarchiveDetails", "detailform", "flagLoading","videoList"],
+ props: ["showarchiveDetails", "detailform", "flagLoading", "videoList"],
components: {
caseInfo,
caselogInfo,
@@ -55,11 +48,14 @@ export default {
caselogDataArr: [], //案件日志
deliveryDataArr: [], //快递信息
noData: false,
- videoUrl:''
+ videoUrl:[],
+ headPath:"",
+ videoFlag:false
};
},
watch: {
detailform(newValue) {
+ this.headPath = window.location.origin + "/API";
if (newValue) {
this.caseApplicationObj = this.detailform.caseApplication;
this.caselogDataArr = this.detailform.caseLogRecordList;
@@ -70,18 +66,18 @@ export default {
methods: {
handleClick(tab, event) {
// console.log(tab, event);
- let headPath = window.location.origin + "/API";
- this.videoUrl = headPath + this.videoList[0].annexPath;
+ if (this.videoList) {
+ this.videoFlag = true;
+ // this.videoUrl = headPath + this.videoList[0].annexPath;
+ this.videoUrl = this.videoList;
+ }else{
+ this.videoFlag = false;
+ }
+
},
cancel() {
this.$emit("cancelpaymentdetails");
},
- getVideo(){
- // console.log(this.videoList[0].annexPath,"PPPPPPPPPPPPPPPP");
- let headPath = window.location.origin + "/API";
- this.videoUrl = headPath + this.videoList[0].annexPath;
- // window.open(headPath + this.videoList[0].annexPath)
- }
},
};
@@ -92,20 +88,29 @@ export default {
background: #ffffff;
border-radius: 20px;
}
+
::v-deep .el-dialog__body {
height: 700px !important;
- overflow: auto !important;
+ overflow: hidden;
}
+
+::v-deep .el-tabs__content {
+ height: 700px;
+ overflow-y: scroll;
+}
+
.loading {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
+
.el-icon-loading {
font-size: 50px;
}
}
+
.noData {
width: 100%;
height: 400px;
diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue
index c6dd821..cba7cd5 100644
--- a/src/views/caseManagement/caseList.vue
+++ b/src/views/caseManagement/caseList.vue
@@ -15,11 +15,17 @@
clearable>
-
+
+
+
+
+
+
案件日志
修改
提交
删除
立案审查
缴费
组庭确认
组庭审核
审核仲裁方式
书面审理
开庭审理
证据修改
- 证据修改
+ 开庭时间
锁定
解锁
- 上传证据目录
+ 上传证据目录
@@ -17,22 +8,19 @@
}}
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
- 认证
- 查看详情
+ 认证
+ 启用
@@ -44,8 +32,10 @@
-
\ No newline at end of file
+
\ No newline at end of file