修改购买剧时h5跳转支付方式

增加ios 自带浏览器快捷方式图标
This commit is contained in:
YeMingfei666 2024-12-13 15:26:17 +08:00
parent 5ad0d54662
commit f0edf9f419
5 changed files with 44 additions and 10 deletions

View File

@ -165,10 +165,18 @@
"title" : "斯耀短剧",
"domain" : "https://jiaoyu.xianmxkj.com",
"router" : {
"mode" : "history"
}
"mode" : "history",
"cache" : {
"use" : true,
"maxAge" : "86400000",
"version" : "1.0.4"
}
},
"template" : "template.html"
},
"mp-kuaishou" : {
"appid" : "ks699465318929951101"
}
}
//

View File

@ -1202,12 +1202,15 @@
// data.h5Url
this.showMoney = false //
// this.payOrder(this.ordersId, this.payMoney)
// #ifdef H5
// window.location.href = data.h5Url
// #ifdef APP
uni.navigateTo({
url: '/pages/pays/pays?ordersId=' + data.ordersId + '&url=' + data.h5Url
});
// #endif
// #ifdef H5
window.location.href = data.h5Url
// #endif
},
//
closeMoney(data) {

View File

@ -1,7 +1,6 @@
<template>
<view style="width: 100%;">
<web-view id="webview" :src="url" style="width: 100%;"></web-view>
</view>
</template>
@ -24,11 +23,6 @@
}
},
onReady() {
uni.setNavigationBarTitle({
title:'预览'
})
let viewview = uni.createWebviewContext("webview",)
console.log("viewview===",viewview)
// #ifdef APP-PLUS
// console.log('App plus2')
// var currentWebview = this.$mp.page.$getAppWebview() //webview

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

29
template.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-title" content="斯耀短剧">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<!-- Open Graph data -->
<!-- <meta property="og:title" content="Title Here" /> -->
<!-- <meta property="og:url" content="http://www.example.com/" /> -->
<!-- <meta property="og:image" content="http://example.com/image.jpg" /> -->
<!-- <meta property="og:description" content="Description Here" /> -->
<script>
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')
</script>
<link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
<link rel="apple-touch-icon" href="/static/favicon.png">
</head>
<body>
<noscript>
<strong>Please enable JavaScript to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>