mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-24 02:16:12 +08:00
Merge remote-tracking branch 'main/dev' into dev
This commit is contained in:
commit
87e211cabf
@ -1,5 +1,12 @@
|
|||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
|
## [v0.8.0](https://github.com/youzan/vant/tree/v0.8.0) (2017-08-17)
|
||||||
|
[Full Changelog](https://github.com/youzan/vant/compare/v0.7.10...v0.8.0)
|
||||||
|
|
||||||
|
**合并的 Pull Request (可能有不兼容改动):**
|
||||||
|
|
||||||
|
- Optimize component building, reduce dist file size [\#74](https://github.com/youzan/vant/pull/74) ([chenjiahan](https://github.com/chenjiahan))
|
||||||
|
|
||||||
## [v0.7.10](https://github.com/youzan/vant/tree/v0.7.10) (2017-08-16)
|
## [v0.7.10](https://github.com/youzan/vant/tree/v0.7.10) (2017-08-16)
|
||||||
[Full Changelog](https://github.com/youzan/vant/compare/v0.7.8...v0.7.10)
|
[Full Changelog](https://github.com/youzan/vant/compare/v0.7.8...v0.7.10)
|
||||||
|
|
||||||
|
@ -47,7 +47,15 @@ export default {
|
|||||||
:on-icon-click="onIconClick"
|
:on-icon-click="onIconClick"
|
||||||
@blur="onFieldBlur"
|
@blur="onFieldBlur"
|
||||||
required></van-field>
|
required></van-field>
|
||||||
<van-field type="password" label="密码:" placeholder="请输入密码" required></van-field>
|
<van-field
|
||||||
|
type="password"
|
||||||
|
label="密码:"
|
||||||
|
placeholder="请输入密码"
|
||||||
|
required>
|
||||||
|
<template slot="icon">
|
||||||
|
<van-icon name="search"></van-icon>
|
||||||
|
</template>
|
||||||
|
</van-field>
|
||||||
<van-field type="textarea" label="个人介绍:" placeholder="请输入个人介绍" required></van-field>
|
<van-field type="textarea" label="个人介绍:" placeholder="请输入个人介绍" required></van-field>
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
```
|
```
|
||||||
@ -132,3 +140,9 @@ export default {
|
|||||||
| icon | 输入框尾部图标 | `string` | | icon中支持的类型 |
|
| icon | 输入框尾部图标 | `string` | | icon中支持的类型 |
|
||||||
| onIconClick | 点击图标的回调函数 | `function` | | |
|
| onIconClick | 点击图标的回调函数 | `function` | | |
|
||||||
|
|
||||||
|
### Slot
|
||||||
|
|
||||||
|
| name | 描述 |
|
||||||
|
|-----------|-----------|
|
||||||
|
| icon | 自定义icon |
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vant",
|
"name": "vant",
|
||||||
"version": "0.8.0",
|
"version": "0.8.1",
|
||||||
"description": "有赞vue wap组件库",
|
"description": "有赞vue wap组件库",
|
||||||
"main": "lib/vant.js",
|
"main": "lib/vant.js",
|
||||||
"style": "lib/vant-css/index.css",
|
"style": "lib/vant-css/index.css",
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
'van-field--disabled': disabled,
|
'van-field--disabled': disabled,
|
||||||
'van-field--error': error,
|
'van-field--error': error,
|
||||||
'van-field--border': border,
|
'van-field--border': border,
|
||||||
'van-field--autosize': autosize
|
'van-field--autosize': autosize,
|
||||||
|
'van-field--has-icon': showIcon
|
||||||
}">
|
}">
|
||||||
<textarea
|
<textarea
|
||||||
v-if="type === 'textarea'"
|
v-if="type === 'textarea'"
|
||||||
@ -37,7 +38,11 @@
|
|||||||
:maxlength="maxlength"
|
:maxlength="maxlength"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:readonly="readonly">
|
:readonly="readonly">
|
||||||
<van-icon v-if="icon && currentValue" :name="icon" class="van-field__icon" @click="onIconClick"></van-icon>
|
<div v-if="showIcon" class="van-field__icon" @click="onIconClick">
|
||||||
|
<slot name="icon">
|
||||||
|
<van-icon :name="icon"></van-icon>
|
||||||
|
</slot>
|
||||||
|
</div>
|
||||||
</van-cell>
|
</van-cell>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -101,6 +106,17 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
showIcon() {
|
||||||
|
// 有icon的slot,就认为一直展示
|
||||||
|
if (this.$slots.icon) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.icon && this.currentValue;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleInput(event) {
|
handleInput(event) {
|
||||||
this.currentValue = event.target.value;
|
this.currentValue = event.target.value;
|
||||||
|
@ -37,7 +37,7 @@ import Swipe from './swipe';
|
|||||||
import SwipeItem from './swipe-item';
|
import SwipeItem from './swipe-item';
|
||||||
import DatetimePicker from './datetime-picker';
|
import DatetimePicker from './datetime-picker';
|
||||||
|
|
||||||
const version = '0.8.0';
|
const version = '0.8.1';
|
||||||
const components = [
|
const components = [
|
||||||
Button,
|
Button,
|
||||||
Switch,
|
Switch,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vant-css",
|
"name": "vant-css",
|
||||||
"version": "0.8.0",
|
"version": "0.8.1",
|
||||||
"description": "vant css.",
|
"description": "vant css.",
|
||||||
"main": "lib/index.css",
|
"main": "lib/index.css",
|
||||||
"style": "lib/index.css",
|
"style": "lib/index.css",
|
||||||
|
@ -78,6 +78,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--has-icon {
|
||||||
|
.van-field__control {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__control {
|
&__control {
|
||||||
border: 0;
|
border: 0;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user