feat(shop): 新增文章管理功能

- 添加文章列表页面,支持搜索、分页加载、下拉刷新等功能
- 实现文章详情查看、编辑和删除功能- 新增文章发布页面,支持富文本编辑和图片上传
- 优化地址管理页面,统一底部按钮样式
- 新增 FixedButton 组件用于底部固定按钮
This commit is contained in:
2025-08-13 02:54:28 +08:00
parent 9dabda3d47
commit 0e457f66d8
8 changed files with 686 additions and 189 deletions

View File

@@ -2,7 +2,7 @@ import {useEffect} from "react";
import Taro from '@tarojs/taro'
import {addShopUserAddress} from "@/api/shop/shopUserAddress";
const Address = () => {
const WxAddress = () => {
/**
* 从微信API获取用户收货地址
* 调用微信原生地址选择界面,获取成功后保存到服务器并刷新列表
@@ -64,4 +64,4 @@ const Address = () => {
);
};
export default Address;
export default WxAddress;