-
@@ -12,7 +12,12 @@
:value="dict.value">
-->
-
+
+ {{
+ ruleForm.personApplicationFile.fileName ? ruleForm.personApplicationFile.fileName : ""
+ }}
+
+
{{
ruleForm.applicationFile.fileName ? ruleForm.applicationFile.fileName : ""
}}
@@ -30,10 +35,15 @@
}}
+
+ 选择自然人调解申请书模板
+
- 选择调解申请书模板
+ 选择机构调解申请书模板
{
this.$message.success('修改成功');
this.$emit("cancelEdit");
@@ -156,12 +170,25 @@ export default {
handleRemove(file, fileList) {
console.log(file, fileList);
},
+ // 机构
handleSuccess(res) {
+ console.log(res,'机构上传成功');
this.$message.success('上传成功');
// this.submitForm.annexIds.push(res.annexId);
this.submitForm.annexIds[1] = res.annexId;
},
-
+ // 自然人
+ handleSuccessC(res) {
+ console.log(res,'自然人上传成功');
+ this.$message.success('上传成功');
+ this.submitForm.annexIds[4] = res.annexId;
+ },
+ handleRemoveC(file, fileList) {
+ console.log(file, fileList);
+ },
+ handleChangeC(file, fileList) {
+ this.isImg = file.type === '.doc' || '.docx'
+ },
handleChangeA(file, fileList) {
this.isImg = file.type === '.doc' || '.docx'
},
@@ -171,6 +198,7 @@ export default {
handleRemoveA(file, fileList) {
console.log(file, fileList);
},
+ // 和解协议
handleSuccessA(res) {
this.$message.success('上传成功');
// this.submitForm.annexIds.push(res.annexId);
@@ -186,6 +214,7 @@ export default {
handleRemoveB(file, fileList) {
console.log(file, fileList);
},
+ // 调解书
handleSuccessB(res) {
this.$message.success('上传成功');
// this.submitForm.annexIds.push(res.annexId);
diff --git a/vue.config.js b/vue.config.js
index 29dce0a..5d9fa00 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -12,13 +12,11 @@ const name = process.env.VUE_APP_TITLE || '调解系统' // 网页标题
const port = process.env.port || process.env.npm_config_port || 80 // 端口
// const API = 'http://121.40.189.20:9001' //生产
-// const API = 'http://121.40.189.20:6001' //测试
+const API = 'http://121.40.189.20:6001' //测试
// const API = 'http://192.168.3.18:6001' //B
// const API = 'http://172.16.0.237:6001' //Q
// const API = 'http://172.16.1.43:6001' //w
-// const API = 'http://172.16.1.30:6001' //Q
-// const API = 'http://172.16.1.43:6001' //w
-// const API = 'http://172.16.1.17:6001' //w
+
// vue.config.js 配置说明
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
// 这里只列一部分,具体配置参考文档