> 后端使用的是laravel yansongda pay库
> https://pay.yansongda.cn/docs/v3/
> 公众号支付
~~~
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/font.css">
<link rel="stylesheet" href="/css/mui.min.css">
<title>vip</title>
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-weight: 100;
font-size: 15px;
direction: rtl;
list-style: none;
outline: none;
font-family: 'ukjTor';
}
body{
width: 100%;
max-width: 768px;
margin: auto;
overflow-y: auto;
overflow-x: hidden;
}
.page{
padding: 0 30px;
}
.top{
height: 40vh;
background: url("/images/mob_bg.png") no-repeat;
background-size: 100% 100%;
}
.top .face{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding-top: 50px;
}
.top .face img{
width: 90px;
height: 90px;
border-radius: 100%;
border: 3px solid #ededed;
margin-bottom: 5px;
}
.top .face div.app_name{
font-weight: bold;
color: #000000;
}
.top .face div{
margin: 5px 0;
}
.top .face div.id{
color: #444;
}
.bottom{
margin-top: -80px;
}
.vip_list .tag_title{
height: 40px;
line-height: 40px;
color: #000;
text-align: center;
}
.vip_list ul{
margin-top: 10px;
}
.vip_list ul li{
margin-bottom: 14px;
border: 1px solid var(--neutral-light-1, #D3D9EB);
align-items: center;
border-radius: 16px;
padding: 16px;
}
.vip_list ul li div{
display: flex;
justify-content: space-between;
}
.vip_list ul li.cur .value{
font-size: 26px;
}
.vip_list ul li.cur .title{
font-size: 18px;
margin-top: 10px;
}
.vip_list ul li.cur{
color: #000000;
background: url("/images/mob_bg.png") no-repeat;
background-size: 100% 120%;
}
.vip_list ul li p{
margin-top: 10px;
font-size: 13px;
}
.vip_list ul li.check .value{
font-size: 26px;
}
.vip_list ul li.check .title{
font-size: 18px;
margin-top: 10px;
}
.vip_list ul li.check{
margin-top: 22px;
position: relative;
}
.vip_list ul li.check:before{
content: 'تەۋسىيە';
position: absolute;
top:-11px;
right: 10px;
width: 72px;
height: 25px;
border-radius: 12.5px;
border: 1px solid #000;
background: #FFF;
text-align: center;
}
.buy_btn{
position: fixed;
bottom: 30px;
left: 0;
width: 100%;
}
.buy_btn .list{
width: 100%;
height: 50px;
line-height: 50px;
}
.buy_btn .list{
display: flex;
flex-direction: row-reverse;
}
.buy_btn .list>div{
width: 50%;
text-align: center;
}
.buy_btn .list>div.text{
background-color: #8B55FF;
color: #fff;
border-radius: 0 40px 40px 0;
}
.buy_btn .list>div.dollar{
background-color: #000;
color: #fff;
border-radius: 40px 0 0 40px;
}
.permission{
border-radius: 16px;
border: 1px solid #DADEE5;
background: #FFF;
margin: 30px 30px 120px;
}
.per_title{
line-height: 30px;
height: 30px;
padding-right: 10px;
margin-top: 10px;
}
.permission ul{
display: flex;
justify-content: space-around;
color: #8691A7;
padding: 16px 0 ;
opacity: 0.5;
}
.permission ul li{
display: flex;
flex-direction: column;
align-items: center;
}
.permission ul li span{
font-size: 12px;
}
.permission ul li img{
width: 30px;
}
.loading-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8);
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
}
.loading-spinner {
width: 40px;
height: 40px;
border-radius: 50%;
border: 4px solid #ccc;
border-top-color: #333;
animation: spin 1s infinite linear;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#loading{
display: none;
}
.mui-toast-container{
bottom: 40% !important;
}
</style>
</head>
<body>
<div class="top">
<div class="face">
<img src="/images/avatar.png" alt="">
<div class="app_name">{{ $user['nickname'] ?? '翻译' }}</div>
<div class="id">{{ isset($user['user_id']) ? 'ID: '. $user['user_id'] : '' }}</div>
</div>
</div>
<div class="page bottom">
<div class="vip_list">
<div class="tag_title">{{ $data['vip_data']['end_time_text'] }}</div>
<ul class="vip_ul">
@foreach($data['vip_data']['vip_list'] as $item)
<li onclick="get_current(this, '{{ $item->price }}', {{ $item->id }})" @if($item->check == 1) class="cur check" @endif>
<div>
<span class="title">{{ $item->title }}</span>
<span class="value">{{ $item->price }}¥</span>
</div>
@if($item->check == 1)
<p>{{ $item->text2 }}</p>
@endif
</li>
@endforeach
</ul>
</div>
</div>
<div class="permission">
<div class="per_title">ئەزا ئىمتىيازى</div>
<ul>
@foreach($data['vip_data']['vip_permission']['list'] as $item)
<li>
<span><img src="{{ $item->thumb }}" alt=""></span>
<span>{{ $item->name }}</span>
</li>
@endforeach
</ul>
</div>
<div class="buy_btn page">
<div class="list">
<div class="dollar">{{ $default_price }}</div>
<div onclick="pay()" class="text">
@if(isset($user['info']))
@if($user['info']['is_vip'] == 0)
سېتىۋېلىش
@else
ئۇزارتىش
@endif
@else
سېتىۋېلىش
@endif
</div>
</div>
</div>
<div id="loading" class="loading-container">
<div class="loading-spinner"></div>
</div>
<script src="/js/jquery3.6.4.js"></script>
<script src="/js/mui.min.js"></script>
<!--微信的JSSDK-->
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script>
$(function() {
<!--通过config接口注入权限验证配置-->
wx.config(@json($config));
});
let id = {{ $default_id }};
function get_current(_that, price, item_id){
let vip_ul = document.querySelectorAll('.vip_ul li')
let dollar = document.querySelector('.dollar')
vip_ul.forEach(item =>{
item.classList.remove('cur')
})
_that.classList.add('cur')
dollar.innerText = price + ' يۈەن'
id = item_id;
}
function pay(){
showLoading()
fetch("/trans/mp_pay", {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
id,
'_token': '{{ csrf_token() }}'
})
}).then(response => response.json()).then(data => {
hideLoading()
if(data.code == 419){
mui.alert('', data.msg,'ماقۇل، ھازىرلا كىرەي', function (){
location.href = '{{ route('trans.vip', ['type'=>'login']) }}'
})
return false;
}
//弹出支付窗口
wx.chooseWXPay({
timestamp: data.timeStamp, // 支付签名时间戳,
nonceStr: data.nonceStr, // 支付签名随机串,不长于 32 位
package: data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=xxxx)
signType: data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
paySign: data.paySign, // 支付签名
success: function (res) {
// 支付成功后的回调函数
console.log(res)
// res.errMsg === 'chooseWXPay:ok'方式判断前端返回,微信团队郑重提示:
// res.errMsg将在用户支付成功后返回ok,但并不保证它绝对可靠, 切记。
if (res.errMsg === 'chooseWXPay:ok') {
mui.toast('پۇل تۆلەش تامام',{ duration:'long', type:'div' })
setTimeout(()=>{
location.reload()
},2000)
}
},
cancel: function (res) {
mui.toast('پۇل تۆلەش مەغلۇب بولدى!',{ duration:'long', type:'div' })
},
// 支付失败回调函数
fail: function (res) {
mui.toast('پۇل تۆلەش مەغلۇب بولدى!',{ duration:'long', type:'div' })
}
});
}).catch(error => {
console.error('error')
})
}
// 显示加载中效果
function showLoading() {
document.getElementById('loading').style.display = 'flex';
}
// 隐藏加载中效果
function hideLoading() {
document.getElementById('loading').style.display = 'none';
}
</script>
</body>
</html>
~~~
- 后端
- composer
- composer配置国内镜像
- composer安装及设置2
- PHP
- 贝塔SG11加密
- 申请KEY
- 开始加密
- php 中连接tcp服务的三种方式
- php websocket 教程
- editor内容转换数组
- 使用正则判断中文维吾尔文
- PHP常用函数总结
- 常用助手函数
- 通过Imagick把pdf转换图片
- 维吾尔语基本区转换扩展区
- php GD库生成一个由文字和图片生成新的图片
- aes加密
- php数组函数 -- array_column,array_multisort 实现二维数组排序
- PHP操作Excel
- php更新内容
- 辅助查询(*)
- 【时间】操作
- 时间函数例子
- Date/Time 函数(不包含别名函数)
- php网络相关
- HTTP请求的返回值含义说明
- 使用php语言开发一个类似数据库操作的文件表类
- pinyin
- 维吾尔语基本区转换扩展区(2)
- php获取当前环境的信息
- laravel
- laravel 队列的使用
- laravel 自定义助手函数
- laravel seeder的使用
- laravel项目从git下载命令
- laravel 多个数据库配置
- laravel 填充假数据
- laravel 动态路由
- laravel 自定义 validate 响应
- laravel 创建追加字段的模拟访问器
- laravel 线上环境的数据库更改或添加字段
- laravel 模型查询按照whereIn排序
- laravel 使用 workerman 通过TCP 文件传输功能
- laravel api Header添加Accept头
- Laraval IDE 自动补全插件 laravel-ide-helper
- laravel 网站后台
- laravel 设置路由
- laravel-第三方composer包
- laravel 开发技巧
- laravel 昨天,今天时间
- 使用宝塔计划任务启动laravel调度器
- laravel结合workerman第二节
- Laravel - 上传多个文件
- 查询聊天好友列表
- 事件系统 event, listener
- laravel 安装 laravel-modules
- 自定义求看守器-toekn
- laravel限流
- 使用 Laravel api Resource 类时自定义分页信息
- Laravel php artisan命令大全
- 验证器
- workerman 创建wss服务
- 架构师必须知道的26项PHP安全实践
- python
- Python读取文件代码块已经备好,用的时候光拿(建议收藏)
- Python常用库大全
- api 签名验证
- git
- git命令
- 十分钟学会git基础
- Git代码同时上传到GitHub和Gitee(码云)
- Git - 多人协同开发利器,团队协作流程规范与注意事项
- 删除远程仓库的文件
- github查询方法
- 错误
- 解除项目git版本控制
- linux
- sentos安装supervisor
- PHP怎么守护进程运行php脚本
- 600条最强Linux命令总结
- centos开启防火墙、开放指定端口
- 前端
- vue
- vue2发布之前的config简单配置
- vue2安装scss命令
- vue2父子组件之间双向数据绑定
- 国际化双语--安装VueI18n
- vue3-setup 组件传参(defineProps、defineEmits、defineExpose
- Vue3 新写法速览:十分钟内轻松get
- 关于vue的外连接
- watch讲解
- computed
- webpack 打包后生成很多小文件怎么优化?
- vue2 vue.config.js常见配置和打包部署测试
- 小程序
- 小程序长期订阅消息
- 小程序自定义TabBar后如何实现keep-alive
- 收藏的html和css和js
- CSS 省略号(单行省略号、多行省略号)
- UyghurInput_a.js
- font.css
- 漂亮按钮样式
- clock.html
- css
- scroll css样式
- CSS流动布局-页面自适应
- css grid布局
- 禁止wap页面调整字体大小
- CSS @media 和 min-width/max-width
- 网站变灰是怎么实现的
- 瀑布流实现方式
- javascript
- SortableJS拖动排序
- wondow scroll滚动到上边
- 原生js插入HTML元素
- Konva.js —— 像操作DOM一样操作canvas
- 通过canvas合并俩个图片
- js scroll更多加载
- js 实现复制功能
- js判断安卓和苹果或者微信
- 浏览器打开控制台禁止
- 原生js一些dom操作
- js http客户端集合
- fetch
- axios
- canvas 点钟
- layer dialog
- jquery 和 laravel ajax全局配置
- layui 获取select的自定义参数
- konva.js中文开发文档
- js 大文件分片上传
- js监听网络状态实现断网重连后自动刷新页面
- js生成video缩略图
- JS获取当前系统电量情况
- uniapp
- uni-app swiper数量过多时卡顿优化方案
- uniapp 帖子集合
- 微信wap
- wap分享朋友和朋友圈
- wap 手机页面微信支付
- JsSdk微信公众号支付
- 通用各种小知识
- 正则表达式
- JS正则匹配过滤字符串中的html标签及html标签内的内容
- 判断维吾尔文输入
- 正则表达式符号
- 正则表达式练习
- 百度网盘不限速下载助手
- 解决VSCode下载慢或下载失败的问题
- 性能测试 使用Apache的ab测试工具
- nginx从入门到精通
- nginx
- Nginx 是怎么禁止访问php的 ?
- 宝塔面板
- supervisor
- 卸载宝塔
- redis
- redis实用笔记
- redis入门到精通
- phpredis
- redis数据库基础
- PHP对Redis的基本操作
- ffmpeg
- 合并多个音视
- 获取音视时长
- FFmpeg视频处理入门教程(新手必看)
- 外连接
- 安装
- PHP基于ffmpeg实现转换视频,截图及生成缩略图的方法
- Linux安装ffmpeg
- docker
- 服务实现
- docker基本命令
- rewrite笔记
- 别人笔记链接
- 计算机常用知识
- 二进制1-10
- 斐波那契数列
- mysql
- 高性能高可用的MySQL,得从各种规范开始
- 读写分离配置
- 重要外连接,前端/ 后端/数据库等等
- 关于程序必须收藏的文章链接集合
- markdown
- 一篇文章讲清楚markdown