|
@@ -119,7 +119,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div v-else style="width: 70%;border-left: 1px solid #e6e6e6;">
|
|
<div v-else style="width: 70%;border-left: 1px solid #e6e6e6;">
|
|
|
<div style="font-size: medium;margin-bottom: 10px;margin-left: 20px">录音内容</div>
|
|
<div style="font-size: medium;margin-bottom: 10px;margin-left: 20px">录音内容</div>
|
|
|
- <el-input resize="none" v-model="audioTxt" style="margin-left: 10px" type="textarea" :readonly="audioReadOnly" :rows = "31" placeholder="请输入内容" />
|
|
|
|
|
|
|
+ <el-input resize="none" v-model="audioTxt" style="margin-left: 10px" type="textarea" :readonly="audioReadOnly" :rows = "29" placeholder="请输入内容" />
|
|
|
<div style="margin-top: 35px;display: flex;justify-content: center;align-items: center;">
|
|
<div style="margin-top: 35px;display: flex;justify-content: center;align-items: center;">
|
|
|
<!-- <el-button type="primary" @click="copyWord">文本复制</el-button>-->
|
|
<!-- <el-button type="primary" @click="copyWord">文本复制</el-button>-->
|
|
|
<el-button type="primary" @click="audioTxtEdit">文本编辑</el-button>
|
|
<el-button type="primary" @click="audioTxtEdit">文本编辑</el-button>
|
|
@@ -136,7 +136,7 @@
|
|
|
<el-button type="waring" @click="resetWord">文本重置</el-button>
|
|
<el-button type="waring" @click="resetWord">文本重置</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
<el-divider style="margin-top: 10px;margin-bottom: 10px"></el-divider>
|
|
<el-divider style="margin-top: 10px;margin-bottom: 10px"></el-divider>
|
|
|
- <el-input id="targetWord" resize="none" v-model="targetWord" type="textarea" :readonly="true" :rows = "15" placeholder="请输入内容" />
|
|
|
|
|
|
|
+ <el-input id="targetWord" resize="none" v-model="targetWord" type="textarea" :readonly="true" :rows = "14" placeholder="请输入内容" />
|
|
|
<div style="margin-top: 20px;display: flex;flex-direction: column;justify-content: center;align-items: center;">
|
|
<div style="margin-top: 20px;display: flex;flex-direction: column;justify-content: center;align-items: center;">
|
|
|
<el-button type="primary" @click="copyWord">文本复制</el-button>
|
|
<el-button type="primary" @click="copyWord">文本复制</el-button>
|
|
|
</div>
|
|
</div>
|
|
@@ -279,7 +279,8 @@ export default {
|
|
|
getMeeting(id).then(response => {
|
|
getMeeting(id).then(response => {
|
|
|
// 会议照片集合
|
|
// 会议照片集合
|
|
|
if (response.data.picsPath != null && response.data.picsPath !== '') {
|
|
if (response.data.picsPath != null && response.data.picsPath !== '') {
|
|
|
- this.photoList = this.form.picsPath.split(",");
|
|
|
|
|
|
|
+ this.photoList = response.data.pics_path;
|
|
|
|
|
+ console.log(this.photoList)
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
@@ -382,7 +383,8 @@ export default {
|
|
|
let param = {
|
|
let param = {
|
|
|
material : url,
|
|
material : url,
|
|
|
type : 1,
|
|
type : 1,
|
|
|
- deviceId: this.deviceId
|
|
|
|
|
|
|
+ deviceId: this.deviceId,
|
|
|
|
|
+ meetingId: this.meetingId
|
|
|
};
|
|
};
|
|
|
urlControl(param).then(response => {
|
|
urlControl(param).then(response => {
|
|
|
this.$message({
|
|
this.$message({
|