提交 cd17a73f 编写于 作者: changdi.hao's avatar changdi.hao

Merge branch 'develop' into 'release'

Develop

See merge request !115
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
<span>诊断建议</span> <span>诊断建议</span>
<el-input <el-input
rows="10" rows="10"
maxlength="1000"
type="textarea" type="textarea"
v-model="diagnoseAdvice" v-model="diagnoseAdvice"
placeholder="请输入内容" placeholder="请输入内容"
......
...@@ -23,6 +23,7 @@ export const envConfig = { ...@@ -23,6 +23,7 @@ export const envConfig = {
}, },
dev: { dev: {
baseUrl: 'https://dev-sc.yunqueyi.com', baseUrl: 'https://dev-sc.yunqueyi.com',
// baseUrl: 'https://test1-sc.yunqueyi.com',
qiniuFileUrl: "https://dev-sc.yunqueyi.com/contents/admin/qiniu/token1", qiniuFileUrl: "https://dev-sc.yunqueyi.com/contents/admin/qiniu/token1",
qiniuResourceUrl: "https://test1-videos.yunqueyi.com", qiniuResourceUrl: "https://test1-videos.yunqueyi.com",
qiniuImgUrl: "https://test1-file.yunqueyi.com", qiniuImgUrl: "https://test1-file.yunqueyi.com",
......
...@@ -54,7 +54,7 @@ class RtcClient { ...@@ -54,7 +54,7 @@ class RtcClient {
userId: this.userId_, userId: this.userId_,
mirror: true mirror: true
}); });
// this.startRTC() this.startRTC()
} catch (e) { } catch (e) {
console.error('加入房间失败 ' + e); console.error('加入房间失败 ' + e);
this.vueInstance.reloadfn() this.vueInstance.reloadfn()
......
...@@ -186,15 +186,18 @@ export default { ...@@ -186,15 +186,18 @@ export default {
setItem(data, item) { setItem(data, item) {
item.timeleft = 0; item.timeleft = 0;
}, },
// 主动呼叫 // 主动呼叫
drivingCall(data) { drivingCall(data) {
console.log("data-----------",data)
// /team/call/direct/{imAccId}呼叫 // /team/call/direct/{imAccId}呼叫
let url = `/im/team/call/direct/`; let url = `/im/team/call/direct/`;
let params = { let params = {
imAccId: data.accId, imAccId: data.accId,
imTeamId: data.imTeamId, imTeamId: this.tid,
liveRoomId: this.roomId liveRoomId: this.roomId
}; };
console.log("-----------",params)
this.POST(url, params).then((res) => { this.POST(url, params).then((res) => {
if (res.code === "000000") { if (res.code === "000000") {
// this.tid = this.$route.query.tid || ""; // this.tid = this.$route.query.tid || "";
......
...@@ -162,18 +162,21 @@ export default { ...@@ -162,18 +162,21 @@ export default {
const s = this.searchParam; const s = this.searchParam;
s.returnStatus = val; s.returnStatus = val;
this.searchParam = s; this.searchParam = s;
s.pageNo=1;
this.inquirySearch("tab"); this.inquirySearch("tab");
}, },
changeDatetime(val) { changeDatetime(val) {
const s = this.searchParam; const s = this.searchParam;
s.dateTime = val.format("yyyy-MM-dd"); s.dateTime = val.format("yyyy-MM-dd");
this.searchParam = s; this.searchParam = s;
s.pageNo=1;
this.inquirySearch("clear"); this.inquirySearch("clear");
}, },
handleSizeChange(val) { handleSizeChange(val) {
const s = this.searchParam; const s = this.searchParam;
s.pageSize = val; s.pageSize = val;
this.searchParam = s; this.searchParam = s;
this.inquirySearch();
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
const s = this.searchParam; const s = this.searchParam;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册