mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 03:22:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <demo-section>
 | |
|     <demo-block :title="$t('basicUsage')">
 | |
|       <van-address-edit
 | |
|         :area-list="areaList"
 | |
|         show-postal
 | |
|         show-delete
 | |
|         show-set-default
 | |
|         show-search-result
 | |
|         :search-result="searchResult"
 | |
|         :area-columns-placeholder="['请选择','请选择','请选择']"
 | |
|         @save="onSave"
 | |
|         @delete="onDelete"
 | |
|         @change-detail="onChangeDetail"
 | |
|       />
 | |
|     </demo-block>
 | |
|   </demo-section>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import areaList from '../../area/demo/area';
 | |
| 
 | |
| export default {
 | |
|   i18n: {
 | |
|     'zh-CN': {
 | |
|       searchResult: [{
 | |
|         name: '黄龙万科中心',
 | |
|         address: '杭州市西湖区'
 | |
|       }, {
 | |
|         name: '黄龙万科中心G座'
 | |
|       }, {
 | |
|         name: '黄龙万科中心H座',
 | |
|         address: '杭州市西湖区'
 | |
|       }]
 | |
|     },
 | |
|     'en-US': {
 | |
|       searchResult: [{
 | |
|         name: 'Name1',
 | |
|         address: 'Address'
 | |
|       }, {
 | |
|         name: 'Name2'
 | |
|       }, {
 | |
|         name: 'Name3',
 | |
|         address: 'Address'
 | |
|       }]
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   data() {
 | |
|     return {
 | |
|       areaList,
 | |
|       searchResult: []
 | |
|     };
 | |
|   },
 | |
| 
 | |
|   methods: {
 | |
|     onSave() {
 | |
|       this.$toast(this.$t('save'));
 | |
|     },
 | |
| 
 | |
|     onDelete() {
 | |
|       this.$toast(this.$t('delete'));
 | |
|     },
 | |
| 
 | |
|     onChangeDetail(val) {
 | |
|       this.searchResult = val ? this.$t('searchResult') : [];
 | |
|     }
 | |
|   }
 | |
| };
 | |
| </script>
 |