相关视频
-
韩国三级播放在线
54650 if (!avshow.user.is_vip) { if (tracker) { tracker.send("event", 'video_server', 'select', 'not-vip'); } return this.show_vip_dialog = true; } } var goto_url = avshow.updateQueryStringParameter(document.URL, 'video_server', server_name); if (tracker) { tracker.send("event", 'video_server', 'select', server_name); } avshow.switch_server.select(server_name); avshow.go_to_url(goto_url); }, server_name: function (select_host) { for (var i = 0; i < this.avdata.space_hosts.length; ++i) { if (this.avdata.space_hosts[i][0] == select_host) { return this.avdata.space_hosts[i][1]; } } }, update_init: function () { console.log('call update_init') this.$forceUpdate(); this.install(); }, install: function () { var find_vip_server = false; if (this.show_vip_servers() || true) { for (var i = 0; i < this.avdata.space_hosts.length; ++i) { if (this.avdata.space_hosts[i][0] == 'vip') { find_vip_server = true; } } if (window.avshow && this.avdata.space_hosts) { window.avshow.space_hosts = this.avdata.space_hosts; } } $g.switch_server.update(); this.select_host = $g.switch_server.get(); var server_name = undefined; console.log('this.avdata.space_hosts:', this.avdata.space_hosts); console.log('this.select_host:', this.select_host); server_name = this.server_name(this.select_host); if (!server_name) { this.select_host = this.avdata.space_hosts[0][0]; } } }, created: function () { this.install(); if (window.EventBus) { window.EventBus.addEventListener("update:init", this.update_init); } } }; $m('video_server_list', Main); });相关视频