2***@qq.com
2***@qq.com
  • 发布:2023-12-19 10:25
  • 更新:2023-12-19 14:54
  • 阅读:138

#插件讨论# 【 支付键盘、数字键盘、付款键盘、密码键盘 - 折沐 】删除时间

分类:uni-app

删除的时间都没有吗?

2023-12-19 10:25 负责人:无 分享
已邀请:
喜欢技术的前端

喜欢技术的前端 - QQ---445849201

这个可以自己加,/components/cu-keyboard/cu-keyboard.vue 组件的100行,加$emit ,在父组件中,写回调

子  
del(){  
            if(this.value.length){  
                this.value = this.value.slice(0,this.value.length-1);  
            }  
            this.$emit('del',this.value)  
        },  
父  
<cu-keyboard ref="cukeyboard" @change="change" @confirm="confirm" @hide="hide" @del="del"></cu-keyboard>

要回复问题请先登录注册