1 Star 8 Fork 3

lixinjava/uni-tv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mixin.js 638 Bytes
一键复制 编辑 原始数据 按行查看 历史
lixinjava 提交于 2021-11-05 03:01 . 完善details页面
// 根目录的static下创建js文件夹并创建mixin.js文件
import {
track,
close,
ping
} from '@/api/app.js';
const mixin = {
methods: {
track() {
let routes = getCurrentPages()
let curRoute = routes[routes.length - 1].route //获取当前页面路由
let curParam = routes[routes.length - 1].options //获取路由参数
track({
"route": curRoute,
"param": curParam,
}).then(res => {})
.catch(err => {});
},
close() {
close().then(res => {})
.catch(err => {});
},
ping() {
// console.log("心跳")
ping().then(res => {})
.catch(err => {});
}
}
}
export default mixin
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lixinjava/uni-tv.git
[email protected]:lixinjava/uni-tv.git
lixinjava
uni-tv
uni-tv
master

搜索帮助