diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 0947afd..2fb5797 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -738,7 +738,7 @@ export default { this.form = row; this.visible = true; this.dialogtitle = "立案详情"; - this.getInfo(row); + // this.getInfo(row); }, // 案件日志 caselogRow(row) { @@ -777,10 +777,10 @@ export default { editRow(row) { this.flag = "1"; this.form = row; - console.log(this.form) + // console.log(this.form) this.visible = true; this.dialogtitle = "立案修改"; - this.getInfo(row); + // this.getInfo(row); }, // 列表提交立案 onsubmitRow(row) { @@ -932,7 +932,7 @@ export default { console.log(row, "开庭审理"); this.showtrialincourt = true; this.form = row; - this.getInfo(row); + // this.getInfo(row); }, canceltrialincourt() { this.showtrialincourt = false; diff --git a/src/views/caseManagement/components/caseCompressionPackage.vue b/src/views/caseManagement/components/caseCompressionPackage.vue index 88caf25..7e902fa 100644 --- a/src/views/caseManagement/components/caseCompressionPackage.vue +++ b/src/views/caseManagement/components/caseCompressionPackage.vue @@ -47,6 +47,16 @@ + + + + + + + + + + - - -
-
+
+
-
申请人主体信息:
+
申请人
- - -
- - - - + + + 自然人 + 机构 + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 男 + 女 + + + + + - - - - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + - - - - - + + + + - - - - -
-
-
代理人信息:
-
- - - - - - - - - - - - - - + + + + - - - - - - - - - -
- - - - -
-
+ + + +
-
被申请人主体信息:
+
申请人代理人
- - -
- - - - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + - - - - - - - - - - + + + + + +
+
+ 新增申请人主体信息 + + +
+ +
+
+
被申请人
+
+ +
+ + + + 自然人 + 机构 + + + + + - - - - - + + + + - - - - - + + + + + + - }, - ]"> - - 男 - 女 - - - - - + - - - - - -
-
-
代理人信息:
-
- - - - + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 男 + 女 + + + + + - - - - - + + + + - - - - - + + + + - - - - + + + + + + + + + + + + + + +
+
+
被申请人代理人
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- -
+ 新增被申请人主体信息 + + +
@@ -649,8 +765,6 @@ 取 消
--> - -
@@ -680,6 +794,11 @@
案件异议信息:{{ detailsAwardNum.adjudicaCounterReason }}
+
@@ -687,7 +806,7 @@ + + \ No newline at end of file diff --git a/src/views/deliveryRecord/components/resend.vue b/src/views/deliveryRecord/components/resend.vue index d8e588d..6c3f6c4 100644 --- a/src/views/deliveryRecord/components/resend.vue +++ b/src/views/deliveryRecord/components/resend.vue @@ -1,69 +1,69 @@ - - - - + + + + \ No newline at end of file diff --git a/src/views/deliveryRecord/emailRecord.vue b/src/views/deliveryRecord/emailRecord.vue index 90f858b..d5488e0 100644 --- a/src/views/deliveryRecord/emailRecord.vue +++ b/src/views/deliveryRecord/emailRecord.vue @@ -27,7 +27,14 @@ + + + + @@ -38,12 +45,12 @@ import { emailList, } from "@/api/deliveryRecord/deliveryRecord.js"; - +import emailEdits from "./components/emailEdits.vue"; import { getDicts } from '@/api/system/dict/data.js' export default { name: "paymentList", dicts: ["case_status"], - components: {}, + components: {emailEdits}, data() { return { queryParams: { @@ -60,6 +67,8 @@ export default { // 校验表单 rules: {}, dataList: [], + emailVidable:false, + emailRow:{}, }; }, created() { @@ -69,6 +78,30 @@ export default { }) }, methods: { + // 邮箱编辑内容 + emailEditing(data){ + this.emailVidable = true + this.emailRow = data; + console.log(data) + }, + // 重新发送 + resendCounts(row){ + if(row.sendStatus=='未发送'){ + row.sendStatus = 0 + }else if(row.sendStatus=='已发送'){ + row.sendStatus = 1 + } + reSendMailRecord(row).then(res=>{ + console.log(res) + this.$message.success('发送成功'); + this.getList(this.queryParams); + }) + + }, + // 关闭弹窗 + cancelEmail(){ + this.emailVidable = false + }, /** 搜索按钮操作 */ handleQuery() { this.queryParams.pageNum = 1; diff --git a/src/views/onlyoffice/onlyoffice.vue b/src/views/onlyoffice/onlyoffice.vue index 4c286ef..49594cf 100644 --- a/src/views/onlyoffice/onlyoffice.vue +++ b/src/views/onlyoffice/onlyoffice.vue @@ -40,8 +40,6 @@ export default { .then((res) => { this.config = res.data; this.config.editorConfig.callbackUrl = this.config.editorConfig.callbackUrl + "/" + id; - console.log(this.config,"OOOOOOOOOOOOOOOOOOOOOOOOOOO"); - // this.config.callbackUrl = this.config.callbackUrl + `/${this.userId}`; var docEditor = new DocsAPI.DocEditor("placeholder", this.config); }); diff --git a/vue.config.js b/vue.config.js index b104233..bf4ae09 100644 --- a/vue.config.js +++ b/vue.config.js @@ -12,10 +12,10 @@ 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:8001' //测试 + // const API = 'http://121.40.189.20:8001' //测试 // const API = 'http://172.16.1.26:8001' //Bs // const API = 'http://192.168.3.77:9001' //Q -// const API = 'http://172.16.1.26:8001' //W +const API = 'http://172.16.0.241:8001' //W // vue.config.js 配置说明 //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions