From c778a50cd4b888f7bd5117e2758d126227bf7bc7 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 12 Feb 2019 19:14:17 +0800 Subject: [PATCH] update prettierrc (#2723) --- .prettierrc | 2 +- packages/address-edit/Detail.js | 16 ++++++++++------ packages/sku/components/SkuMessages.js | 7 ++++--- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.prettierrc b/.prettierrc index 11cd494ab..276a47a73 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,5 @@ { - "printWidth": 100, + "printWidth": 80, "singleQuote": true, "trailingComma": "none" } diff --git a/packages/address-edit/Detail.js b/packages/address-edit/Detail.js index 243a56900..b9f16ba52 100644 --- a/packages/address-edit/Detail.js +++ b/packages/address-edit/Detail.js @@ -18,7 +18,10 @@ export default sfc({ methods: { onSelect(express) { this.$emit('select-search', express); - this.$emit('input', `${express.address || ''} ${express.name || ''}`.trim()); + this.$emit( + 'input', + `${express.address || ''} ${express.name || ''}`.trim() + ); }, onFinish() { @@ -26,8 +29,8 @@ export default sfc({ }, renderFinish() { - const showFinish = this.value && this.focused && android; - if (showFinish) { + const show = this.value && this.focused && android; + if (show) { return (
{t('complete')} @@ -37,9 +40,10 @@ export default sfc({ }, renderSearchResult() { - const showSearchList = this.focused && this.searchResult && this.showSearchResult; - if (showSearchList) { - return this.searchResult.map(express => ( + const { searchResult } = this; + const show = this.focused && searchResult && this.showSearchResult; + if (show) { + return searchResult.map(express => ( )))}