Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
8d5b021
🏢 构建: 添加 figma token 支持, 组件自动注入 (#5)
PentaTea Oct 12, 2022
d2eef3d
首次更新基础样式
PentaTea Oct 13, 2022
27a3f5f
🏢 构建: 添加钩子, 支持自动解析token, 顺便理顺版本
PentaTea Oct 13, 2022
f1e0380
✨ 功能(layout): 新增添加fab (#6)
PentaTea Oct 20, 2022
4efc2b6
🚧 进行中(layout): 重写文章页面, 完成空状态布局
PentaTea Nov 5, 2022
4cacbaa
✨ 功能(layout): 添加文章分组和段落的新建状态
PentaTea Nov 20, 2022
cd0d7e0
✨ 功能(layout): 增加主页卡片数据展示 (#7)
w0fv1 Nov 22, 2022
3e4f1a1
Feat article page api (#8)
w0fv1 Nov 22, 2022
dea6d28
✨ 功能(layout): 添加文章页面基础数据绑定
PentaTea Nov 22, 2022
92635c3
🔩 架构: 更新一下后端url和接口
PentaTea Nov 26, 2022
3872f83
fix(v-model): 修改了package.json的脚本配置问题,启动项目
20ax Oct 18, 2023
3cd9ad6
feat: 自定义tabbar,创作工具基本演示,标签添加
20ax Oct 20, 2023
b37e9f2
feat: 完成工具组文字和图片拖动设置与插入,删除,以及图片预览
20ax Oct 26, 2023
951c5ac
fext: 初步完成0.1.0工作,包括登录注册,内容浏览,节点浏览,创建内容等
20ax Nov 9, 2023
322792e
feature: 过渡版本,优化代码,完成内容的标题和标签,解决窗口抖动问题
20ax Nov 11, 2023
b64184d
fix: 优化0.1.0版本,节点切换优化,身份验证
20ax Nov 21, 2023
97138ad
feat: 开发0.2.0的作品创建功能,作品展示功能,个人中心功能
20ax Dec 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
VITE_PROXY_URL="http://wofbi001.local:8080"
VITE_PROXY_URL="http://101.133.164.151:30090"
VITE_BASE_URL="/api"
VITE_OSS_BASE_URL="https://sichiao-dev.oss-cn-hangzhou.aliyuncs.com/"
5 changes: 3 additions & 2 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
VITE_PROXY_URL=None
VITE_BASE_URL="http://wofbi001.local"
VITE_PROXY_URL="http://101.133.164.151:30090"
VITE_BASE_URL="/api"
VITE_OSS_BASE_URL="https://sichiao-dev.oss-cn-hangzhou.aliyuncs.com/"
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ unpackage/
src/pages.json
/stats.html

yarn.lock
package-lock.json

# 本地环境文件
.env.local
.env.*.local
Expand Down
46 changes: 24 additions & 22 deletions .hbuilderx/launch.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
"version": "0.0",
"configurations": [{
"app-plus" :
{
"launchtype" : "local"
},
"default" :
{
"launchtype" : "local"
},
"h5" :
{
"launchtype" : "local"
},
"mp-weixin" :
{
"launchtype" : "local"
},
"type" : "uniCloud"
}
{
// launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
"version" : "0.0",
"configurations" : [
{
"app-plus" : {
"launchtype" : "local"
},
"default" : {
"launchtype" : "local"
},
"h5" : {
"launchtype" : "local"
},
"mp-weixin" : {
"launchtype" : "local"
},
"type" : "uniCloud"
},
{
"playground" : "standard",
"type" : "uni-app:app-android"
}
]
}
4 changes: 4 additions & 0 deletions .husky/post-merge
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn trans:token
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged --allow-empty "$1"
npx lint-staged "$1"
Loading