Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs fix #1395

Merged
merged 46 commits into from
Jan 26, 2025
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
af09893
feat: 尝试删除compiled
Nov 26, 2024
8b62eb8
feat: 改造compiled
Nov 26, 2024
99d3649
feat: 修改real_release.yml文件
Nov 26, 2024
a601414
fix: eslintignore
Nov 27, 2024
1358c68
fix: 修改beta版本号
Nov 27, 2024
2ff2296
fix: release时不再需要重复run build
Nov 27, 2024
7ce5106
feat: 将几处demo页面列表及组件列表的配置文件改为动态生成
Nov 28, 2024
b38f81b
fix: 合并master
Nov 28, 2024
4add3a1
fix: rm app.json
Nov 28, 2024
5b22f3e
fix: 合并Master迭代
Dec 3, 2024
995f1ad
fix: 提示优化
Dec 3, 2024
fbefbd2
fix: 更改beta版本号
Dec 4, 2024
f42707c
feat: 引入copilot系列组件
Dec 5, 2024
9875266
fix: 合并master
Dec 9, 2024
bd90c2a
feat: Copilot组件框架
Dec 11, 2024
566a68d
fix: 增加编译流程
Dec 12, 2024
ab37591
feat: 升级copilot架构
Dec 12, 2024
8101338
prompts 组件 (#1345)
Ray0329 Jan 2, 2025
55a9907
Merge branch 'master' into feat/x-components
rayhomie Jan 2, 2025
08d59f1
feat: copilot suggestion dev
rayhomie Jan 2, 2025
1ce04c8
Copilot suggestion dev (#1356)
rayhomie Jan 7, 2025
3c21d95
feat: merge prompts & suggestion (#1381)
rayhomie Jan 14, 2025
ddaf664
Feat Conversations (#1388)
rayhomie Jan 23, 2025
7999320
feat: Add copilot components
anotherso1a Jan 23, 2025
52437e4
chore: solve conflicts
anotherso1a Jan 23, 2025
233a610
feat: add dark mode
anotherso1a Jan 23, 2025
d48cf36
copilot系列-思维链组件 (#1355)
coderrorer Jan 24, 2025
7505b83
优化思维链组件 (#1389)
coderrorer Jan 24, 2025
4d4a4a7
fix: adjust wx
anotherso1a Jan 24, 2025
9f7e994
chore: solve conflicts
anotherso1a Jan 24, 2025
187331b
chore: solve conflicts
anotherso1a Jan 24, 2025
3987495
fix: add demos
anotherso1a Jan 24, 2025
d6c92c8
style: change text
anotherso1a Jan 24, 2025
8bdf40d
fix: 修复微信编译问题
Jan 24, 2025
312acb2
fix: fix props & doc contents
anotherso1a Jan 24, 2025
3fd007e
fix: 修复微信兼容问题
Jan 24, 2025
1e2d7c7
fix: merge
Jan 24, 2025
724dee4
fix: 修复demo问题
Jan 24, 2025
005f29b
fix: 更新文档
Jan 24, 2025
cb61254
fix: update doc
Jan 24, 2025
20ea20b
docs: add en path
anotherso1a Jan 24, 2025
5301904
fix: solve conflicts
anotherso1a Jan 24, 2025
8352839
fix: 统一demo样式
anotherso1a Jan 24, 2025
47c862c
fix: solve conflicts
anotherso1a Jan 24, 2025
d84506a
chore: merge master
anotherso1a Jan 26, 2025
1882e12
docs: fix welcome demo
anotherso1a Jan 26, 2025
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
58 changes: 1 addition & 57 deletions copilot-demo/pages/Welcome/index.ts
Original file line number Diff line number Diff line change
@@ -1,59 +1,3 @@
//@ts-ignore

Page({
data: {
basicList: [
{
title: '理解问题',
content: '3A游戏',
icon: 'CheckCircleOutline'
},
{
title: '没有在本地找到结果',
content: '当前主流显卡',
icon: 'CheckCircleOutline'
},
{
title: '在互联网上搜索问题',
content: '黑神话悟空所需显卡',
icon: 'MoreOutline',
},
],
customList: [
{
title: '理解问题',
content: '解析语法结构',
},
{
status: 'loading',
title: '搜索问题',
content: [
{
title: '理解问题',
},
{
title: '联网搜索',
content: '1. 黑神话悟空介绍',
},
{
title: '已根据搜索结果精选3篇资料',
content: [
'1. 黑神话悟空介绍',
'2. 对于1080p显示器,4060ti和4060该选哪个?',
'3. 黑神话悟空官方建议配置',
],
},
{
title: '联想更多结果',
},
],
},
],
},
onContentItemTap(e) {
const { content } = e.target.dataset || {};
my.alert({
content: `点击了内容「${content}」`,
});
},
});
Page({});
Loading