mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
update prettierrc (#2723)
This commit is contained in:
parent
31f7f5d11d
commit
c778a50cd4
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"printWidth": 100,
|
"printWidth": 80,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "none"
|
"trailingComma": "none"
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,10 @@ export default sfc({
|
|||||||
methods: {
|
methods: {
|
||||||
onSelect(express) {
|
onSelect(express) {
|
||||||
this.$emit('select-search', express);
|
this.$emit('select-search', express);
|
||||||
this.$emit('input', `${express.address || ''} ${express.name || ''}`.trim());
|
this.$emit(
|
||||||
|
'input',
|
||||||
|
`${express.address || ''} ${express.name || ''}`.trim()
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
onFinish() {
|
onFinish() {
|
||||||
@ -26,8 +29,8 @@ export default sfc({
|
|||||||
},
|
},
|
||||||
|
|
||||||
renderFinish() {
|
renderFinish() {
|
||||||
const showFinish = this.value && this.focused && android;
|
const show = this.value && this.focused && android;
|
||||||
if (showFinish) {
|
if (show) {
|
||||||
return (
|
return (
|
||||||
<div class={bem('finish')} onClick={this.onFinish}>
|
<div class={bem('finish')} onClick={this.onFinish}>
|
||||||
{t('complete')}
|
{t('complete')}
|
||||||
@ -37,9 +40,10 @@ export default sfc({
|
|||||||
},
|
},
|
||||||
|
|
||||||
renderSearchResult() {
|
renderSearchResult() {
|
||||||
const showSearchList = this.focused && this.searchResult && this.showSearchResult;
|
const { searchResult } = this;
|
||||||
if (showSearchList) {
|
const show = this.focused && searchResult && this.showSearchResult;
|
||||||
return this.searchResult.map(express => (
|
if (show) {
|
||||||
|
return searchResult.map(express => (
|
||||||
<Cell
|
<Cell
|
||||||
key={express.name + express.address}
|
key={express.name + express.address}
|
||||||
title={express.name}
|
title={express.name}
|
||||||
|
@ -119,9 +119,10 @@ export default sfc({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleBlur() {
|
|
||||||
// https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800
|
onBlur() {
|
||||||
// 修复 ios12 键盘弹起后点击错位的问题
|
// 修复 ios12 键盘弹起后点击错位的问题
|
||||||
|
// https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800
|
||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
if (isIOS()) {
|
if (isIOS()) {
|
||||||
window.scrollTo(0, 0);
|
window.scrollTo(0, 0);
|
||||||
@ -155,7 +156,7 @@ export default sfc({
|
|||||||
required={String(message.required) === '1'}
|
required={String(message.required) === '1'}
|
||||||
placeholder={this.getPlaceholder(message)}
|
placeholder={this.getPlaceholder(message)}
|
||||||
type={this.getType(message)}
|
type={this.getType(message)}
|
||||||
onBlur={this.handleBlur}
|
onBlur={this.onBlur}
|
||||||
/>
|
/>
|
||||||
)))}
|
)))}
|
||||||
</CellGroup>
|
</CellGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user