diff --git a/src/api/caseFiling/caseFiling.js b/src/api/caseFiling/caseFiling.js
index 3337c66..c8c9d3a 100644
--- a/src/api/caseFiling/caseFiling.js
+++ b/src/api/caseFiling/caseFiling.js
@@ -19,4 +19,12 @@ export function videoList(data) {
method: 'get',
params: data
})
-}
\ No newline at end of file
+}
+// 下载案件压缩包
+export function downloadCaseZipFile(data) {
+ return request({
+ url: '/caseApplication/downloadCaseZipFile',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/src/api/officialSeal/officialSeal.js b/src/api/officialSeal/officialSeal.js
index 3cd3a7b..d79a65e 100644
--- a/src/api/officialSeal/officialSeal.js
+++ b/src/api/officialSeal/officialSeal.js
@@ -160,4 +160,12 @@ export function saveFatchRules(data) {
method: 'post',
data: data
})
+}
+// 模板字段列表
+export function getTemplateInfoById(data) {
+ return request({
+ url: '/deptIdentify/getTemplateInfoById',
+ method: 'get',
+ params: data
+ })
}
\ No newline at end of file
diff --git a/src/views/caseFiling/archiveList.vue b/src/views/caseFiling/archiveList.vue
index 78557bc..be3521f 100644
--- a/src/views/caseFiling/archiveList.vue
+++ b/src/views/caseFiling/archiveList.vue
@@ -34,9 +34,6 @@
重置
-
@@ -59,7 +56,7 @@
v-if="scope.row.filearbitraUrl && scope.row.filearbitraUrl !== ''"
@click="showModel(scope.row)">查看裁决书
归档详情
-
+ 下载案件压缩包
@@ -75,7 +72,7 @@
diff --git a/src/views/caseManagement/components/trialincourtDialog.vue b/src/views/caseManagement/components/trialincourtDialog.vue
index 268e98a..642402c 100644
--- a/src/views/caseManagement/components/trialincourtDialog.vue
+++ b/src/views/caseManagement/components/trialincourtDialog.vue
@@ -310,7 +310,10 @@ export default {
user: "",
userId: 1,
showArbitrationresults: false,
- form2: {},
+ form2: {
+ isAbsence:0,
+ appliIsAbsen:0
+ },
applicateArr: [], //申请人案件资料
quiltArr: [], //被申请人案件资料
recordArr: [], //笔录附件
@@ -418,6 +421,7 @@ export default {
submitForm() {
this.$refs["form2"].validate((valid) => {
if (valid) {
+
creatTrialRecordnew({
caseAppliId: this.formData.id,
// evidenDetermi: this.form2.evidenDetermi,
@@ -450,6 +454,9 @@ export default {
this.$modal.msgSuccess("提交成功");
this.showsubmit = false;
this.closeArbitrationresults();
+ this.form2.respondentOpinion ="";
+ this.form2.applicantOpinion = "";
+
})
.catch((err) => { });
}
diff --git a/src/views/index.vue b/src/views/index.vue
index 6adea49..5a271bb 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -114,7 +114,7 @@
-
{{ dataCount.caseApplyAwardCheck }}
+
{{ dataCount.arbitratorApplyAwardConfirm }}
diff --git a/src/views/officialSeal/components/temmplateList.vue b/src/views/officialSeal/components/temmplateList.vue
index 083ccee..13696c1 100644
--- a/src/views/officialSeal/components/temmplateList.vue
+++ b/src/views/officialSeal/components/temmplateList.vue
@@ -14,7 +14,7 @@