|
|
@@ -108,7 +108,6 @@ import http from "@/plugins/http";
|
|
|
import { Ref, nextTick, onMounted, ref } from "vue";
|
|
|
import SeriesItem from "@/components/SeriesItem.vue";
|
|
|
import router from "@/router";
|
|
|
-import { InAppBrowser } from "capacitor-inapp-browser";
|
|
|
|
|
|
const swiper = ref<Swiper | null>(null);
|
|
|
const onSwiper = (sw: Swiper) => {
|
|
|
@@ -138,11 +137,7 @@ onMounted(() => {
|
|
|
});
|
|
|
function detail(item: any) {
|
|
|
console.log(item);
|
|
|
- // router.push({ path: item.link });
|
|
|
- InAppBrowser.open({
|
|
|
- url: "https://shorts.izouma.com/stripe-checkout/",
|
|
|
- title: "Checkout",
|
|
|
- });
|
|
|
+ router.push({ path: item.link });
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|