|
@@ -1135,7 +1135,8 @@ import {
|
|
|
joinConferences
|
|
|
} from "@/api/meeting";
|
|
|
import findUserByDept from '@/views/findUserByDept'
|
|
|
-import Cookies from "js-cookie"; //责任人选择弹框
|
|
|
+import Cookies from "js-cookie";
|
|
|
+import { selectConfigKey } from '@/api/system/config' //责任人选择弹框
|
|
|
export default {
|
|
|
dicts: ['task_source'],
|
|
|
watch: {
|
|
@@ -3006,24 +3007,28 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- Meeting() { //弹出发送会议短信弹窗
|
|
|
+ Meeting() {
|
|
|
+ //弹出发送会议短信弹窗
|
|
|
let that = this;
|
|
|
- that.$alert(
|
|
|
- "如您已经安装请点击【确定】,如未安装可<a style='text-decoration:underline;color:blue;' href='http://172.18.1.37:15001/CLOUDMeeting_Win.exe'>点击此处</a>进行下载",
|
|
|
- '该功能需要使用云会议客户端', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- dangerouslyUseHTMLString: true,
|
|
|
- callback: action => {
|
|
|
- let param = {
|
|
|
- eventCode: that.eventCode
|
|
|
- }
|
|
|
- centereventtdepteventList(param).then(res => {
|
|
|
- that.depteventList = res.data
|
|
|
- that.showMeetingMsgDialog = true
|
|
|
- that.initDutysystemTableData();
|
|
|
- })
|
|
|
+ selectConfigKey('meeting_plugin_url').then(response => {
|
|
|
+ that.$alert(
|
|
|
+ "如您已经安装请点击【确定】,如未安装可<a style='text-decoration:underline;color:blue;' href='"+response.data+"'>点击此处</a >进行下载",
|
|
|
+ "该功能需要使用云会议客户端",
|
|
|
+ {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ callback: (action) => {
|
|
|
+ let param = {
|
|
|
+ eventCode: that.eventCode,
|
|
|
+ };
|
|
|
+ centereventtdepteventList(param).then((res) => {
|
|
|
+ that.depteventList = res.data;
|
|
|
+ that.showMeetingMsgDialog = true;
|
|
|
+ });
|
|
|
+ },
|
|
|
}
|
|
|
- });
|
|
|
+ );
|
|
|
+ })
|
|
|
},
|
|
|
/** ----------------------------------视频会议结束------------------------------------- */
|
|
|
/** ----------------------------------海康摄像头预览结束------------------------------------- */
|