王五,1320000000
浙江省杭州市滨江区江南大道 15 号
diff --git a/packages/area/demo/index.vue b/packages/area/demo/index.vue
index 016e9c138..56280c795 100644
--- a/packages/area/demo/index.vue
+++ b/packages/area/demo/index.vue
@@ -21,6 +21,14 @@
:title="$t('title')"
/>
+
+
+
+
@@ -33,11 +41,15 @@ export default {
'zh-CN': {
title2: '选中省市区',
title3: '配置显示列',
+ title4: '配置列占位提示文字',
+ columnsPlaceholder: ['请选择'],
areaList: AreaList
},
'en-US': {
title2: 'Initial Value',
title3: 'Columns Number',
+ title4: 'Columns Placeholder',
+ columnsPlaceholder: ['Choose'],
areaList: AreaListEn
}
},
diff --git a/packages/area/en-US.md b/packages/area/en-US.md
index e35b16932..2ee1765f6 100644
--- a/packages/area/en-US.md
+++ b/packages/area/en-US.md
@@ -36,6 +36,17 @@ Set `columns-num` with 2, you'll have a 2 level picker.
```
+### Columns Placeholder
+
+`columns-placeholder` property is used to config placeholder of columns.
+
+```html
+
+```
### API
@@ -45,6 +56,7 @@ Set `columns-num` with 2, you'll have a 2 level picker.
| title | Toolbar title | `String` | - |
| area-list | Area data | `Object` | - |
| columns-num | level of picker | `String | Number` | `3` |
+| columns-placeholder | placeholder of columns | `string[]` | `[]` | - |
| item-height | Option height | `Number` | `44` |
| loading | Whether to show loading prompt | `Boolean` | `false` |
| visible-item-count | Count of visible columns | `Number` | `5` |
diff --git a/packages/area/index.js b/packages/area/index.js
index 60966827c..b750138de 100644
--- a/packages/area/index.js
+++ b/packages/area/index.js
@@ -15,6 +15,10 @@ export default sfc({
columnsNum: {
type: [String, Number],
default: 3
+ },
+ columnsPlaceholder: {
+ type: Array,
+ default: () => []
}
},
@@ -40,6 +44,13 @@ export default sfc({
displayColumns() {
return this.columns.slice(0, +this.columnsNum);
+ },
+ typeToColumnsPlaceholder() {
+ return {
+ province: this.columnsPlaceholder[0] || '',
+ city: this.columnsPlaceholder[1] || '',
+ county: this.columnsPlaceholder[2] || '',
+ };
}
},
@@ -81,6 +92,14 @@ export default sfc({
name: list[listCode]
}));
+ if (this.columnsPlaceholder.length) {
+ // set columns placeholder
+ result.unshift({
+ code: '000000',
+ name: this.typeToColumnsPlaceholder[type]
+ });
+ }
+
if (code) {
// oversea code
if (code[0] === '9' && type === 'city') {
@@ -119,8 +138,30 @@ export default sfc({
this.$emit('change', picker, picker.getValues(), index);
},
+ onConfirm(values, index) {
+ values.forEach(value => {
+ if (value.code === '000000') {
+ value.code = '';
+ value.name = '';
+ }
+ });
+ this.setValues();
+ this.$emit('confirm', values, index);
+ },
+
setValues() {
- let code = this.code || Object.keys(this.county)[0] || '';
+ let { code } = this;
+
+ if (!code) {
+ if (this.columnsPlaceholder.length) {
+ code = '000000';
+ } else if (Object.keys(this.county)[0]) {
+ code = Object.keys(this.county)[0];
+ } else {
+ code = '';
+ }
+ }
+
const { picker } = this.$refs;
const province = this.getList('province');
const city = this.getList('city', code.slice(0, 2));
@@ -186,7 +227,8 @@ export default sfc({
render(h) {
const on = {
...this.$listeners,
- change: this.onChange
+ change: this.onChange,
+ confirm: this.onConfirm
};
return (
diff --git a/packages/area/test/__snapshots__/demo.spec.js.snap b/packages/area/test/__snapshots__/demo.spec.js.snap
index 8d0a741b5..168dc9649 100644
--- a/packages/area/test/__snapshots__/demo.spec.js.snap
+++ b/packages/area/test/__snapshots__/demo.spec.js.snap
@@ -63,5 +63,27 @@ exports[`renders demo correctly 1`] = `