feat(developer): 完成小程序开发者中心和企业控制台改造
- 设计并实现了开发者中心与企业控制台两大模块 - 按用户角色区分开发者和企业客户,支持多项目类型及成员管理 - 新增项目管理、应用管理、API Key管理及成员邀请等多功能页面 - 实现应用版本发布、消息通知中心、权限审批与开发者申请流程 - 完成CI/CD流水线、运营监控、发票管理、SSO单点登录功能 - 搭建SDK下载中心、工单系统、FAQ系统、数据导入导出等模块 - 优化后端API,支持已登录和未注册用户不同加入应用流程 - 前端按钮统一采用微信手机号授权,完善用户授权体验 - 修复多个页面的JSX语法错误及依赖导入问题,替换部分组件库 - 增加详细的类型定义文件,提升项目类型安全 - 新增超过55个页面及60个API接口,扩展应用功能和服务体系 - 完成全面的样式设计,实现一致的视觉风格和交互体验
This commit is contained in:
3
src/developer/docs/api-docs.config.ts
Normal file
3
src/developer/docs/api-docs.config.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: 'API 文档',
|
||||
})
|
||||
10
src/developer/docs/api-docs.scss
Normal file
10
src/developer/docs/api-docs.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.api-docs-page {
|
||||
padding: 32rpx;
|
||||
|
||||
&__content {
|
||||
text-align: center;
|
||||
padding: 120rpx 0;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
15
src/developer/docs/api-docs.tsx
Normal file
15
src/developer/docs/api-docs.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react'
|
||||
import { View, Text } from '@tarojs/components'
|
||||
import './api-docs.scss'
|
||||
|
||||
const ApiDocsPage: React.FC = () => {
|
||||
return (
|
||||
<View className="api-docs-page">
|
||||
<View className="api-docs-page__content">
|
||||
<Text>API 文档开发中...</Text>
|
||||
</View>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
export default ApiDocsPage
|
||||
3
src/developer/docs/index.config.ts
Normal file
3
src/developer/docs/index.config.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: '开发者文档',
|
||||
})
|
||||
28
src/developer/docs/index.scss
Normal file
28
src/developer/docs/index.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
page {
|
||||
background: #f5f6f7;
|
||||
}
|
||||
|
||||
.docs-page {
|
||||
min-height: 100vh;
|
||||
background: #f5f6f7;
|
||||
padding: 24rpx;
|
||||
|
||||
&__header {
|
||||
margin-bottom: 24rpx;
|
||||
}
|
||||
|
||||
&__title {
|
||||
font-size: 36rpx;
|
||||
font-weight: 800;
|
||||
color: #111111;
|
||||
}
|
||||
|
||||
&__content {
|
||||
background: #ffffff;
|
||||
border-radius: 20rpx;
|
||||
padding: 48rpx;
|
||||
text-align: center;
|
||||
color: #999999;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
}
|
||||
18
src/developer/docs/index.tsx
Normal file
18
src/developer/docs/index.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from 'react'
|
||||
import { View, Text } from '@tarojs/components'
|
||||
import './index.scss'
|
||||
|
||||
const DeveloperDocs: React.FC = () => {
|
||||
return (
|
||||
<View className="docs-page">
|
||||
<View className="docs-page__header">
|
||||
<Text className="docs-page__title">📖 开发者文档</Text>
|
||||
</View>
|
||||
<View className="docs-page__content">
|
||||
<Text>开发者文档功能开发中...</Text>
|
||||
</View>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
export default DeveloperDocs
|
||||
3
src/developer/docs/quickstart.config.ts
Normal file
3
src/developer/docs/quickstart.config.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: '快速开始',
|
||||
})
|
||||
10
src/developer/docs/quickstart.scss
Normal file
10
src/developer/docs/quickstart.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.quickstart-page {
|
||||
padding: 32rpx;
|
||||
|
||||
&__content {
|
||||
text-align: center;
|
||||
padding: 120rpx 0;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
15
src/developer/docs/quickstart.tsx
Normal file
15
src/developer/docs/quickstart.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react'
|
||||
import { View, Text } from '@tarojs/components'
|
||||
import './quickstart.scss'
|
||||
|
||||
const QuickstartPage: React.FC = () => {
|
||||
return (
|
||||
<View className="quickstart-page">
|
||||
<View className="quickstart-page__content">
|
||||
<Text>快速开始文档开发中...</Text>
|
||||
</View>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
export default QuickstartPage
|
||||
Reference in New Issue
Block a user