From 77c2bdd45ca70e57667b346585edc5034cbd821e Mon Sep 17 00:00:00 2001
From: Liuyi <candymxq888@outlook.com>
Date: 星期六, 28 九月 2024 17:48:30 +0800
Subject: [PATCH] 调通地址管理及新增接口,调整树形区域组件

---
 api/index.js |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/api/index.js b/api/index.js
index 17a289c..f48caa0 100644
--- a/api/index.js
+++ b/api/index.js
@@ -10,7 +10,16 @@
 export function getUserInfo(){
 	return request('/user/loginUser',{},'GET')
 }
-//
+//省市区域
 export function getRegionApi(code){
 	return request(`/sysRegion/getListChild?code=${code}`,{},'GET')
 }
+//创建用户档案、送水地址
+export function creatUserArchive(data){
+	return request('/userArchives/realName',data,'POST')
+}
+//查询送水地址列表
+export function searchAddress(data){
+	return request('/userAddress/search',data,'POST')
+}
+

--
Gitblit v1.9.3