This commit is contained in:
全栈小学生 2025-09-13 16:20:30 +08:00
parent 934d7c6dba
commit 5f9ff5bfbe
3 changed files with 9 additions and 11 deletions

View File

@ -1,6 +1,6 @@
<?php
return [
'version' => '1.1.5',
'code' => '202509120001'
'version' => '1.1.6',
'code' => '202509130001'
];

View File

@ -11222,17 +11222,15 @@
}
},
"node_modules/uview-plus": {
"version": "3.5.32",
"resolved": "https://registry.npmmirror.com/uview-plus/-/uview-plus-3.5.32.tgz",
"integrity": "sha512-HZzerNYdkeszDZQzDLiDi9iaIVCzp2BEITh/mg9Tbkf3ua9n1vxdwcfmdgZAg+6vFmNcX45cJS+XyRLNoHONwQ==",
"version": "3.2.22",
"resolved": "https://registry.npmmirror.com/uview-plus/-/uview-plus-3.2.22.tgz",
"integrity": "sha512-ouhq0CCGP/ElR7eCCu0rBFNPTGW/EctcrxKIerjj1DOkEIY9BwKBbdI0VTSSkMFnr6RFejSQLBw/aKkqd6Q+7g==",
"dependencies": {
"clipboard": "^2.0.11",
"dayjs": "^1.11.3"
},
"engines": {
"HBuilderX": "^3.1.0",
"uni-app": "^4.66",
"uni-app-x": ""
"HBuilderX": "^3.1.0"
}
},
"node_modules/v8-to-istanbul": {

View File

@ -45,16 +45,16 @@ export const useShare = () => {
if (currRoute() == '' || currRoute().indexOf('app/pages/index/close') != -1 || currRoute().indexOf('app/pages/index/nosite') != -1) return;
let queryStr = getQuery();
let h5Link = '';
// #ifdef H5
let h5Link = location.origin + location.pathname + (queryStr.length > 0 ? '?' + queryStr.join('&') : '');
h5Link = location.origin + location.pathname + (queryStr.length > 0 ? '?' + queryStr.join('&') : '');
wechatOptions = {
link: h5Link
}
// #endif
// #ifdef APP-PLUS
let h5Link = systemStore.site.wap_url + currShareRoute().path + (queryStr.length > 0 ? '?' + queryStr.join('&') : '');
h5Link = systemStore.site.wap_url + currShareRoute().path + (queryStr.length > 0 ? '?' + queryStr.join('&') : '');
wechatOptions = {
link: h5Link
}