UNPKG

weui-wxss

Version:
36 lines (35 loc) 541 B
Page({ mixins: [require('../../mixin/common')], data: { inputShowed: false, inputVal: '', isFocus: false, }, showInput() { this.setData({ inputShowed: true, }); }, blurInput() { this.setData({ isFocus: false, }); }, hideInput() { this.setData({ inputVal: '', inputShowed: false, }); }, clearInput() { this.setData({ inputVal: '', }); }, inputTyping(e) { this.setData({ inputVal: e.detail.value, isFocus: true, }); }, });