From a70e327a8efaf38d74911ea568419a087fbd235a Mon Sep 17 00:00:00 2001 From: lawrencehj <1934378145@qq.com> Date: 星期四, 15 四月 2021 11:42:05 +0800 Subject: [PATCH] 修改用户密码前先验证旧密码,增加安全性 --- web_src/src/components/dialog/chooseChannel.vue | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/web_src/src/components/dialog/chooseChannel.vue b/web_src/src/components/dialog/chooseChannel.vue index 219036c..a6b9b44 100644 --- a/web_src/src/components/dialog/chooseChannel.vue +++ b/web_src/src/components/dialog/chooseChannel.vue @@ -13,7 +13,11 @@ </el-tab-pane> <el-tab-pane label="鐩存挱娴侀�氶亾" name="streamchannel"> - <!-- TODO --> + <el-container> + <el-main style="background-color: #FFF;"> + <chooseChannelFoStream :platformId=platformId ></chooseChannelFoStream> + </el-main> + </el-container> </el-tab-pane> </el-tabs> </el-dialog> @@ -22,11 +26,13 @@ <script> import chooseChannelForGb from '../dialog/chooseChannelForGb.vue' +import chooseChannelFoStream from '../dialog/chooseChannelForStream.vue' export default { name: 'chooseChannel', props: {}, components: { chooseChannelForGb, + chooseChannelFoStream, }, computed: { // getPlayerShared: function () { @@ -66,7 +72,7 @@ this.$axios({ method:"post", - url:"/api/platforms/updateChannelForGB", + url:"/api/platform/update_channel_for_gb", data:{ platformId: that.platformId, channelReduces: that.chooseData -- Gitblit v1.8.0