diff --git a/package.json b/package.json
index 44c63aa..1dc687a 100644
--- a/package.json
+++ b/package.json
@@ -54,7 +54,8 @@
"parser": "babel-eslint"
},
"rules": {
- "no-undef": "off"
+ "no-undef": "off",
+ "no-unused-vars": "off"
}
},
"browserslist": [
diff --git a/public/index.html b/public/index.html
index 06869a5..ef18c32 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,291 +1,278 @@
-
+
+
+
+
+
+
+
+ 帆软学院-培养企业亟需的数据人才
+
+
+
-
-
-
-
-
-
- 帆软学院-培养企业亟需的数据人才
-
-
-
-
-
-
+
+
+
-
-
-
-
+
+
+
-
-
- - FineReport
-
-
-
-
-
热门推荐
+
+
+
+
+
+
+
-
-
- FineBI
-
-
-
-
-
-
- 简道云
-
-
-
-
-
-
- 数知鸟
-
-
-
-
-
-
- 阿米巴
-
-
-
-
-
-
- 热门技术
-
-
-
-
-
-
- 学习路径
-
-
-
-
-
-
-
+
+
+
+
diff --git a/src/components/banner.vue b/src/components/banner.vue
index 7fddd85..18e83d8 100644
--- a/src/components/banner.vue
+++ b/src/components/banner.vue
@@ -1,25 +1,24 @@
-
+
- -
-
- {{item.it618_classname}}
+
-
+
+ {{ item.it618_classname }}
- -
-
- {{child.it618_classname}}
+
-
+
+ {{ child.it618_classname }}
-
- 查看{{item.it618_classname}}全部课程
+
+ 查看{{ item.it618_classname }}全部课程
@@ -29,23 +28,21 @@
热门推荐
-
-
- {{item.title}}
+
+ {{ item.title }}
- {{item.class_hour}}
- {{item.number_people}}
+ {{ item.class_hour }}
+ {{ item.number_people }}
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
\ No newline at end of file
+}
+
diff --git a/src/router.js b/src/router.js
index f1ebc1f..61bcf46 100644
--- a/src/router.js
+++ b/src/router.js
@@ -2,7 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router';
import Layout from '@/layout/index.vue';
import store from '@/store';
import { refreshToken } from '@/api/auth';
-// import '@/utils/fineClubSDK';
+import '@/utils/advertisementSDK';
import { getUid, getExpiresTime } from '@/utils/cookie';
import { delUrlParams } from '@/utils/urlQuery';
@@ -350,6 +350,10 @@ const router = createRouter({
},
});
+// 接入广告配置
+let getAdEnv = process.env.VUE_APP_ENV == 'dist' ? false : true;
+window.fineAd.config({debug:getAdEnv,dev:getAdEnv});
+
// 通过导航守卫 判断并刷新token
let accessToken = store.getters.get_token;
let expires = getExpiresTime();
diff --git a/src/utils/advertisementSDK.js b/src/utils/advertisementSDK.js
new file mode 100644
index 0000000..1c20015
--- /dev/null
+++ b/src/utils/advertisementSDK.js
@@ -0,0 +1,151 @@
+/**
+ * 广告调用SDK
+ * 2023-04-11 by Wangwei
+ */
+
+import axios from "axios";
+const fineAd = (window.fineAd = window.fineAd || {});
+fineAd.options = fineAd.options || {};
+
+ /**
+ * 初始化SDK配置
+ * @param debug
+ * @param dev
+ * @param adApiUrl
+ */
+const config = ({ debug = false, dev = false, adApiUrl }) => {
+ fineAd.options = {
+ ...fineAd.options,
+ debug,
+ dev,
+ adApiUrl: dev ? 'https://testjdy.fanruan.com/fcoin' : 'https://home.fanruan.com/fcoin',
+ };
+ if(debug){
+ console.log('adApiUrl', fineAd.options.adApiUrl);
+ }
+};
+
+
+/**
+ * 获取并展示指定广告id的广告位
+ * @param adId 广告位id
+ * @param adId2 如果adId没有匹配到则显示第二个广告位
+ * @param top 顶边距
+ * @param bottom 底边距
+ */
+const getAdvertisement = async ({adId, adId2, top, bottom}) => {
+ const { debug, dev } = fineAd.options;
+ const dataPath = dev ? 'test' : 'prod';
+ await axios.get("https://shequ-oss.obs.cn-east-2.myhuaweicloud.com/digit/ad/data/" + dataPath + "/advertisement.json?v=" + Date.now())
+ .then(function (res) {
+ var isAdId = false;
+ res.data.forEach((item) => {
+ if(item.adId === adId){
+ isAdId = true;
+ let getSize = splitPicSize(item.picSize);
+ if(debug){
+ console.group("advertisement " + adId);
+ console.log('item',item);
+ console.log('picSize',getSize);
+ console.log('top',top);
+ console.log('bottom',bottom);
+ console.groupEnd();
+ }
+ let adDomId = document.getElementById('AD-' + adId);
+ adDomId.innerHTML='';
+ window.fineAd.adMargin({ adId:adId, top:top });
+ // 无链接图片广告
+ if(!item.adLink && item.type===1){
+ adDomId.innerHTML+=``;
+ }
+ // 有链接图片广告
+ if(item.adLink && item.type===1){
+ adDomId.innerHTML+=``;
+ }
+ // 有链接文本广告
+ if(item.adLink && item.type===2){
+ adDomId.innerHTML+=`${item.adText}`;
+ }
+ window.fineAd.adMargin({ adId:adId, bottom:bottom });
+ }
+ });
+
+ // 找第二个广告位
+ if(adId2 && !isAdId){
+ res.data.forEach((item) => {
+ if(item.adId === adId2){
+ console.log('isAdId',isAdId);
+ let getSize = splitPicSize(item.picSize);
+ if(debug){
+ console.group("advertisement " + adId2);
+ console.log('item',item);
+ console.log('picSize',getSize);
+ console.log('top',top);
+ console.log('bottom',bottom);
+ console.groupEnd();
+ }
+ let adDomId = document.getElementById('AD-' + adId2);
+ adDomId.innerHTML='';
+ window.fineAd.adMargin({ adId:adId2, top:top });
+ // 有链接图片广告
+ if(item.adLink && item.type===1){
+ adDomId.innerHTML=``;
+ }
+ // 有链接文本广告
+ if(item.adLink && item.type===2){
+ adDomId.innerHTML=`${item.adText}`;
+ }
+ window.fineAd.adMargin({ adId:adId2, bottom:bottom });
+ }
+ });
+ }
+
+ })
+ .catch(function (error) {
+ console.log('ad error',error);
+ });
+};
+
+/**
+ * 广告边距
+ * @param top 顶边距
+ * @param bottom 底边距
+ */
+const adMargin = ({ adId, top = 0, bottom = 0 }) => {
+ let adDomId = document.getElementById('AD-' + adId);
+ if(top > 0){
+ adDomId.innerHTML+=``;
+ }else if(bottom > 0){
+ adDomId.innerHTML+=``;
+ }
+}
+
+/**
+ * 拆分广告位尺寸
+ * @param adSize 广告位尺寸
+ * @return Array[w,h] 宽和高
+ */
+const splitPicSize = (adSize) =>{
+ let {w,h} = {w:'',h:''};
+ if(adSize){
+ let {[0]:w,[1]:h} = adSize.replace(/\s/g,"").split('*');
+ return {w,h};
+ }else{
+ return {w,h};
+ }
+}
+
+/**
+ * 广告位埋点
+ * @param adId 广告位id
+ */
+const advertisementHits = (adId) =>{
+ const { adApiUrl } = fineAd.options;
+ axios.get(adApiUrl + "/api/advertisement/hits/" + adId);
+}
+
+fineAd.config = config;
+fineAd.adMargin = adMargin;
+fineAd.getAdvertisement = getAdvertisement;
+fineAd.advertisementHits = advertisementHits;
+
diff --git a/src/views/class/play.vue b/src/views/class/play.vue
index 5dd4ddd..3dd5b17 100644
--- a/src/views/class/play.vue
+++ b/src/views/class/play.vue
@@ -1,17 +1,14 @@
-
+
-
无权限查看,当前页面需要 登录
+
无权限查看,当前页面需要 登录
-
-
-
+
@@ -19,33 +16,31 @@
本节视频已看完
-
+
-
下一节:{{playNextTitle}}
+
+ 下一节:{{ playNextTitle }}
+
-
重播
-
播放下一节
+
重播
+
播放下一节
-
+
-
-
-
-
- {{video.className}}
+ {{ video.className }}
@@ -54,679 +49,650 @@
-
-
{{item.title}}
+
{{ item.title }}
-
等待老师发布...
+
等待老师发布...
-
-
-
-
-
-
\ No newline at end of file
+.el-page-header__left:hover {
+ color: #0082fc;
+}
+
diff --git a/src/views/studypath/finebi.vue b/src/views/studypath/finebi.vue
index b5ccd73..059b3d3 100644
--- a/src/views/studypath/finebi.vue
+++ b/src/views/studypath/finebi.vue
@@ -216,11 +216,7 @@
-
+
@@ -807,7 +803,6 @@
import { reactive, toRefs } from "vue";
import { studentCount } from "@/api/guide";
import { getCourseNum } from "@/api/study";
-import { adurl } from "@/api/ad";
import downMenu from "@/views/studypath/downMenu";
import pathMenu from "@/views/studypath/pathMenu";
export default {
@@ -860,17 +855,7 @@ export default {
resgetNode();
// 获取广告链接
- const adgetNode = async () => {
- const res = await adurl(31);
- if (res.code === 200) {
- if (res.data.img_url != null) {
- state.ad_imgurl = res.data.img_url;
- state.ad_clickurl = res.data.click_url;
- state.is_ad = true;
- }
- }
- };
- adgetNode();
+ window.fineAd.getAdvertisement({ adId: "83346c28538542f6b678220a47e6fee3", top: 24 });
// 获取多少人已完成学习
const resCourseNum = async (pid, tmp) => {
diff --git a/src/views/studypath/finereportStudyPath2023.vue b/src/views/studypath/finereportStudyPath2023.vue
index 8a4462b..d5e483d 100644
--- a/src/views/studypath/finereportStudyPath2023.vue
+++ b/src/views/studypath/finereportStudyPath2023.vue
@@ -198,12 +198,7 @@
-
-
+
@@ -654,7 +649,6 @@
-
\ No newline at end of file
+}
+