<uni-datetime-picker
:class="modelValue !== '' ? '' : 'uni-date__x-input-placeholder'"
v-model="modelValue"
:border="false"
:placeholder="placeholder"
:disabled="disabled"
@blur="upwardFormChange(eventName, modelValue)"
@change="upwardFormChange(eventName, modelValue)"
:clear-icon="clearable"
type="datetime"
:hide-second="true"
></uni-datetime-picker>
- 发布:2024-09-05 15:59
- 更新:2024-09-06 09:21
- 阅读:70
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 19041.450
HBuilderX类型: 正式
HBuilderX版本号: 4.15
手机系统: Android
手机系统版本号: Android 12
手机厂商: 华为
手机机型: 华为meta40
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
点击日期组件在点击确定
点击日期组件在点击确定
预期结果:
<uni-datetime-picker
:class="modelValue !== '' ? '' : 'uni-date__x-input-placeholder'"
v-model="modelValue"
:border="false"
:placeholder="placeholder"
:disabled="disabled"
@blur="upwardFormChange(eventName, modelValue)"
@change="upwardFormChange(eventName, modelValue)"
:clear-icon="clearable"
type="datetime"
:hide-second="true"
></uni-datetime-picker>
<uni-datetime-picker
:class="modelValue !== '' ? '' : 'uni-date__x-input-placeholder'"
v-model="modelValue"
:border="false"
:placeholder="placeholder"
:disabled="disabled"
@blur="upwardFormChange(eventName, modelValue)"
@change="upwardFormChange(eventName, modelValue)"
:clear-icon="clearable"
type="datetime"
:hide-second="true"
></uni-datetime-picker>
实际结果:
<uni-datetime-picker
:class="modelValue !== '' ? '' : 'uni-date__x-input-placeholder'"
v-model="modelValue"
:border="false"
:placeholder="placeholder"
:disabled="disabled"
@blur="upwardFormChange(eventName, modelValue)"
@change="upwardFormChange(eventName, modelValue)"
:clear-icon="clearable"
type="datetime"
:hide-second="true"
></uni-datetime-picker>
<uni-datetime-picker
:class="modelValue !== '' ? '' : 'uni-date__x-input-placeholder'"
v-model="modelValue"
:border="false"
:placeholder="placeholder"
:disabled="disabled"
@blur="upwardFormChange(eventName, modelValue)"
@change="upwardFormChange(eventName, modelValue)"
:clear-icon="clearable"
type="datetime"
:hide-second="true"
></uni-datetime-picker>
1***@qq.com (作者)
:hide-second="true" 现在只有把这个参数加上才会显示,就是不显示秒
2024-09-05 16:49