12345678910111213141516171819202122232425 |
- <ion-header [translucent]="true">
- <ion-toolbar>
- <ion-title>
- 向量与知识库
- </ion-title>
- </ion-toolbar>
- </ion-header>
- <ion-content [fullscreen]="true">
-
- <ion-button routerLink="/face/feat68">面部向量RAG</ion-button>
- <ion-button routerLink="/story/hangzhou">RAG:杭州人才政策</ion-button>
-
- <h1>轮播图示例</h1>
- <comp-swiper [list]="imageList" style="height:200px"></comp-swiper>
- <!-- <comp-swiper [list]="imageList2" [options]="{ direction: 'vertical'}" style="height:200px"></comp-swiper> -->
- <h1>上传组件示例</h1>
- <comp-uploader-hwobs [url]="uploadUrl" (onUrlChange)="onUrlChange($event)"></comp-uploader-hwobs>
- @if(uploadUrl){
- <span>已上传:{{uploadUrl}}</span>
- }
- </ion-content>
|