diff --git a/litemall-admin/src/views/user/address.vue b/litemall-admin/src/views/user/address.vue
index 9f204fcf..4578e516 100644
--- a/litemall-admin/src/views/user/address.vue
+++ b/litemall-admin/src/views/user/address.vue
@@ -17,14 +17,16 @@
-
+
-
+
- {{ scope.row.province + scope.row.city + scope.row.area + scope.row.address }}
+ {{ scope.row.province + scope.row.city + scope.row.county }}
+
+
{{ scope.row.isDefault ? '是' : '否' }}
@@ -85,7 +87,7 @@ export default {
this.downloadLoading = true
import('@/vendor/Export2Excel').then(excel => {
const tHeader = ['地址ID', '用户ID', '收获人', '手机号', '省', '市', '区', '地址', '是否默认']
- const filterVal = ['id', 'userId', 'name', 'mobile', 'province', 'city', 'area', 'address', 'isDefault']
+ const filterVal = ['id', 'userId', 'name', 'tel', 'province', 'city', 'county', 'addressDetail', 'isDefault']
excel.export_json_to_excel2(tHeader, this.list, filterVal, '用户地址信息')
this.downloadLoading = false
})