chore: wx.getSystemInfoSync is deprecated

wx.getSystemInfoSync is deprecated.Please use wx.getSystemSetting/wx.getAppAuthorizeSetting/wx.getDeviceInfo/wx.getWindowInfo/wx.getAppBaseInfo instead.
This commit is contained in:
2026-01-06 14:02:34 +08:00
parent d9f0d1987e
commit ce13661826
8 changed files with 42 additions and 16 deletions

View File

@@ -254,6 +254,7 @@
<script>
import DiyMinx from './minx.js'
import util from '@/common/js/util.js'
// 自定义商品列表展示
export default {
@@ -327,7 +328,7 @@ export default {
if (this.goodsValue.ornament.type == 'stroke') {
obj += 'border:' + '2rpx solid ' + this.goodsValue.ornament.color + ';';
}
const screenWidth = uni.getSystemInfoSync().windowWidth;
let screenWidth = util.getWindowInfo().windowWidth;
if (this.value.template == 'horizontal-slide') {
var width = '';
if (this.value.slideMode == 'scroll' && this.value.goodsMarginType == 'diy') width = this.rpxUpPx(
@@ -407,7 +408,7 @@ export default {
}
},
rpxUpPx(res) {
const screenWidth = uni.getSystemInfoSync().windowWidth;
const screenWidth = util.getWindowInfo().windowWidth;
var data = (screenWidth * parseInt(res)) / 750;
return Math.floor(data);
},