前端vue uni-app基于原生input组件的增强简单通用实用输入框

随着技术的发展,开发的复杂度也越来越高,传统开发方式将一个系统做成了整块应用,经常出现的情况就是一个小小的改动或者一个小功能的增加可能会引起整体逻辑的修改,造成牵一发而动全身。通过组件化开发,可以有效实现单独开发,单独维护,而且他们之间可以随意的进行组合。大大提升开发效率低,降低维护成本。

 

组件化对于任何一个业务场景复杂的前端应用以及经过多次迭代之后的产品来说都是必经之路。组件化要做的不仅仅是表面上看到的模块拆分解耦,其背后还有很多工作来支撑组件化的进行,例如结合业务特性的模块拆分策略、模块间的交互方式和构建系统等等 。

 

本文给大家介绍的一款组件是:

前端vue uni-app基于原生input组件的增强简单通用实用输入框,

效果图如下:

 

82fc01fbcd0c942d6b855e0fa16aa22c.png

3a5d45ebb4a4cb2ecb5b0e0fbd862ab8.png

实现代码如下:

# 前端基于原生input组件的增强简单通用实用输入框

#### 使用方法

```使用方法

<!-- leftTitle:左边标题 name:输入框名字  value:输入框值  placeholder:占位符 -->

<ccInputView leftTitle="姓名" name="name" value="" placeholder="请输入姓名"></ccInputView>

```

#### HTML代码部分

```html

<template>

<view class="content">

<form @submit="formSubmit" @reset="formReset">

<!-- leftTitle:左边标题 name:输入框名字  value:输入框值  placeholder:占位符 -->

<ccInputView leftTitle="姓名" name="name" value="" placeholder="请输入姓名"></ccInputView>

<!-- leftTitle:左边标题 name:输入框名字  value:输入框值  placeholder:占位符 -->

<ccInputView leftTitle="手机号" name="phone" value="" placeholder="请输入手机号"></ccInputView>

    <ccInputView leftTitle="住址" name="address" value="" placeholder="请输入地址"></ccInputView>

<ccInputView leftTitle="爱好" name="interest" value="" placeholder="请输入爱好"></ccInputView>

<view class="uni-btn-v">

<button class="botBtn" type="primary" form-type="submit">下一步</button>

<view class="tipText"> 注意事项: 请确保您填写的信息真实无误 </view>

</view>

</form>

</view>

</template>

```

#### JS代码 (引入组件 填充数据)

```javascript

<script>

import ccInputView from '../../components/ccInputView.vue'

export default {

components:{

ccInputView

},

data() {

return {

}

},

methods: {

formSubmit: function(e) {

    console.log('form发生了submit事件,携带数据为:' + JSON.stringify(e));

    var formdata = e.detail.value;

uni.showModal({

title:'温馨提示',

content:'formsubmit事件携带数据为:' + JSON.stringify(e.detail.value)

})

},

towardPickerChange: function(e) {

this.towardIndex = e.target.value;

console.log(e.target.value);

},

floorPickerChange: function(e) {

this.floorIndex = e.target.value;

console.log(e.target.value);

},

liftPickerChange: function(e) {

this.liftIndex = e.target.value;

console.log(e.target.value);

},

decoratePickerChange: function(e) {

this.decorateIndex = e.target.value;

console.log(e.target.value);

},

}

}

</script>

```

#### CSS

```CSS

<style>

.content {

display: flex;

flex-direction: column;

align-items: center;

justify-content: center;

}

.uni-btn-v{

width: 100%;

height: auto;

}

.botBtn {

width: 90%;

margin-top: 36px;

}

.tipText {

width: 100%;

margin-left: 0px;

text-align: center;

color: #666666;

margin-top: 36px;

margin-bottom: 36px;

font-size: 28rpx;

}

</style>

```

阅读全文下载完整组件代码请关注微信公众号: 前端组件开发

d848d5658a07453c843277846948c608.png

 

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端组件开发

你的钟意将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值