diff --git a/src/api/caseAccess/caseEntry.js b/src/api/caseAccess/caseEntry.js
index 682a2f5..a8603ba 100644
--- a/src/api/caseAccess/caseEntry.js
+++ b/src/api/caseAccess/caseEntry.js
@@ -73,3 +73,11 @@ export function updateCaseLockStatus(data) {
data: data,
});
}
+// 获取证据目录
+export function evidenceTree(data) {
+ return request({
+ url: "/evidence/evidenceTree",
+ method: "get",
+ params: data,
+ });
+}
diff --git a/src/api/deliveryRecord/deliveryRecord.js b/src/api/deliveryRecord/deliveryRecord.js
new file mode 100644
index 0000000..075aef5
--- /dev/null
+++ b/src/api/deliveryRecord/deliveryRecord.js
@@ -0,0 +1,19 @@
+import request from '@/utils/request'
+
+// 查询邮件列表
+export function emailList(data) {
+ return request({
+ url: '/sendMailRecord/list',
+ method: 'get',
+ params: data
+ })
+}
+
+// 查询短信列表
+export function smsList(data) {
+ return request({
+ url: '/caseApplication/smsRecord',
+ method: 'post',
+ data: data
+ })
+}
\ No newline at end of file
diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue
index e200ed5..c6dd821 100644
--- a/src/views/caseManagement/caseList.vue
+++ b/src/views/caseManagement/caseList.vue
@@ -132,7 +132,7 @@
解锁
- 上传证据目录
+ 上传证据目录
+
+
\ No newline at end of file
diff --git a/src/views/deliveryRecord/smsRecord.vue b/src/views/deliveryRecord/smsRecord.vue
new file mode 100644
index 0000000..cb9c10a
--- /dev/null
+++ b/src/views/deliveryRecord/smsRecord.vue
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ {{
+ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/officialSeal/officialSealList.vue b/src/views/officialSeal/officialSealList.vue
new file mode 100644
index 0000000..c48a714
--- /dev/null
+++ b/src/views/officialSeal/officialSealList.vue
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+ {{
+ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 认证
+ 查看详情
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue
index e502b4e..fb44132 100644
--- a/src/views/system/dept/index.vue
+++ b/src/views/system/dept/index.vue
@@ -2,21 +2,12 @@
-
+
-
+
@@ -27,40 +18,22 @@
- 新增
+ 新增
- 展开/折叠
+ 展开/折叠
-
+
-
+
@@ -70,28 +43,12 @@
- 修改
- 新增
- 删除
+ 修改
+ 新增
+ 删除
@@ -100,7 +57,12 @@
-
+
+
@@ -136,14 +98,18 @@
+
+
+
- {{dict.label}}
+ {{ dict.label }}
@@ -168,6 +134,7 @@ export default {
components: { Treeselect },
data() {
return {
+ flag:false,
// 遮罩层
loading: true,
// 显示搜索条件
@@ -199,6 +166,9 @@ export default {
deptName: [
{ required: true, message: "部门名称不能为空", trigger: "blur" }
],
+ deptType: [
+ { required: true, message: "部门类型不能为空", trigger: "blur" }
+ ],
orderNum: [
{ required: true, message: "显示排序不能为空", trigger: "blur" }
],
@@ -272,6 +242,12 @@ export default {
},
/** 新增按钮操作 */
handleAdd(row) {
+ console.log(row,"LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL");
+ if(row == 1){
+ this.flag = false;
+ }else{
+ this.flag = true;
+ }
this.reset();
if (row != undefined) {
this.form.parentId = row.deptId;
@@ -307,7 +283,7 @@ export default {
});
},
/** 提交按钮 */
- submitForm: function() {
+ submitForm: function () {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.deptId != undefined) {
@@ -328,12 +304,12 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
- this.$modal.confirm('是否确认删除名称为"' + row.deptName + '"的数据项?').then(function() {
+ this.$modal.confirm('是否确认删除名称为"' + row.deptName + '"的数据项?').then(function () {
return delDept(row.deptId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
- }).catch(() => {});
+ }).catch(() => { });
}
}
};