+
@@ -80,25 +69,28 @@
{{ formData.hearDate }}
+
+
+
+ 选取文件
+
+ 只能上传jpg/png文件,且不超过500kb
+
+
+
发起会议
-
确认会议结果
+
确认会议结果
@@ -113,6 +105,7 @@ import {
} from "@/api/caseManagement/caseManagement.js";
import { getUserProfile } from "@/api/system/user";
import { reserveConferenceList } from "@/api/metting/metting.js";
+import { getToken } from "@/utils/auth";
export default {
props: ["mediationVisable", "mediationData", "queryParams"],
data() {
@@ -130,7 +123,15 @@ export default {
user: "",
userId: null,
flieList: [],
- mediationType: true
+ mediationType: true,
+ headers: {
+ Authorization: "Bearer " + getToken(),
+ },
+ filedata: {
+ annexType: 7,
+ },
+ fileList:[],
+ attachList:[],
};
},
watch: {
@@ -140,7 +141,7 @@ export default {
this.title = "开庭调解";
this.mediationType = true;
} else if (this.mediationData.mediationMethod == "2") {
- this.title = "书面调解";
+ this.title = "线下调解";
this.mediationType = false;
}
if (val) {
@@ -151,8 +152,24 @@ export default {
}
}
},
- created() {},
+ created() { },
methods: {
+ /**上传地址*/
+ UploadUrl() {
+ return window.location.origin + "/API/common/upload";
+ },
+ handlePreview(file) {
+ },
+ handleRemove(file, fileList) {
+
+ },
+ beforeUpload(flie, fileList) {
+ this.fileList = fileList;
+ },
+ handlSuccess(res, file) {
+ this.attachList = [{annexId:res.annexId}];
+ // this.$set(this.mediationData, "attachList", {annexId:res.annexId});
+ },
/** 获取案件详情信息 */
caseApplicationSelectByIdFn(data) {
caseApplicationSelectById(data).then(res => {
@@ -207,9 +224,14 @@ export default {
this.$emit("cancelMediation");
},
submitMediation() {
+ if (this.fileList.length < 1 && !this.mediationType) {
+ this.$modal.msgError("请上传调解书");
+ return
+ }
this.mediationFn({
id: this.mediationData.id,
- caseFlowId: this.mediationData.caseFlowId
+ caseFlowId: this.mediationData.caseFlowId,
+ attachList: this.attachList
});
}
}
diff --git a/src/views/caseManagement/components/payDialog.vue b/src/views/caseManagement/components/payDialog.vue
index 7b11691..c127571 100644
--- a/src/views/caseManagement/components/payDialog.vue
+++ b/src/views/caseManagement/components/payDialog.vue
@@ -7,7 +7,7 @@
formPayDetail.caseNum
}}
{{
- formPayDetailAffiliate.applicationOrganName || ''
+ formPayDetailAffiliate.applicationName || ''
}}
{{
formPayDetail.caseSubjectAmount
diff --git a/src/views/caseManagement/components/paymentdetailsDialog.vue b/src/views/caseManagement/components/paymentdetailsDialog.vue
index f04f9c4..ba3aa98 100644
--- a/src/views/caseManagement/components/paymentdetailsDialog.vue
+++ b/src/views/caseManagement/components/paymentdetailsDialog.vue
@@ -8,9 +8,9 @@
-
-
-
+
diff --git a/src/views/caseManagement/components/timeConfirm.vue b/src/views/caseManagement/components/timeConfirm.vue
index 3d25dd9..a66359a 100644
--- a/src/views/caseManagement/components/timeConfirm.vue
+++ b/src/views/caseManagement/components/timeConfirm.vue
@@ -2,27 +2,27 @@
-
@@ -30,7 +30,7 @@
diff --git a/src/views/caseprocessManagement/components/addNodeprocess.vue b/src/views/caseprocessManagement/components/addNodeprocess.vue
index 99b98a6..9f5f01b 100644
--- a/src/views/caseprocessManagement/components/addNodeprocess.vue
+++ b/src/views/caseprocessManagement/components/addNodeprocess.vue
@@ -25,6 +25,9 @@
+
+
+