|
|
@@ -9,7 +9,7 @@
|
|
9
|
9
|
<el-form
|
|
10
|
10
|
ref="form"
|
|
11
|
11
|
:model="formData"
|
|
12
|
|
- label-width="150px"
|
|
|
12
|
+ label-width="180px"
|
|
13
|
13
|
:disabled="true"
|
|
14
|
14
|
>
|
|
15
|
15
|
<p>案件信息:</p>
|
|
|
@@ -118,30 +118,58 @@
|
|
118
|
118
|
</el-form-item>
|
|
119
|
119
|
</el-col>
|
|
120
|
120
|
</el-row>
|
|
121
|
|
- <el-col :span="24">
|
|
|
121
|
+ <!-- <el-col :span="24">
|
|
122
|
122
|
<el-form-item label="案件资料:" prop="claimPrinciOwed">
|
|
123
|
123
|
<el-input v-model="formData.claimPrinciOwed" placeholder="请输入" />
|
|
124
|
124
|
</el-form-item>
|
|
|
125
|
+ </el-col> -->
|
|
|
126
|
+ <el-col :span="24">
|
|
|
127
|
+ <el-form-item
|
|
|
128
|
+ label="申请人案件证据:"
|
|
|
129
|
+ >
|
|
|
130
|
+ <div v-if="applicateArr.length == 0">申请人暂未提供证据!</div>
|
|
|
131
|
+ <div v-else v-for="(item, index) in applicateArr" :key="index">
|
|
|
132
|
+ <a href="#" @click="toFile(item, index)" style="color: blue">
|
|
|
133
|
+ {{ item.annexName }}
|
|
|
134
|
+ </a>
|
|
|
135
|
+ </div>
|
|
|
136
|
+ </el-form-item>
|
|
125
|
137
|
</el-col>
|
|
|
138
|
+ <el-col :span="24">
|
|
|
139
|
+ <el-form-item
|
|
|
140
|
+ label="被申请人案件证据:"
|
|
|
141
|
+ >
|
|
|
142
|
+ <div v-if="quiltArr.length == 0">被申请人暂未提供证据!</div>
|
|
|
143
|
+ <div v-for="(item, index) in quiltArr" :key="index">
|
|
|
144
|
+ <a href="#" @click="toFile1(item, index)" style="color: blue">
|
|
|
145
|
+ {{ item.annexName }}
|
|
|
146
|
+ </a>
|
|
|
147
|
+ </div>
|
|
|
148
|
+ </el-form-item>
|
|
|
149
|
+ </el-col>
|
|
|
150
|
+ <!-- </el-form> -->
|
|
126
|
151
|
</el-form>
|
|
127
|
152
|
<el-button @click="openmeeting" type="primary"
|
|
128
|
153
|
>发起会议
|
|
129
|
154
|
<!-- <iframe src="http://47.97.117.253:9005/#/">发起会议</iframe> -->
|
|
130
|
155
|
</el-button>
|
|
131
|
156
|
<el-button @click="openArbitrationresults" type="primary"
|
|
132
|
|
- >提交仲裁结果</el-button
|
|
133
|
|
- >
|
|
|
157
|
+ >生成庭审笔录</el-button
|
|
|
158
|
+ >
|
|
134
|
159
|
<div slot="footer" class="dialog-footer">
|
|
135
|
160
|
<!-- <el-button @click="submitForm" class="endbutton"
|
|
136
|
161
|
><span>结束审理</span></el-button
|
|
137
|
162
|
> -->
|
|
|
163
|
+ <el-button @click="openArbitrationresults" class="endbutton"
|
|
|
164
|
+ ><span>提交庭审笔录</span></el-button
|
|
|
165
|
+ >
|
|
138
|
166
|
<el-button @click="cancel" class="endbutton1"
|
|
139
|
167
|
><span>关 闭</span></el-button
|
|
140
|
168
|
>
|
|
141
|
169
|
</div>
|
|
142
|
170
|
</el-dialog>
|
|
143
|
171
|
<el-dialog
|
|
144
|
|
- title="提交仲裁结果"
|
|
|
172
|
+ title="提交庭审笔录"
|
|
145
|
173
|
:visible="showArbitrationresults"
|
|
146
|
174
|
@close="closeArbitrationresults"
|
|
147
|
175
|
center
|
|
|
@@ -255,7 +283,7 @@
|
|
255
|
283
|
</el-form>
|
|
256
|
284
|
<div slot="footer" class="dialog-footer">
|
|
257
|
285
|
<el-button @click="submitForm" class="endbutton">
|
|
258
|
|
- <span>提交仲裁结果</span></el-button
|
|
|
286
|
+ <span>提交</span></el-button
|
|
259
|
287
|
>
|
|
260
|
288
|
<el-button @click="closeArbitrationresults" class="endbutton1"
|
|
261
|
289
|
><span>取 消</span></el-button
|
|
|
@@ -277,13 +305,33 @@ export default {
|
|
277
|
305
|
user: "",
|
|
278
|
306
|
showArbitrationresults: false,
|
|
279
|
307
|
form2: {},
|
|
|
308
|
+ applicateArr: [],//申请人案件资料
|
|
|
309
|
+ quiltArr: [],//被申请人案件资料
|
|
280
|
310
|
};
|
|
281
|
311
|
},
|
|
282
|
312
|
watch: {
|
|
283
|
313
|
showtrialincourt: {
|
|
284
|
314
|
handler(val) {
|
|
285
|
315
|
if (val) {
|
|
286
|
|
- this.formData = this.form;
|
|
|
316
|
+ this.formData = this.form;
|
|
|
317
|
+ this.applicateArr = [];
|
|
|
318
|
+ this.quiltArr = [];
|
|
|
319
|
+ setTimeout(() => {
|
|
|
320
|
+ this.adjudicatename.caseAttachList.forEach(item => {
|
|
|
321
|
+ if (item.annexType == 2) {
|
|
|
322
|
+ this.applicateArr.push({
|
|
|
323
|
+ annexName: item.annexName,
|
|
|
324
|
+ annexPath: item.annexPath,
|
|
|
325
|
+ });
|
|
|
326
|
+ }
|
|
|
327
|
+ if (item.annexType == 6) {
|
|
|
328
|
+ this.quiltArr.push({
|
|
|
329
|
+ annexName: item.annexName,
|
|
|
330
|
+ annexPath: item.annexPath,
|
|
|
331
|
+ });
|
|
|
332
|
+ }
|
|
|
333
|
+ });
|
|
|
334
|
+ }, 500);
|
|
287
|
335
|
}
|
|
288
|
336
|
},
|
|
289
|
337
|
},
|
|
|
@@ -292,6 +340,20 @@ export default {
|
|
292
|
340
|
this.getUser();
|
|
293
|
341
|
},
|
|
294
|
342
|
methods: {
|
|
|
343
|
+ // 详情显示,展示申请人案件文件
|
|
|
344
|
+ toFile(item, index) {
|
|
|
345
|
+ window.open(
|
|
|
346
|
+ window.location.origin + "/API" + this.applicateArr[index].annexPath,
|
|
|
347
|
+ "_black"
|
|
|
348
|
+ );
|
|
|
349
|
+ },
|
|
|
350
|
+ // 被申请人文件
|
|
|
351
|
+ toFile1(item, index) {
|
|
|
352
|
+ window.open(
|
|
|
353
|
+ window.location.origin + "/API" + this.quiltArr[index].annexPath,
|
|
|
354
|
+ "_black"
|
|
|
355
|
+ );
|
|
|
356
|
+ },
|
|
295
|
357
|
getUser() {
|
|
296
|
358
|
getUserProfile().then((response) => {
|
|
297
|
359
|
this.user = response.data.userName;
|
|
|
@@ -339,14 +401,14 @@ export default {
|
|
339
|
401
|
|
|
340
|
402
|
<style lang="scss" scoped>
|
|
341
|
403
|
::v-deep .el-dialog {
|
|
342
|
|
- width: 800px;
|
|
|
404
|
+ width: 900px;
|
|
343
|
405
|
background: #ffffff;
|
|
344
|
406
|
border-radius: 20px;
|
|
345
|
407
|
}
|
|
346
|
408
|
.endbutton {
|
|
347
|
409
|
width: 154px;
|
|
348
|
410
|
height: 37px;
|
|
349
|
|
- background: #0072ff;
|
|
|
411
|
+ background: #488de2;
|
|
350
|
412
|
border-radius: 19px;
|
|
351
|
413
|
span {
|
|
352
|
414
|
width: 96px;
|