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,51 +1,52 @@
import '@/common/uview-init.js'
export default {
props: {
// 操作菜单是否展示 (默认false)
// 鎿嶄綔鑿滃崟鏄惁灞曠ず 锛堥粯璁alse锛?
show: {
type: Boolean,
default: uni.$u.props.actionSheet.show
},
// 标题
// 鏍囬
title: {
type: String,
default: uni.$u.props.actionSheet.title
},
// 选项上方的描述信息
// 閫夐」涓婃柟鐨勬弿杩颁俊鎭?
description: {
type: String,
default: uni.$u.props.actionSheet.description
},
// 数据
// 鏁版嵁
actions: {
type: Array,
default: uni.$u.props.actionSheet.actions
},
// 取消按钮的文字,不为空时显示按钮
// 鍙栨秷鎸夐挳鐨勬枃瀛楋紝涓嶄负绌烘椂鏄剧ず鎸夐挳
cancelText: {
type: String,
default: uni.$u.props.actionSheet.cancelText
},
// 点击某个菜单项时是否关闭弹窗
// 鐐瑰嚮鏌愪釜鑿滃崟椤规椂鏄惁鍏抽棴寮圭獥
closeOnClickAction: {
type: Boolean,
default: uni.$u.props.actionSheet.closeOnClickAction
},
// 处理底部安全区(默认true)
// 澶勭悊搴曢儴瀹夊叏鍖猴紙榛樿true锛?
safeAreaInsetBottom: {
type: Boolean,
default: uni.$u.props.actionSheet.safeAreaInsetBottom
},
// 小程序的打开方式
// 灏忕▼搴忕殑鎵撳紑鏂瑰紡
openType: {
type: String,
default: uni.$u.props.actionSheet.openType
},
// 点击遮罩是否允许关闭 (默认true)
// 鐐瑰嚮閬僵鏄惁鍏佽鍏抽棴 (榛樿true)
closeOnClickOverlay: {
type: Boolean,
default: uni.$u.props.actionSheet.closeOnClickOverlay
},
// 圆角值
// 鍦嗚鍊?
round: {
type: [Boolean, String, Number],
default: uni.$u.props.actionSheet.round