diff --git a/smart-admin-web-typescript/src/api/business/base/address/address-api.ts b/smart-admin-web-typescript/src/api/business/base/address/address-api.ts
new file mode 100644
index 0000000..e1ab240
--- /dev/null
+++ b/smart-admin-web-typescript/src/api/business/base/address/address-api.ts
@@ -0,0 +1,69 @@
+/**
+ * 收货地址 api 封装
+ *
+ * @Author: hj
+ * @Date: 2024-12-26 15:35:23
+ * @Copyright 友仓
+ */
+import {postRequest, getRequest,getDownload} from '/@/lib/axios';
+
+export const addressApi = {
+
+ /**
+ * 分页查询 @author hj
+ */
+ queryPage: (param) => {
+ return postRequest('/address/queryPage', param);
+ },
+
+ /**
+ * 增加 @author hj
+ */
+ add: (param) => {
+ return postRequest('/address/add', param);
+ },
+
+ /**
+ * 修改 @author hj
+ */
+ update: (param) => {
+ return postRequest('/address/update', param);
+ },
+
+
+ /**
+ * 删除 @author hj
+ */
+ delete: (addressId: number) => {
+ return getRequest('/address/delete', {addressId});
+ },
+
+ /**
+ * 批量删除 @author hj
+ */
+ batchDelete: (idList: number[]) => {
+ return postRequest('/address/batchDelete', idList);
+ },
+
+ /**
+ * 下拉查询 @author hj
+ */
+ queryAddress: (param: object) => {
+ return postRequest('/address/queryAddress', param);
+ },
+
+ /**
+ * 导入 @author hj
+ */
+ importAddress: (file: object) => {
+ return postRequest('/address/importAddress', file);
+ },
+
+ /**
+ * 导出 @author hj
+ */
+ exportAddress: () => {
+ return getDownload('/address/exportAddress',{});
+ }
+
+};
diff --git a/smart-admin-web-typescript/src/api/business/base/address/address-const.ts b/smart-admin-web-typescript/src/api/business/base/address/address-const.ts
new file mode 100644
index 0000000..d9ae09e
--- /dev/null
+++ b/smart-admin-web-typescript/src/api/business/base/address/address-const.ts
@@ -0,0 +1,11 @@
+/**
+ * 收货地址 枚举
+ *
+ * @Author: hj
+ * @Date: 2024-12-26 15:35:23
+ * @Copyright 友仓
+ */
+
+
+export default {
+};
\ No newline at end of file
diff --git a/smart-admin-web-typescript/src/constants/support/table-id-const.ts b/smart-admin-web-typescript/src/constants/support/table-id-const.ts
index 2344c68..956f77e 100644
--- a/smart-admin-web-typescript/src/constants/support/table-id-const.ts
+++ b/smart-admin-web-typescript/src/constants/support/table-id-const.ts
@@ -39,6 +39,7 @@ export const TABLE_ID_CONST = {
LOCATION:businessBASEInitTableId+2,//库位
ITEM:businessBASEInitTableId+3,//商品
STOCK:businessBASEInitTableId+4,//容器
+ ADDRESS:businessBASEInitTableId+5,//地址
}
},
diff --git a/smart-admin-web-typescript/src/views/business/base/address/address-form.vue b/smart-admin-web-typescript/src/views/business/base/address/address-form.vue
new file mode 100644
index 0000000..4229c8b
--- /dev/null
+++ b/smart-admin-web-typescript/src/views/business/base/address/address-form.vue
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 保存
+
+
+
+
+
diff --git a/smart-admin-web-typescript/src/views/business/base/address/address-list.vue b/smart-admin-web-typescript/src/views/business/base/address/address-list.vue
new file mode 100644
index 0000000..be1e9af
--- /dev/null
+++ b/smart-admin-web-typescript/src/views/business/base/address/address-list.vue
@@ -0,0 +1,422 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 新建
+
+
+
+
+
+ 批量删除
+
+
+
+
+
+
+ 导入
+
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 第一步:下载模板
+
+
+
+
+
+
+ 第二步:选择文件
+
+
+
+
+
+
+ 第三步:开始导入
+
+
+
+
+
+
+
diff --git a/smart-admin-web-typescript/src/views/business/base/address/address-select.vue b/smart-admin-web-typescript/src/views/business/base/address/address-select.vue
new file mode 100644
index 0000000..9d9907a
--- /dev/null
+++ b/smart-admin-web-typescript/src/views/business/base/address/address-select.vue
@@ -0,0 +1,89 @@
+
+
+
+
+ {{ address.name }}
+
+
+
+
+
diff --git a/smart-admin-web-typescript/src/views/support/code-generator/components/form/code-generator-table-config-form-basic.vue b/smart-admin-web-typescript/src/views/support/code-generator/components/form/code-generator-table-config-form-basic.vue
index 6f73b0e..46361d4 100644
--- a/smart-admin-web-typescript/src/views/support/code-generator/components/form/code-generator-table-config-form-basic.vue
+++ b/smart-admin-web-typescript/src/views/support/code-generator/components/form/code-generator-table-config-form-basic.vue
@@ -1,11 +1,11 @@
<!--
* {{ formData.description }}
- *
- * @Author: {{ formData.frontAuthor }}
- * @Date: {{ formData.frontDate }}
- * @Copyright {{ formData.copyright }}
+ *
+ * @author: {{ formData.frontAuthor }}
+ * @since: {{ formData.frontDate }}
+ * copyright {{ formData.copyright }}
-->
@@ -89,9 +89,9 @@
/*
* {{ formData.description }}
*
- * @Author: {{ formData.frontAuthor }}
- * @Date: {{ formData.frontDate }}
- * @Copyright {{ formData.copyright }}
+ * @author: {{ formData.frontAuthor }}
+ * @since: {{ formData.frontDate }}
+ * copyright {{ formData.copyright }}
*/
@@ -122,9 +122,9 @@
/**
* {{ formData.description }}
*
- * @Author: {{ formData.backendAuthor }}
- * @Date: {{ formData.backendDate }}
- * @Copyright {{ formData.copyright }}
+ * @author: {{ formData.backendAuthor }}
+ * @since: {{ formData.backendDate }}
+ * copyright {{ formData.copyright }}
*/