fix: Vue2 到 Vue3 迁移兼容修复

- 修复 uni-popup-dialog/uni-data-picker keypress.js 中 $once 在 H5 端报错(改用生命周期钩子清理监听)
- main.js 补 $delete globalProperties polyfill(z-paging 自动高度逻辑依赖)
- App.vue onLaunch 补设备信息初始化,修复 X-Device-Id 恒为 unknown
- 68 处 ::v-deep、/deep/ 旧深度选择器替换为 :deep()(含 login-page.scss)
- zetank-personalpage 组件 .sync 修饰符改为 v-model:xxx(Vue3 已移除 .sync)
- vite.config.js HBuilderX 路径支持 HBUILDERX_HOME 环境变量覆盖
- 根 package.json 清理 image-grid 插件遗留元数据
- 收录此前未提交的 uView Vue3 兜底补丁(common/uview-init.js 及各组件 props.js)
This commit is contained in:
2026-09-06 19:36:36 +08:00
parent a68bf43112
commit 99c139d6ce
126 changed files with 1223 additions and 1080 deletions
@@ -1,37 +1,38 @@
import '@/common/uview-init.js'
export default {
props: {
// 吸顶容器到顶部某个距离的时候,进行吸顶,在H5平台,NavigationBar为44px
// 鍚搁《瀹瑰櫒鍒伴《閮ㄦ煇涓窛绂荤殑鏃跺€欙紝杩涜鍚搁《锛屽湪H5骞冲彴锛孨avigationBar涓?4px
offsetTop: {
type: [String, Number],
default: uni.$u.props.sticky.offsetTop
},
// 自定义导航栏的高度
// 鑷畾涔夊鑸爮鐨勯珮搴?
customNavHeight: {
type: [String, Number],
// #ifdef H5
// H5端的导航栏属于“自定义”导航栏的范畴,因为它是非原生的,与普通元素一致
// H5绔殑瀵艰埅鏍忓睘浜庘€滆嚜瀹氫箟鈥濆鑸爮鐨勮寖鐣达紝鍥犱负瀹冩槸闈炲師鐢熺殑锛屼笌鏅€氬厓绱犱竴鑷?
default: 44,
// #endif
// #ifndef H5
default: uni.$u.props.sticky.customNavHeight
// #endif
},
// 是否开启吸顶功能
// 鏄惁寮€鍚惛椤跺姛鑳?
disabled: {
type: Boolean,
default: uni.$u.props.sticky.disabled
},
// 吸顶区域的背景颜色
// 鍚搁《鍖哄煙鐨勮儗鏅鑹?
bgColor: {
type: String,
default: uni.$u.props.sticky.bgColor
},
// z-index值
// z-index鍊?
zIndex: {
type: [String, Number],
default: uni.$u.props.sticky.zIndex
},
// 列表中的索引值
// 鍒楄〃涓殑绱㈠紩鍊?
index: {
type: [String, Number],
default: uni.$u.props.sticky.index