- 修复 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)
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
import '@/common/uview-init.js'
|
|
export default {
|
|
props: {
|
|
// input鐨刲abel鎻愮ず璇?
|
|
label: {
|
|
type: String,
|
|
default: uni.$u.props.formItem.label
|
|
},
|
|
// 缁戝畾鐨勫€?
|
|
prop: {
|
|
type: String,
|
|
default: uni.$u.props.formItem.prop
|
|
},
|
|
// 鏄惁鏄剧ず琛ㄥ崟鍩熺殑涓嬪垝绾胯竟妗?
|
|
borderBottom: {
|
|
type: [String, Boolean],
|
|
default: uni.$u.props.formItem.borderBottom
|
|
},
|
|
// label鐨勪綅缃紝left-宸﹁竟锛宼op-涓婅竟
|
|
labelPosition: {
|
|
type: String,
|
|
default: uni.$u.props.formItem.labelPosition
|
|
},
|
|
// label鐨勫搴︼紝鍗曚綅px
|
|
labelWidth: {
|
|
type: [String, Number],
|
|
default: uni.$u.props.formItem.labelWidth
|
|
},
|
|
// 鍙充晶鍥炬爣
|
|
rightIcon: {
|
|
type: String,
|
|
default: uni.$u.props.formItem.rightIcon
|
|
},
|
|
// 宸︿晶鍥炬爣
|
|
leftIcon: {
|
|
type: String,
|
|
default: uni.$u.props.formItem.leftIcon
|
|
},
|
|
// 鏄惁鏄剧ず宸﹁竟鐨勫繀濉槦鍙凤紝鍙綔鏄剧ず鐢紝鍏蜂綋鏍¢獙蹇呭~鐨勯€昏緫锛岃鍦╮ules涓厤缃?
|
|
required: {
|
|
type: Boolean,
|
|
default: uni.$u.props.formItem.required
|
|
},
|
|
leftIconStyle: {
|
|
type: [String, Object],
|
|
default: uni.$u.props.formItem.leftIconStyle,
|
|
}
|
|
}
|
|
}
|