城南花开 3 months ago
parent
commit
4afbfa833a

+ 1 - 1
tailor-app/myapp/src/app/customization/customization.page.ts

@@ -208,7 +208,7 @@ export class CustomizationPage implements OnInit {
         console.log("json:", this.JSONdes);
 
         this.imagineWork = new ImagineWork();
-        let options: DalleOptions = { prompt: this.picdetail }
+        let options: DalleOptions = { prompt: `我要求你以写实的画风画服装,以下是服装细节${this.picdetail}` }
         this.imagineWork.draw(options).subscribe(async work => {
           console.log("imagineWork", work?.toJSON())
           console.log("images", work?.get("images"))

+ 4 - 4
tailor-app/myapp/src/app/swiper/swiper.component.html

@@ -1,4 +1,4 @@
-<div class="swiper_box">
+<div class="swiper_box" >
   <div class="swiper-container" id="swiper1">
     <div class="swiper-wrapper" >
       <div class="swiper-slide" *ngFor="let design of designList" style="display: flex;align-items: center;justify-content: center;">
@@ -77,7 +77,7 @@
   <ion-button (click)="scrollToElement()" expand="block" style="width: 90%;margin: auto;">开始挑选您的专属设计师吧!</ion-button>
 
 
-  <div class="swiper-container" id="swiper2" style="height: 480px;">
+  <div class="swiper-container" id="swiper2" style="max-height: 450px;">
     <!-- <div  data-swiper-parallax="-23%" data-swiper-parallax-duration="3000" style="background-image: url('assets/img/3d.png');"></div> -->
     <div class="swiper-wrapper">
       <!-- <div class="swiper-slide">
@@ -90,7 +90,7 @@
         <div data-swiper-parallax-scale="0.15">缩放变化</div>
       </div> -->
       <div class="swiper-slide" *ngFor="let design of designList"  >
-        <ion-card style="width: 90%;margin: auto;margin-top: 20px;padding: 10px;min-height: 390px;">
+        <ion-card style="width: 90%;margin: auto;margin-top: 20px;padding: 10px;height: 390px;border-radius: 20px;">
  
       
               <ion-grid>
@@ -102,7 +102,7 @@
                     </ion-avatar>
                     <h2 style="font-weight: bolder;display: inline-block;">{{design.username}}</h2>
                     </div>
-                    <div style="margin-top: 10px;margin-bottom: 10px;font-size: 17px;line-height: 40px;text-indent: 40px;">
+                    <div style="margin-top: 10px;margin-bottom: 10px;font-size: 17px;line-height: 30px;text-indent: 40px;">
                       {{design.comment}}
                     </div>
                 </ion-row>

+ 3 - 3
tailor-app/myapp/src/app/swiper/swiper.component.ts

@@ -211,8 +211,8 @@ async getUserByUsername2(username: string):Promise<string> {
 
     let cc:Array<Design>=await Promise.all(
       bb.map(async item=>{
-        let avatar: string = await this.getUserByUsername(item['user']);
-        let username: string = await this.getUserByUsername2(item['user']);
+        let avatar: string = await this.getUserByUsername(item['user'].objectId);
+        let username: string = await this.getUserByUsername2(item['user'].objectId);
   
         let obj= {
           "goal":item['goal'] ,
@@ -229,7 +229,7 @@ async getUserByUsername2(username: string):Promise<string> {
           "texture":item['texture'] ,
           "remark":item['remark'],
           "image": item['image'],
-          "user":item['user'] ,
+          "user":item['user'].objectId ,
           "detail":item['detail'] ,
           "comment":item['comment'] ,
           "avatar":avatar,

+ 1 - 1
tailor-app/myapp/src/app/yiyun/yiyun.page.html

@@ -22,7 +22,7 @@
   <ion-grid>
     <ion-row>
       <ion-col *ngFor="let item of items; let i = index" class="custom-padding">
-        <div class="button-container">
+        <div class="button-container" (click)="go(item.page)">
           <ion-icon size="large" [name]="item.image"></ion-icon>
           <p class="item-text" style="font-weight: bolder;">{{ item.text }}</p>
         </div>

+ 10 - 3
tailor-app/myapp/src/app/yiyun/yiyun.page.ts

@@ -6,6 +6,8 @@ import { addIcons } from 'ionicons';
 import { camera,trendingUpOutline,sparklesOutline,cloudyOutline,diceOutline} from 'ionicons/icons';
 import { IonContent, IonHeader, IonTitle, IonToolbar, IonButton, IonLabel, IonItem, IonList, IonBackButton, IonButtons, IonIcon, IonItemDivider, IonAvatar, IonThumbnail, IonItemOptions, IonItemOption, IonItemSliding, IonInput, IonCheckbox, IonRadio, IonToggle, IonRadioGroup, IonSearchbar,IonSegment,IonSegmentButton,IonDatetime,IonFooter,IonCardContent,IonCardTitle,IonCardHeader,IonCard,IonCol,IonRow,IonGrid,IonChip,IonImg } from '@ionic/angular/standalone';
 addIcons({camera,trendingUpOutline,sparklesOutline,cloudyOutline,diceOutline})
+import { NavigationExtras, Router } from '@angular/router';
+
 @Component({
   selector: 'app-yiyun',
   templateUrl: './yiyun.page.html',
@@ -17,16 +19,17 @@ addIcons({camera,trendingUpOutline,sparklesOutline,cloudyOutline,diceOutline})
 
 
 export class YiyunPage implements OnInit {
+  
 
-  constructor() { }
+  constructor(private router: Router) { }
 
   ngOnInit() {
   }
   public items = [
     { text: '趋势分析', image: 'trending-up-outline', page: '/page1' },
-    { text: 'AI定制', image: 'dice-outline', page: '/page2' },
+    { text: 'AI定制', image: 'dice-outline', page: '/testPage' },
     { text: '活动优惠', image: 'sparkles-outline', page: '/page3' },
-    { text: '虚拟试衣', image: 'cloudy-outline', page: '/page4' },
+    { text: '今日穿搭', image: 'cloudy-outline', page: '/tianqi' },
     
   ];
 
@@ -39,7 +42,11 @@ export class YiyunPage implements OnInit {
     // ... 更多商品数据
   ];
 
+go(a:any){
+  this.router.navigate([a]);
 
+  
+}
   // 打开登陆页面
   openLoginModal(){
     console.log("打开登陆页面");

+ 1 - 1
tailor-app/myapp/src/lib/user/modal-comment-post/modal-comment-post.component.html

@@ -9,7 +9,7 @@
    </ion-card-header>
  <ion-card-content>
 
-  <ion-textarea label="Regular textarea" placeholder="Type something here" [(ngModel)]="text" style="height: 300px;" ></ion-textarea>
+  <ion-textarea label="Regular textarea" placeholder="Type something here" [(ngModel)]="text" style="min-height: 300px;" [autoGrow]="true" ></ion-textarea>
  
   <ion-button expand="block" (click)="save()">保存</ion-button>
   <ion-button expand="block" (click)="cancel()">取消</ion-button>