821

parent 9fb65460
...@@ -11,4 +11,4 @@ ...@@ -11,4 +11,4 @@
position: fixed; position: fixed;
background: #f4f4f4; background: #f4f4f4;
} }
/* html{font-size: 1px;} */</style><link href=static/css/app.f983055a19b69eb54137ee36031e8a72.css rel=stylesheet></head><body><div id=app></div><script src=https://res.wx.qq.com/open/js/jweixin-1.3.2.js></script><script></script><script type=text/javascript src=static/js/manifest.a850d2ea40e867de0dab.js></script><script type=text/javascript src=static/js/vendor.663f75af2b00b67ec3df.js></script><script type=text/javascript src=static/js/app.8f6560625186e520f106.js></script></body></html> /* html{font-size: 1px;} */</style><link href=static/css/app.f983055a19b69eb54137ee36031e8a72.css rel=stylesheet></head><body><div id=app></div><script src=https://res.wx.qq.com/open/js/jweixin-1.3.2.js></script><script></script><script type=text/javascript src=static/js/manifest.5196e7fc5ec4d0c012c9.js></script><script type=text/javascript src=static/js/vendor.1c91ad85f3414fba0b70.js></script><script type=text/javascript src=static/js/app.f7a49cdfe616cc6b32e5.js></script></body></html>
\ No newline at end of file \ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -312,8 +312,6 @@ export default { ...@@ -312,8 +312,6 @@ export default {
closeCouponPop() { closeCouponPop() {
this.couponPopup = false; this.couponPopup = false;
this.closeStatus = true; this.closeStatus = true;
// this.refIcon =
// this.
}, },
goToBuyPage(type) { goToBuyPage(type) {
this.buyType = type this.buyType = type
......
...@@ -126,7 +126,7 @@ import { ...@@ -126,7 +126,7 @@ import {
import shareUrl from "../../assets/Bitmap@2x.png"; import shareUrl from "../../assets/Bitmap@2x.png";
import icon_change from "../../assets/newLesson/icon_change@2x.png"; import icon_change from "../../assets/newLesson/icon_change@2x.png";
import { Popup } from "mint-ui"; import { Popup } from "mint-ui";
import {addEmoji} from "@/util/wechatEmoji"; // import {addEmoji} from "@/util/wechatEmoji";
export default { export default {
name: "success", name: "success",
...@@ -210,7 +210,7 @@ export default { ...@@ -210,7 +210,7 @@ export default {
[机智]快来和我一起拼团上课吧`; [机智]快来和我一起拼团上课吧`;
this.textIndex = 1; this.textIndex = 1;
} }
this.htmlContent = addEmoji(this.textContent); // this.htmlContent = addEmoji(this.textContent);
// this.$copyText(this.textContent).then(e => { // this.$copyText(this.textContent).then(e => {
// Toast("复制成功"); // Toast("复制成功");
// }); // });
...@@ -370,7 +370,7 @@ export default { ...@@ -370,7 +370,7 @@ export default {
[爱心]${this.groupDetail.desc.group_number}人即可成团获得课程 [爱心]${this.groupDetail.desc.group_number}人即可成团获得课程
[强]哈佛名师亲授,比动画片更有趣哦 [强]哈佛名师亲授,比动画片更有趣哦
[机智]快来和我一起拼团上课吧`; [机智]快来和我一起拼团上课吧`;
this.htmlContent = addEmoji(this.textContent); // this.htmlContent = addEmoji(this.textContent);
this.onShare(); this.onShare();
}); });
}, },
......
This diff is collapsed.
...@@ -476,9 +476,7 @@ export default { ...@@ -476,9 +476,7 @@ export default {
: 1280; : 1280;
if (this.contentData.content.age && value === 2) { if (this.contentData.content.age && value === 2) {
let video = []; let video = [];
this.contentData.content.video2.forEach((el, index) => { video = this.$common.deepCopy(this.contentData.content.video)
video[index] = JSON.parse(JSON.stringify(el));
});
video.forEach(el => { video.forEach(el => {
let str = el.url; let str = el.url;
if (this.contentData.title == 2) { if (this.contentData.title == 2) {
...@@ -491,9 +489,7 @@ export default { ...@@ -491,9 +489,7 @@ export default {
}; };
} else { } else {
let video = []; let video = [];
this.contentData.content.video.forEach((el, index) => { video = this.$common.deepCopy(this.contentData.content.video)
video[index] = JSON.parse(JSON.stringify(el));
});
video.forEach(el => { video.forEach(el => {
let str = el.url; let str = el.url;
if (this.contentData.title == 2) { if (this.contentData.title == 2) {
......
...@@ -4,6 +4,7 @@ import Vue from 'vue' ...@@ -4,6 +4,7 @@ import Vue from 'vue'
import App from './App' import App from './App'
import router from './router' import router from './router'
import store from './store' import store from './store'
import common from './util/common'
// import MintUI from 'mint-ui' // import MintUI from 'mint-ui'
import VueClipboard from 'vue-clipboard2' import VueClipboard from 'vue-clipboard2'
import sa from 'sa-sdk-javascript'; import sa from 'sa-sdk-javascript';
...@@ -37,6 +38,7 @@ const errorHandler = (error, vm)=>{ ...@@ -37,6 +38,7 @@ const errorHandler = (error, vm)=>{
} }
Vue.config.errorHandler = errorHandler; Vue.config.errorHandler = errorHandler;
Vue.prototype.$throw = (error)=> errorHandler(error,this); Vue.prototype.$throw = (error)=> errorHandler(error,this);
Vue.prototype.$common = common
// if (process.env.NODE_ENV != 'production') { // if (process.env.NODE_ENV != 'production') {
// new VConsole(); // new VConsole();
// } // }
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment