From 619a66f9998fa646a69903a4c22e2bbf92e2221b Mon Sep 17 00:00:00 2001 From: lawrencehj <1934378145@qq.com> Date: 星期三, 28 七月 2021 09:49:56 +0800 Subject: [PATCH] Merge remote-tracking branch 'upstream/wvp-28181-2.0' into wvp-28181-2.0 --- web_src/src/components/dialog/chooseChannelForStream.vue | 22 ++++++++++++---------- 1 files changed, 12 insertions(+), 10 deletions(-) diff --git a/web_src/src/components/dialog/chooseChannelForStream.vue b/web_src/src/components/dialog/chooseChannelForStream.vue index 514ac3e..c78d699 100644 --- a/web_src/src/components/dialog/chooseChannelForStream.vue +++ b/web_src/src/components/dialog/chooseChannelForStream.vue @@ -162,16 +162,18 @@ getChannelList: function () { let that = this; - this.$axios.get(`/api/gbStream/list`, { - params: { - page: that.currentPage, - count: that.count, - query: that.searchSrt, - online: that.online, - choosed: that.choosed, - platformId: that.platformId, - channelType: that.channelType - } + this.$axios({ + method: 'get', + url:`/api/gbStream/list`, + params: { + page: that.currentPage, + count: that.count, + query: that.searchSrt, + online: that.online, + choosed: that.choosed, + platformId: that.platformId, + channelType: that.channelType + } }) .then(function (res) { that.total = res.data.total; -- Gitblit v1.8.0