|
|
@@ -47,12 +47,7 @@
|
|
47
|
47
|
<div :class="userClassPhone" id="localStream">
|
|
48
|
48
|
<div class="userNamePhone">{{ userId }}</div>
|
|
49
|
49
|
</div>
|
|
50
|
|
- <div
|
|
51
|
|
- :class="userClassPhone"
|
|
52
|
|
- v-for="(item, index) in userList"
|
|
53
|
|
- :key="index"
|
|
54
|
|
- :id="item"
|
|
55
|
|
- >
|
|
|
50
|
+ <div :class="userClassPhone" v-for="(item, index) in userList" :key="index" :id="item">
|
|
56
|
51
|
<div class="userNamePhone">{{ item }}</div>
|
|
57
|
52
|
</div>
|
|
58
|
53
|
</div>
|
|
|
@@ -60,59 +55,26 @@
|
|
60
|
55
|
<!-- 语音转文字弹窗 -->
|
|
61
|
56
|
<el-drawer title="会议内容" :visible.sync="textVisible" :modal="false">
|
|
62
|
57
|
<div style="margin-left: 20px; margin-bottom: 10px">
|
|
63
|
|
- <div
|
|
64
|
|
- style="
|
|
|
58
|
+ <div style="
|
|
65
|
59
|
width: 100%;
|
|
66
|
60
|
display: flex;
|
|
67
|
61
|
justify-content: space-around;
|
|
68
|
62
|
margin-bottom: 10px;
|
|
69
|
|
- "
|
|
70
|
|
- >
|
|
71
|
|
- <el-upload
|
|
72
|
|
- ref="upload"
|
|
73
|
|
- :limit="1"
|
|
74
|
|
- action="https://api.xayunmei.com/tiaojieapi/video/upload"
|
|
75
|
|
- :headers="headers"
|
|
76
|
|
- :data="filedata"
|
|
77
|
|
- :on-change="beforeUpload"
|
|
78
|
|
- :on-success="handlSuccess"
|
|
79
|
|
- :file-list="fileList"
|
|
80
|
|
- v-if="appFlag"
|
|
81
|
|
- >
|
|
82
|
|
- <el-button slot="trigger" size="small" type="primary"
|
|
83
|
|
- >申请人上传证据</el-button
|
|
84
|
|
- >
|
|
|
63
|
+ ">
|
|
|
64
|
+ <el-upload ref="upload" :limit="1" action="https://api.xayunmei.com/tiaojieapi/video/upload"
|
|
|
65
|
+ :headers="headers" :data="filedata" :on-change="beforeUpload" :on-success="handlSuccess"
|
|
|
66
|
+ :file-list="fileList" v-if="appFlag">
|
|
|
67
|
+ <el-button slot="trigger" size="small" type="primary">申请人上传证据</el-button>
|
|
85
|
68
|
</el-upload>
|
|
86
|
|
- <el-upload
|
|
87
|
|
- v-if="resFlag"
|
|
88
|
|
- ref="upload1"
|
|
89
|
|
- :limit="1"
|
|
90
|
|
- action="https://api.xayunmei.com/tiaojieapi/video/upload"
|
|
91
|
|
- :headers="headers1"
|
|
92
|
|
- :data="filedata1"
|
|
93
|
|
- :on-change="beforeUpload1"
|
|
94
|
|
- :on-success="handlSuccess1"
|
|
95
|
|
- :file-list="fileList1"
|
|
96
|
|
- >
|
|
97
|
|
- <el-button slot="trigger" size="small" type="primary"
|
|
98
|
|
- >被申请人上传证据</el-button
|
|
99
|
|
- >
|
|
|
69
|
+ <el-upload v-if="resFlag" ref="upload1" :limit="1" action="https://api.xayunmei.com/tiaojieapi/video/upload"
|
|
|
70
|
+ :headers="headers1" :data="filedata1" :on-change="beforeUpload1" :on-success="handlSuccess1"
|
|
|
71
|
+ :file-list="fileList1">
|
|
|
72
|
+ <el-button slot="trigger" size="small" type="primary">被申请人上传证据</el-button>
|
|
100
|
73
|
</el-upload>
|
|
101
|
|
- <el-upload
|
|
102
|
|
- v-if="editFlag"
|
|
103
|
|
- ref="upload3"
|
|
104
|
|
- :limit="1"
|
|
105
|
|
- action="https://api.xayunmei.com/tiaojieapi/video/upload"
|
|
106
|
|
- :headers="headers3"
|
|
107
|
|
- :data="filedata3"
|
|
108
|
|
- :on-change="beforeUpload3"
|
|
109
|
|
- :on-success="handlSuccess3"
|
|
110
|
|
- :file-list="fileList3"
|
|
111
|
|
- accept=".doc,.docx"
|
|
112
|
|
- >
|
|
113
|
|
- <el-button slot="trigger" size="small" type="primary"
|
|
114
|
|
- >上传调解书</el-button
|
|
115
|
|
- >
|
|
|
74
|
+ <el-upload v-if="editFlag" ref="upload3" :limit="1" action="https://api.xayunmei.com/tiaojieapi/video/upload"
|
|
|
75
|
+ :headers="headers3" :data="filedata3" :on-change="beforeUpload3" :on-success="handlSuccess3"
|
|
|
76
|
+ :file-list="fileList3" accept=".doc,.docx">
|
|
|
77
|
+ <el-button slot="trigger" size="small" type="primary">上传调解书</el-button>
|
|
116
|
78
|
</el-upload>
|
|
117
|
79
|
</div>
|
|
118
|
80
|
<div class="list">
|
|
|
@@ -151,25 +113,13 @@
|
|
151
|
113
|
</div>
|
|
152
|
114
|
</div>
|
|
153
|
115
|
</div>
|
|
154
|
|
- <quill-editor
|
|
155
|
|
- ref="myQuillEditor"
|
|
156
|
|
- v-model="contentValue"
|
|
157
|
|
- :options="editorOption"
|
|
158
|
|
- @blur="onEditorBlur($event)"
|
|
159
|
|
- @focus="onEditorFocus($event)"
|
|
160
|
|
- @ready="onEditorReady($event)"
|
|
161
|
|
- ></quill-editor>
|
|
162
|
|
- <el-button
|
|
163
|
|
- class="updataBtn"
|
|
164
|
|
- @click="updataClick"
|
|
165
|
|
- type="primary"
|
|
166
|
|
- :disabled="!updataFlag"
|
|
167
|
|
- >确认修改内容</el-button
|
|
168
|
|
- >
|
|
|
116
|
+ <quill-editor ref="myQuillEditor" v-model="contentValue" :options="editorOption" @blur="onEditorBlur($event)"
|
|
|
117
|
+ @focus="onEditorFocus($event)" @ready="onEditorReady($event)"></quill-editor>
|
|
|
118
|
+ <el-button class="updataBtn" @click="updataClick" type="primary" :disabled="!updataFlag">确认修改内容</el-button>
|
|
169
|
119
|
</el-drawer>
|
|
170
|
120
|
</div>
|
|
171
|
121
|
</template>
|
|
172
|
|
-
|
|
|
122
|
+
|
|
173
|
123
|
<script>
|
|
174
|
124
|
import { getUsersig, reserveConferenceList } from "@/api/home";
|
|
175
|
125
|
import {
|
|
|
@@ -446,7 +396,7 @@ export default {
|
|
446
|
396
|
} else if (item.annexType == 12) {
|
|
447
|
397
|
this.resFile.push(item);
|
|
448
|
398
|
} else if (item.annexType == 7) {
|
|
449
|
|
- this.mediateFile.push(item);
|
|
|
399
|
+ this.mediateFile.push(item)
|
|
450
|
400
|
}
|
|
451
|
401
|
});
|
|
452
|
402
|
});
|
|
|
@@ -667,7 +617,7 @@ export default {
|
|
667
|
617
|
},
|
|
668
|
618
|
};
|
|
669
|
619
|
</script>
|
|
670
|
|
-
|
|
|
620
|
+
|
|
671
|
621
|
<style scoped>
|
|
672
|
622
|
.roompage {
|
|
673
|
623
|
width: 100%;
|
|
|
@@ -826,14 +776,17 @@ export default {
|
|
826
|
776
|
position: absolute;
|
|
827
|
777
|
bottom: 8px;
|
|
828
|
778
|
}
|
|
|
779
|
+
|
|
829
|
780
|
.fileList {
|
|
830
|
781
|
/* max-height: 300px; */
|
|
831
|
782
|
/* overflow-y: scroll; */
|
|
832
|
783
|
}
|
|
|
784
|
+
|
|
833
|
785
|
.list {
|
|
834
|
786
|
display: flex;
|
|
835
|
787
|
flex-wrap: wrap;
|
|
836
|
788
|
}
|
|
|
789
|
+
|
|
837
|
790
|
.applicant,
|
|
838
|
791
|
.res,
|
|
839
|
792
|
.mediate {
|
|
|
@@ -842,7 +795,4 @@ export default {
|
|
842
|
795
|
margin-bottom: 10px;
|
|
843
|
796
|
color: #38393b;
|
|
844
|
797
|
}
|
|
845
|
|
-</style>
|
|
846
|
|
-
|
|
847
|
|
-
|
|
848
|
|
-
|
|
|
798
|
+</style>
|