From 5a179e0bfc37e06cfa3941d7a1621333a13eaba5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 20 Sep 2023 15:40:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=86=E9=A2=91=E5=AE=A1=E7=90=86=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/trialincourtDialog.vue | 160 ++++++++++++++++-- 1 file changed, 145 insertions(+), 15 deletions(-) diff --git a/src/views/caseManagement/components/trialincourtDialog.vue b/src/views/caseManagement/components/trialincourtDialog.vue index a4ecf95..e54bc8b 100644 --- a/src/views/caseManagement/components/trialincourtDialog.vue +++ b/src/views/caseManagement/components/trialincourtDialog.vue @@ -5,7 +5,6 @@ :visible="showtrialincourt" @close="cancel" :destroy-on-close="true" - center > - 发起会议 - 提交仲裁结果 + 提交仲裁结果 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -149,33 +265,47 @@ export default { data() { return { formData: {}, - user: '' + user: "", + showArbitrationresults: false, + form2: {}, }; }, watch: { showtrialincourt: { handler(val) { if (val) { - this.formData = this.form + this.formData = this.form; } - } - } + }, + }, }, - created () { + created() { this.getUser(); }, methods: { getUser() { - getUserProfile().then(response => { - console.log(response,'response'); + getUserProfile().then((response) => { this.user = response.data.userName; }); }, // 打开会议 openmeeting() { - window.open(`http://47.97.117.253:9005/#/home?name=${this.user}`) + window.open(`http://47.97.117.253:9005/#/home?name=${this.user}`); + }, + // 提交仲裁结果 + openArbitrationresults() { + this.showArbitrationresults = true; + }, + closeArbitrationresults() { + this.showArbitrationresults = false; + }, + submitForm() { + this.$refs["form2"].validate((valid) => { + if (valid) { + console.log(6666666666); + } + }); }, - submitForm() {}, cancel() { this.$emit("canceltrialincourt"); }, -- 2.54.0