","score":"4.95","image":"https://wx.gaowei.com/Upload/20250524/o_1irvuv06s1f92mlmlcn14t67hbm.jpg","citys":[{"ID":"d8375f9b-df09-4fb5-8f04-abf1d00f966c","IdentityID":2967,"Status":1,"number":69,"lowPrice":19800.0,"PayStart":"2025-12-06 09:00:00","Address":"深圳","endDate":"2025-12-07 17:00:00","time":"2025-12-06 09:00:00","ActivityStart":"12月6-7日","Type":13,"CourseID":"f2977060-719c-4c28-824f-4b6e19cc9a9b","Current_participant":47,"Total_participant":50}],"link":"https://wx.gaowei.com/wx/?#/NewPage/course?courseId=f2977060-719c-4c28-824f-4b6e19cc9a9b","displayModel":null,"courseID":"f2977060-719c-4c28-824f-4b6e19cc9a9b"},"bigshot":{"userID":"1ef23efa-850d-4216-b3b1-ba13eb7c994b","name":"冯卫东","nickName":"冯卫东","duty":null,"student":0,"description":null,"intro":"

冯卫东

天图投资创始合伙人

华章全球大师经典《升级定位》作者


用真金白银检验和发展定位方法论

他让定位从“一学就懂、一用就错”变得有章可循可落地。


代表投资项目:周黑鸭、百果园、小红书、蘑菇街、饭扫光、奈雪、飞贷、三顿半等消费类品牌。


","image":"https://wx.gaowei.com/Upload/20210620/o_1f8k30di9rvon2o16vf1f8u10sb7.jpg","image_small":null,"goodAt":"战略定位","company":"高维学堂常驻导师","activityCount":66,"score":"4.92","questionState":1},"orders":[],"pictureData":[]}}, course: { activity: { image: "" }, bigshot: {image:"",name:"",} }, progressWidth: "", progressTip: "", domain: "https://wx.gaowei.com", showPay: false, goPayVal: "wechat", word: { }, wordDictonary: [ { key: "YCXS01", time: "", timeText: "上课时间", addressText: "上课方式", priceText: "培训费", price: "", pepole: "家", havePepole: "已约企业", newPerson:"最新学友企业", }, { key: "WZX01", time: "时间另行预约", timeText: "辅导时间", addressText: "辅导地点", priceText: "辅导费", price: "398000", pepole: "家", havePepole: "已约企业", newPerson: "最新学友企业", }, ], defaultWord: { key: "1", time: "", timeText: "上课时间", addressText: "", priceText: "学费", price: "", pepole: "人", havePepole: "已约学友", newPerson: "最新学友", }, bigshotImage:"", }, mounted: function () { vm = this; if (vm.result.code == 0) { vm.course = vm.result.data; $("#vue").show(); document.title = vm.course.activity.title + "-高维学堂 - 科学创业 少走弯路"; if (vm.isWechat()) { window.location.href = vm.course.activity.link; } //if (vm.course.activity.citys.length > 0 && vm.course.activity.citys[0]["ID"] != vm.id) { // window.location.href = "https://www.gaowei.com/courselist/" + vm.course.activity.citys[0]["ID"] + ".html"; //} vm.wordDictonary.forEach(function (el) { if ( vm.course.activity.displayModel && el.key == vm.course.activity.displayModel) { vm.word = el; } }); if (!vm.word.key) { vm.word = vm.defaultWord; } if (vm.course.activity.buyCount >= vm.course.activity.buylimit) { vm.progressTip = "爆满"; } else if (vm.course.activity.buylimit - vm.course.activity.buyCount < 10) { vm.progressTip = "仅余" + (vm.course.activity.buylimit - vm.course.activity.buyCount) + "席"; } else { vm.progressTip = vm.course.activity.buyCount + "人已约"; } //$(document).ready(function () { // vm.progressWidth = (vm.course.activity.buyCount / vm.course.activity.buylimit).toFixed(2) * $(".progressBg").width(); //}); let content = vm.course.activity.content.replace(/src=\"(\/upload)\//ig, "src=\"" + vm.domain + "/upload/"); setTimeout(() => { $("#content1").html(content); $("#content1 img").addClass("img-responsive"); if ($(window).scrollTop() > 50) { $('body').addClass('tscrolled'); } else { $('body').removeClass('tscrolled'); } $(window).scroll(function () { if ($(window).scrollTop() > 50) { $('body').addClass('tscrolled'); } else { $('body').removeClass('tscrolled'); } }); }, 150); vm.loadBigshotImage(); } }, methods: { isWechat: function () { var ua = navigator.userAgent.toLowerCase(); var isWeixin = ua.indexOf('micromessenger') != -1; if (isWeixin) { return true; } else { return false; } }, buy: function () { if (is_mobile()) { if (checkLogin()) { vm.showBuy(); } else { showLogin(); } } else { //if (checkLogin()) { // vm.showBuy(); //} else { // showLogin(); //} layer.open({ type: 1, skin: 'layui-layer-demo', //样式类名 closeBtn: 0, //不显示关闭按钮 anim: 2, title: "微信扫一扫立即报名", shadeClose: true, //开启遮罩关闭 content: '
', }); } }, cancellayer: function () { vm.showPay = false; $("body").css({ "overflow-y": "auto" }); }, platPay: function (value) { vm.goPayVal = value; }, showBuy: function () { vm.showPay = true; $("body").css({"overflow-y":"hidden"}); }, goPay: function () { layer.open({ type: 2, content: '订单提交中' }); var type = vm.goPayVal == "wechat"?1: 2; $.ajax({ url: "/memberajax/CreateOrder", sync: false, data: { activityID: vm.id,type:type}, dataType: "json", success: function (e) { layer.closeAll(); if (e.code == 0) { if (vm.goPayVal == "wechat") { var returnUrl = encodeURIComponent("http://www.gaowei.com/OrderComplete?id=" + e.msg + "&activityID=" + vm.id); var redirect_url = encodeURIComponent(vm.domain + "/customer/RedirectTo?gotourl=" + returnUrl); window.location.href = vm.domain + "/customer/RedirectTo?gotourl=" + encodeURIComponent(e.data.mweb_url + "&redirect_url=") + "&queryString=" + redirect_url; } else { $("body").html(e.data); } } else { layer.open({ content: e.msg, btn: '我知道了', end: function () { if (e.msg == "请重新登录") { $.cookie("___user", null, { path: '/' }); showLogin(); } } }); } } }); }, loadBigshotImage() { $.ajax({ url: "/homeajax/GetBigshotCourseImage", sync: false, data: { bigshotID: vm.course.bigshot.userID }, dataType: "json", success: function (e) { if (e.code == 0) { vm.bigshotImage = e.msg; } } }); }, aliPay: function () { }, wecahtPay: function () { } } });