You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.6 KiB
104 lines
2.6 KiB
<template>
|
|
<view class="u-demo">
|
|
<view class="u-demo-wrap" style="background-color: #FFFFFF;">
|
|
<view class="u-demo-title">演示效果</view>
|
|
<view class="u-demo-area">
|
|
<u-field
|
|
v-model="mobile"
|
|
label="手机号"
|
|
:error-message="errorMessage"
|
|
placeholder="请填写手机号"
|
|
:required="required"
|
|
:icon="icon1"
|
|
:type="type"
|
|
>
|
|
</u-field>
|
|
<u-field
|
|
v-model="code"
|
|
label="验证码"
|
|
placeholder="请填写验证码"
|
|
:required="required"
|
|
:icon="icon2"
|
|
>
|
|
<u-button v-if="showBtn" slot="right" size="mini" type="success">发送验证码</u-button>
|
|
</u-field>
|
|
</view>
|
|
</view>
|
|
<view class="u-config-wrap">
|
|
<view class="u-config-title u-border-bottom">
|
|
参数配置
|
|
</view>
|
|
<view class="u-config-item">
|
|
<view class="u-item-title">右侧按钮</view>
|
|
<u-subsection current="1" :list="['是', '否']" @change="showBtnChange"></u-subsection>
|
|
</view>
|
|
<view class="u-config-item">
|
|
<view class="u-item-title">显示错误信息</view>
|
|
<u-subsection current="1" :list="['是', '否']" @change="errorMessageChange"></u-subsection>
|
|
</view>
|
|
<view class="u-config-item">
|
|
<view class="u-item-title">是否必填</view>
|
|
<u-subsection current="1" :list="['是', '否']" @change="requiredChange"></u-subsection>
|
|
</view>
|
|
<view class="u-config-item">
|
|
<view class="u-item-title">显示左图标和右箭头</view>
|
|
<u-subsection current="1" :list="['是', '否']" @change="customChange"></u-subsection>
|
|
</view>
|
|
<view class="u-config-item">
|
|
<view class="u-item-title">第一个输入框为textarea类型</view>
|
|
<u-subsection current="1" :list="['是', '否']" @change="textareaChange"></u-subsection>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
mobile: '',
|
|
code: '',
|
|
errorMessage: '',
|
|
required: false,
|
|
placeholderColor: this.$u.color['tipsColor'],
|
|
arrow: false,
|
|
showBtn: false,
|
|
icon1: '',
|
|
icon2: '',
|
|
type: 'text',
|
|
}
|
|
},
|
|
methods: {
|
|
showBtnChange(index) {
|
|
this.showBtn = index == 0 ? true : false;
|
|
},
|
|
errorMessageChange(index) {
|
|
this.errorMessage = index == 0 ? '手机号有误' : false
|
|
},
|
|
requiredChange(index) {
|
|
this.required = index == 0 ? true : false;
|
|
},
|
|
customChange(index) {
|
|
if(index == 0) {
|
|
this.icon1 = 'map';
|
|
this.icon2 = 'photo';
|
|
this.arrow = true;
|
|
} else {
|
|
this.icon1 = '';
|
|
this.icon2 = '';
|
|
this.arrow = false;
|
|
}
|
|
},
|
|
textareaChange(index) {
|
|
this.type = index == 0 ? 'textarea' : 'text';
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.u-demo {
|
|
|
|
}
|
|
</style>
|