8 Commits
gyq ... ymf

Author SHA1 Message Date
gyq
8eea8d290a 优化体现页面弹窗 2026-01-28 14:57:14 +08:00
cca8804e57 价格显示修改为获取接口 2025-12-16 09:53:52 +08:00
727d56e325 增加剧集解锁价格阶梯 2025-12-15 14:40:51 +08:00
16c36577e7 增加支付延迟,修复首页公告不显示 2025-10-29 10:27:23 +08:00
64b7c90278 去除生产环境打印 2025-08-25 16:30:46 +08:00
3091df43ee 版本升级,生成订单号等待300-600ms再支付 2025-08-25 16:14:21 +08:00
3bca9b1d81 1 2025-08-25 15:50:06 +08:00
ec6bd2a68b test 2025-08-25 15:19:49 +08:00
9 changed files with 746 additions and 615 deletions

View File

@@ -2,7 +2,8 @@
"version" : "1.0",
"configurations" : [
{
"playground" : "custom",
"customPlaygroundType" : "device",
"playground" : "standard",
"type" : "uni-app:app-android"
},
{

11
App.vue
View File

@@ -1,12 +1,19 @@
<script>
export default {
onLaunch: function() {
// 生产环境禁用所有 console 方法
if (process.env.NODE_ENV === 'production') {
const noop = () => {};
console.log = noop;
console.info = noop;
console.warn = noop;
console.error = noop;
}
console.log('App Launch ');
uni.setStorageSync('adRewardedNum', 0)
},
onShow: function() {
},
onShow: function() {},
onHide: function() {
console.log('App Hide');
}

12
api/order/index.js Normal file
View File

@@ -0,0 +1,12 @@
import http from '@/http/http.js'
/**
* 获取最近观看
*/
export const getPayMoney = (data) => {
return http.request({
url: 'order/getPayMoney',
data: data,
method: 'POST'
})
}

View File

@@ -7,13 +7,13 @@ export const apiUrl = '/czg/'
export const h5Config = {
production: 'https://web.hnsiyao.cn',
test: 'https://web-api.hnsiyao.cn',
local: 'http://192.168.1.21:8100'
local: 'http://192.168.1.56:8787'
}
export const AppConfig = {
production: 'https://dj-api.hnsiyao.cn',
test: 'https://web-api.hnsiyao.cn',
local: 'http://192.168.1.41:8100'
local: 'http://192.168.1.56:8787'
}
export function returnShareUrl() {

View File

@@ -225,7 +225,8 @@
</view>
<view class="pay-list-item" @click="payBtnClick('money', 1)">
<!-- <image class="hot" src="@/static/images/hot.png" mode=""></image> -->
<text class="u-font-28 font-bold">{{ nowDanjiPrice }}元解锁单集视频</text>
<!-- <text class="u-font-28 font-bold">{{ nowDanjiPrice }}元解锁单集视频</text> -->
<text class="u-font-28 font-bold">{{ nowNewDanjiPrice }}元解锁单集视频</text>
</view>
</view>
</view>
@@ -321,6 +322,7 @@
</template>
<script setup>
import {getPayMoney} from '@/api/order/index.js'
import { toBindWx } from '@/utils/wx.js';
import { useCommonStore } from '@/store/common.js';
import { getElRect } from '@/utils/util.js';
@@ -641,9 +643,16 @@ async function payConfirm() {
orderId: res.orders.ordersId
});
} else {
uni.showLoading()
console.log('延迟开始')
setTimeout(()=>{
uni.hideLoading()
console.log('延迟结束')
payOrder({
orderId: res.orders.ordersId
});
},200)
}
} else {
}
@@ -762,6 +771,8 @@ async function popupShow(key = 'show', item, index) {
}
if (key == 'pay') {
const res = await Api.getPayTips();
await getDanjiPrice()
const numbers = extractNumbers(res);
console.log(numbers);
if (numbers.length >= 2) {
@@ -1020,6 +1031,16 @@ const nowDanjiPrice = computed(() => {
return videoList.value[current.value].price;
});
const nowNewDanjiPrice=ref(0);
async function getDanjiPrice(){
const res=await getPayMoney({
y_price:nowDanjiPrice.value,
})
nowNewDanjiPrice.value=res
}
function loadmore() {
console.log('loadmore');
}

View File

@@ -2,8 +2,8 @@
"name" : "斯耀短剧",
"appid" : "__UNI__E0B05B1",
"description" : "",
"versionName" : "1.3.2",
"versionCode" : 132,
"versionName" : "1.3.4",
"versionCode" : 134,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

@@ -165,6 +165,7 @@ onReachBottom(() => {
// 公告
async function getMsg() {
let res = await messageselectMessage();
console.log('res',res)
let arr = [];
let ids = uni.getStorageSync('ids');
res.list.forEach((ele) => {
@@ -177,7 +178,7 @@ async function getMsg() {
arr.push(ele);
}
});
datas.noticeList = arr;
datas.noticeList = res.list;
if (arr.length) {
if (ids.length) {
uni.setStorageSync('ids', [...uni.getStorageSync('ids'), datas.noticeList[datas.cloneNum].id]);

View File

@@ -1,9 +1,8 @@
<template>
<view class="container">
<up-navbar title="申请提现" :autoBack="true" bgColor="rgb(255, 117, 129)" leftIconColor="#FFF"
:titleStyle="{color:'#FFF'}">
<up-navbar title="申请提现" :autoBack="true" bgColor="rgb(255, 117, 129)" leftIconColor="#FFF" :titleStyle="{ color: '#FFF' }">
<template #right>
<view class="u-p-r-30 u-flex u-col-center" style="color: #fff;">
<view class="u-p-r-30 u-flex u-col-center" style="color: #fff">
<text class="rule-btn" @click="showRule">规则</text>
</view>
</template>
@@ -13,26 +12,25 @@
<view class="title">可提现总额</view>
<view class="mayMoney">¥ {{ data.mayMoney }}</view>
<view class="val" style="">
<view style="display: flex;flex-direction: row;padding: 20upx;">
<view style="font-size: 32upx;color: #333333;">提现金额</view>
<view style="display: flex; flex-direction: row; padding: 20upx">
<view style="font-size: 32upx; color: #333333">提现金额</view>
</view>
<view class="input" style="">
<view style="display: flex;align-items: center;">
<view style="font-size: 40upx;color: #333333;">¥</view>
<input type="digit" v-model="data.money" placeholder="请输入金额" @input="moneyInput"
style="font-size: 32rpx;color: #333333;text-align: left;margin-left: 10rpx;width: 80%;" />
<view style="display: flex; align-items: center">
<view style="font-size: 40upx; color: #333333">¥</view>
<input
type="digit"
v-model="data.money"
placeholder="请输入金额"
@input="moneyInput"
style="font-size: 32rpx; color: #333333; text-align: left; margin-left: 10rpx; width: 80%"
/>
</view>
<view class="allbtn" @click="setAllMoney">
全部
<view class="allbtn" @click="setAllMoney">全部</view>
</view>
</view>
</view>
<view class="witBtn" @click="goWithdraw">{{ data.isWithdraw ? '立即提现' : '观看广告提现' }}</view>
<view style="color: #666;" @click="WithdrawalAlipay">
提现到支付宝
</view>
<view style="color: #666" @click="WithdrawalAlipay">提现到支付宝</view>
<view class="tab" style="">
<view @click="linkTo('/pages/me/withdraw/realName')">实名认证</view>
<!-- <view @click="linkTo('/pages/me/withdraw/alipay')">提现账号</view> -->
@@ -42,60 +40,68 @@
<view class="moneyList u-p-b-30">
<view v-if="data.list.length" v-for="(item, index) in data.list" :key="index" class="item">
<view>
<view style="margin-bottom: 8upx;text-align: right;">
<view style="margin-bottom: 8upx; text-align: right">
<text style="margin-bottom: 8upx; color: green" v-if="item.state === 1">提现成功</text>
<text style="margin-bottom: 8upx;color: green" v-if="item.state===0||item.state==3">
提现</text>
<text style="margin-bottom: 8upx;color: #FD6416" v-if="item.state===-1||item.state===2">
提现失败
</text>
<text style="margin-bottom: 8upx; color: green" v-if="item.state === 0 || item.state == 3">提现中</text>
<text style="margin-bottom: 8upx; color: #fd6416" v-if="item.state === -1 || item.state === 2">提现失败</text>
</view>
<view style="color: #999999;font-size: 28upx;">
<view style="color: #999999; font-size: 28upx">
<view style="margin-bottom: 8upx">收款人账号{{ item.zhifubao }}</view>
<view style="margin-bottom: 8upx">收款人姓名{{ item.zhifubaoName }}</view>
<view style="margin-bottom: 8upx">发起时间{{ item.createAt }}</view>
<view style="margin-bottom: 8upx" v-if="item.state === 1">成功时间 {{ item.outAt }}</view>
<view style="margin-bottom: 8upx;color: #FD6416" v-if="item.state===-1||item.state===2">
失败原因{{ item.refund }}
</view>
<view style="margin-bottom: 8upx; color: #fd6416" v-if="item.state === -1 || item.state === 2">失败原因{{ item.refund }}</view>
<view style="margin-bottom: 8upx;text-align: right;">
<view style="margin-bottom: 8upx; text-align: right">
<!-- 提现金额 -->
<text style="color: #FD6416;font-size: 32upx;font-weight: 600"> {{ item.money }}</text>
<text style="color: #fd6416; font-size: 32upx; font-weight: 600">{{ item.money }}</text>
</view>
</view>
</view>
</view>
<emprty-card v-if="!data.list.length" />
</view>
</view>
<up-modal :show="data.ruleShow" confirm-text="知道了" title="规则说明" :title="data.rule_title"
:title-style="{fontWeight:'700'}" @confirm="ruleConfirm" confirm-color="rgb(255, 117, 129)">
<up-modal
:show="data.ruleShow"
confirm-text="知道了"
title="规则说明"
:title="data.rule_title"
:title-style="{ fontWeight: '700' }"
@confirm="ruleConfirm"
confirm-color="rgb(255, 117, 129)"
>
<view class="u-p-30 u-text-left">
<scroll-view scroll-y="true" style="max-height: 50vh;">
<rich-text style="text-align: justify;font-size: 18px;color: #666;"
:nodes="data.rule_content"></rich-text>
<scroll-view scroll-y="true" style="max-height: 50vh">
<!-- #ifdef APP -->
<rich-text style="text-align: justify; font-size: 18px; color: #666" :nodes="data.rule_content"></rich-text>
<!-- #endif -->
<!-- #ifdef H5 -->
<view v-html="data.rule_content"></view>
<!-- #endif -->
</scroll-view>
</view>
</up-modal>
<view style="width: 0;height: 0;overflow: hidden;">
<view style="width: 0; height: 0; overflow: hidden">
<!-- 激励视频广告 -->
<ad-rewarded-video ref="adRewardedw" :adpid="data.adpid" :loadnext="true" :url-callback="data.urlCallback"
@load="onadload" @close="onadclose" @error="onaderror">
</ad-rewarded-video>
<ad-rewarded-video
ref="adRewardedw"
:adpid="data.adpid"
:loadnext="true"
:url-callback="data.urlCallback"
@load="onadload"
@close="onadclose"
@error="onaderror"
></ad-rewarded-video>
</view>
</view>
</template>
<script setup>
import { reactive, nextTick, ref } from 'vue';
import { onReady,onLoad,onShow,onLaunch,onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
import { onReady, onLoad, onShow, onLaunch, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app';
import { selectUserMoney, selectPayDetails, canCash, state, withdraw } from '@/api/me/withdraw.js';
import { selectUserById } from '@/api/user/user.js';
import { announcement } from '@/api/index/index.js';
@@ -104,8 +110,8 @@
const data = reactive({
ruleShow: false,
rule_title: "",
rule_content: "",
rule_title: '',
rule_content: '',
money: '',
mayMoney: '0',
list: [],
@@ -122,7 +128,7 @@
userInfo: null,
ruleIndex: 0,
ruleList: []
})
});
const adRewardedw = ref(null);
onLoad(() => {
@@ -130,47 +136,51 @@
// data.adpid = 1531580352
// }
// if ( uni.getSystemInfoSync().platform == 'ios' ) {
data.adpid = 1373604770
data.adpid = 1373604770;
// }
getExtractFei();
getMoneyDetail();
getCanCash()
getCanCash();
announcement({
type: 1
}).then(res => {
data.ruleList = res
ruleInit()
})
})
}).then((res) => {
data.ruleList = res;
ruleInit();
});
});
onShow(() => {
getcashMoney()
getcashMoney();
getUserInfo();
})
});
onReady(() => {
nextTick(() => {
data.adRewardedVideoloadNum = 0
data.adRewardedVideoloadNum = 0;
adRewardedw.value.load();
data.ruleShow = true
})
})
});
});
onReachBottom(() => {
if (data.page * data.limit < data.totalCount) {
data.page = data.page + 1;
getMoneyDetail();
}
})
});
onPullDownRefresh(() => {
data.page = 1;
data.list = []
data.list = [];
getMoneyDetail();
})
function ruleInit(){
data.rule_content = ""
data.rule_title = data.ruleList[data.ruleIndex].title
data.rule_content = data.ruleList[data.ruleIndex].content
});
async function ruleInit() {
data.rule_content = '';
data.rule_title = data.ruleList[data.ruleIndex].title;
data.rule_content = data.ruleList[data.ruleIndex].content;
console.log('data', data);
console.log('title', data.ruleList[data.ruleIndex].title);
console.log('content', data.ruleList[data.ruleIndex].content);
await nextTick();
data.ruleShow = true;
}
/**
* 规则弹窗打开
@@ -178,35 +188,35 @@
function showRule() {
if (data.ruleList.length <= 0) {
uni.showToast({
title: "暂未配置规则",
title: '暂未配置规则',
icon: 'none'
})
});
return false;
}
ruleInit()
data.ruleShow = true
ruleInit();
data.ruleShow = true;
}
/**
* 规则确认
*/
function ruleConfirm() {
console.log(1)
data.ruleShow = false
data.ruleIndex++
console.log(1);
data.ruleShow = false;
data.ruleIndex++;
if (data.ruleIndex >= data.ruleList.length) {
data.ruleIndex = 0
return
data.ruleIndex = 0;
return;
}
setTimeout(res => {
ruleInit()
data.ruleShow = true
}, 300)
setTimeout((res) => {
ruleInit();
data.ruleShow = true;
}, 300);
}
function getUserInfo() {
selectUserById().then(res => {
selectUserById().then((res) => {
data.userInfo = res;
})
});
}
function WithdrawalAlipay() {
@@ -215,53 +225,52 @@
withdraw({
amount: data.money,
isAlipay: 1
}).then(res => {
data.money = ''
uni.setStorageSync('adRewardedNum', 0)
}).then((res) => {
data.money = '';
uni.setStorageSync('adRewardedNum', 0);
setTimeout(function () {
getcashMoney()
}, 1500)
getcashMoney();
}, 1500);
uni.showToast({
title: res.msg,
icon: 'none'
})
})
});
});
} else {
uni.showToast({
title: "请输入金额",
icon: 'none',
})
title: '请输入金额',
icon: 'none'
});
}
} else {
uni.showToast({
title: "请绑定支付宝",
icon: 'none',
})
title: '请绑定支付宝',
icon: 'none'
});
setTimeout(() => {
// 未绑定信息
linkTo('/pages/me/withdraw/alipay')
}, 1500)
linkTo('/pages/me/withdraw/alipay');
}, 1500);
}
}
function back() {
uni.navigateBack()
uni.navigateBack();
}
/**
* 获取看广告状态
*/
async function getCanCash() {
canCash().then(res => {
canCash().then((res) => {
data.isWithdraw = res;
console.log(res)
console.log(res);
if (uni.getStorageSync('adRewardedNum') >= 3) {
data.isWithdraw = true;
// uni.setStorageSync('adRewardedNum',0)
} else {
uni.setStorageSync('adRewardedNum', ((uni.getStorageSync('adRewardedNum') || 0) + 1))
uni.setStorageSync('adRewardedNum', (uni.getStorageSync('adRewardedNum') || 0) + 1);
}
})
});
}
/**
* 广告数据加载成功回调
@@ -269,7 +278,7 @@
*/
function onadload(e) {
data.adRewardedShow = true;
uni.setStorageSync('adRewardedNum', 0)
uni.setStorageSync('adRewardedNum', 0);
console.log('广告数据加载成功');
}
@@ -279,13 +288,13 @@
*/
function onaderror(e) {
if (data.adRewardedVideoloadNum >= 3) {
return
return;
}
data.adRewardedVideoloadNum++
data.adRewardedVideoloadNum++;
setTimeout(() => {
adRewardedw.value.load();
}, 1000); // 10
console.log("广告加载失败", e)
console.log('广告加载失败', e);
}
/**
@@ -293,24 +302,24 @@
* @param {Object} e
*/
async function onadclose(e) {
const detail = e.detail
const detail = e.detail;
if (detail && detail.isEnded) {
// 正常播放结束
console.log(data.urlCallback.extra)
console.log(data.urlCallback.extra);
let res = await state({
extraKey: data.urlCallback.extra
})
console.log(res)
uni.setStorageSync('adRewardedNum', 0)
getCanCash()
});
console.log(res);
uni.setStorageSync('adRewardedNum', 0);
getCanCash();
} else {
// 播放中途退出
}
}
function onNavigationBarButtonTap() {
console.log(1)
data.ruleShow = true
console.log(1);
data.ruleShow = true;
}
/**
@@ -323,17 +332,16 @@
icon: 'none',
title: '广告加载失败,请稍后重试'
});
return
return;
}
data.urlCallback = {
userId: uni.getStorageSync('userInfo').userId,
extra: 'cash:' + uni.getStorageSync('userInfo').userId + "" + new Date().getTime(),
}
extra: 'cash:' + uni.getStorageSync('userInfo').userId + '' + new Date().getTime()
};
adRewardedw.value.show();
} else {
getOut()
getOut();
}
}
function moneyInput(e) {
@@ -344,7 +352,7 @@
* 全部提现赋值
*/
function setAllMoney() {
data.money = getMoneys(data.mayMoney)
data.money = getMoneys(data.mayMoney);
}
/**
@@ -354,24 +362,24 @@
* 保留两位小数&不四舍五入
*/
function getMoneys(money) {
if (!money || isNaN(money)) return "0.00";
if (!money || isNaN(money)) return '0.00';
let num = parseFloat(money + '') + '';
num = parseInt(money * 100 + '') / 100 + ''
num = parseInt(money * 100 + '') / 100 + '';
let reg = /(-?\d+)(\d{4})/;
while (reg.test(num)) {
num = num.replace(reg, "$1,$2");
num = num.replace(reg, '$1,$2');
}
let idx = num.indexOf('.')
let idx = num.indexOf('.');
if (idx === -1) {
num = num + '.00'
num = num + '.00';
}
if (idx > 0) {
let num_per = num.substring(0, idx) + '.'
let num_next = num.substring(idx + 1).padEnd(2, '0')
num = num_per + num_next
let num_per = num.substring(0, idx) + '.';
let num_next = num.substring(idx + 1).padEnd(2, '0');
num = num_per + num_next;
}
return num;
@@ -384,7 +392,7 @@
selectPayDetails({
page: data.page,
limit: data.limit
}).then(res => {
}).then((res) => {
data.totalCount = res.totalCount;
if (res.list.length > 0) {
data.list = [...data.list, ...res.list];
@@ -392,14 +400,14 @@
setTimeout(() => {
uni.stopPullDownRefresh();
}, 500);
})
});
}
/**
* 获取最低提现金额
*/
function getExtractFei() {
commonType(112).then(res => {
commonType(112).then((res) => {
if (res && res.value) {
data.cashMoney = res.value;
}
@@ -410,9 +418,9 @@
* 可提现金额
*/
function getcashMoney() {
selectUserMoney().then(res => {
data.mayMoney = getMoneys(res.amount) || 0
})
selectUserMoney().then((res) => {
data.mayMoney = getMoneys(res.amount) || 0;
});
}
/**
@@ -431,34 +439,34 @@
});
withdraw({
amount: data.money
}).then(res => {
console.log(res)
data.money = ''
uni.setStorageSync('adRewardedNum', 0)
})
.then((res) => {
console.log(res);
data.money = '';
uni.setStorageSync('adRewardedNum', 0);
setTimeout(function () {
getcashMoney()
}, 1500)
getcashMoney();
}, 1500);
uni.showToast({
title: res.msg,
icon: 'none'
});
})
}).catch(res => {
.catch((res) => {
if (res.code == 9991) {
uni.showToast({
title: res.msg,
icon: 'none'
})
});
setTimeout(function () {
linkTo('/pages/me/withdraw/alipay')
}, 1500)
linkTo('/pages/me/withdraw/alipay');
}, 1500);
} else {
}
})
});
}
function getOut() {
if (!/^\d+(\.\d{1,2})?$/.test(data.money)) {
uni.showToast({
icon: 'none',
@@ -469,52 +477,55 @@
if (!data.userInfo.accountNo) {
uni.showToast({
icon: 'none',
title: "请先实名认证"
title: '请先实名认证'
});
setTimeout(() => {
linkTo('/pages/me/withdraw/realName')
}, 1500)
linkTo('/pages/me/withdraw/realName');
}, 1500);
return;
}
if (parseFloat(data.mayMoney).toFixed(2) >= parseFloat(data.money)) {
if (parseFloat(data.money).toFixed(2) >= parseFloat(data.cashMoney)) {
uni.showModal({
title: "提现申请提示",
title: '提现申请提示',
content: '每日只可提现一次',
success: (e) => {
if (e.confirm) {
setTimeout(() => {
uni.showModal({
title: "提现申请提示",
content: '请仔细确认收款人信息\n\n收款人姓名:' + data.userInfo.certName +
'\n\n提现金额:' + data
.money + '元\n\n收款人账号' + data.userInfo.accountNo + '',
title: '提现申请提示',
content:
'请仔细确认收款人信息\n\n收款人姓名:' +
data.userInfo.certName +
'\n\n提现金额:' +
data.money +
'元\n\n收款人账号' +
data.userInfo.accountNo +
'',
success: (e) => {
if (e.confirm) {
console.log(data.money)
console.log(data.money);
getMoney();
getMoneyDetail();
}
}
});
}, 200)
}, 200);
}
}
});
} else {
uni.showToast({
icon: 'none',
title: "提现金额必须大于或等于" + data.cashMoney + "元才可提现"
title: '提现金额必须大于或等于' + data.cashMoney + '元才可提现'
});
}
} else {
uni.showToast({
icon: 'none',
title: "您的余额不足"
title: '您的余额不足'
});
}
}
@@ -559,13 +570,13 @@
.title {
font-size: 32rpx;
color: #FFFFFF;
color: #ffffff;
padding-top: 230rpx;
}
.mayMoney {
font-size: 40rpx;
color: #FFFFFF;
color: #ffffff;
padding-top: 20rpx;
}
@@ -573,7 +584,7 @@
width: 90%;
height: max-content;
margin-left: 40rpx;
background-color: #FFFFFF;
background-color: #ffffff;
box-shadow: rgba(183, 183, 183, 0.3) 0px 1px 10px;
margin-top: 50rpx;
border-radius: 20rpx;
@@ -621,14 +632,14 @@
}
.moneyList {
text-align: left
text-align: left;
}
}
.cash-top {
padding: 32upx 32upx 50upx 32upx;
/* border-bottom: 1px solid gainsboro; */
background: #5074FF;
background: #5074ff;
}
.leiji {
@@ -673,7 +684,6 @@
}
}
.centre {
text-align: center;
padding: 200rpx 0;

79
pnpm-lock.yaml generated Normal file
View File

@@ -0,0 +1,79 @@
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
lodash:
specifier: ^4.17.21
version: 4.17.23
uview-plus:
specifier: ^3.3.62
version: 3.6.29
devDependencies:
pinia-plugin-unistorage:
specifier: ^0.1.2
version: 0.1.2
packages:
clipboard@2.0.11:
resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
dayjs@1.11.19:
resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
delegate@3.2.0:
resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==}
good-listener@1.2.2:
resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
lodash@4.17.23:
resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
pinia-plugin-unistorage@0.1.2:
resolution: {integrity: sha512-WXit2cGnm5rG6CDTcLSLehNWhyJS/Yq7WEeeXAapZbCnqoPJxlszqg7rT8S+OP47az0h5nlajGo+LuyMxUQ2uw==}
select@1.1.2:
resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==}
tiny-emitter@2.1.0:
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
uview-plus@3.6.29:
resolution: {integrity: sha512-zK522LR074rB4k3EARysmjsoOh+WjtFevIpvmV1wjVFqS3TT6brLZLd+gKa1ewxBsIgIPDTAabmnHWPsW9DWkQ==}
engines: {HBuilderX: ^3.1.0, uni-app: ^4.66, uni-app-x: ''}
snapshots:
clipboard@2.0.11:
dependencies:
good-listener: 1.2.2
select: 1.1.2
tiny-emitter: 2.1.0
dayjs@1.11.19: {}
delegate@3.2.0: {}
good-listener@1.2.2:
dependencies:
delegate: 3.2.0
lodash@4.17.23: {}
pinia-plugin-unistorage@0.1.2: {}
select@1.1.2: {}
tiny-emitter@2.1.0: {}
uview-plus@3.6.29:
dependencies:
clipboard: 2.0.11
dayjs: 1.11.19