|
@@ -1,9 +1,9 @@
|
|
|
import { Component, Input, OnInit } from '@angular/core';
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
-import { Router } from '@angular/router';
|
|
|
+import { NavigationExtras, Router } from '@angular/router';
|
|
|
|
|
|
-import { IonCardSubtitle, IonTextarea, ModalController } from '@ionic/angular/standalone';
|
|
|
+import { IonCardSubtitle, IonProgressBar, IonTextarea, ModalController } from '@ionic/angular/standalone';
|
|
|
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';
|
|
|
import { TestChatCompletion } from './test-chat-completion';
|
|
|
import { EditTagComponent } from '../edit-tag/edit-tag.component';
|
|
@@ -31,37 +31,238 @@ addIcons({ camera, trendingUpOutline, sparklesOutline, cloudyOutline, diceOutlin
|
|
|
styleUrls: ['./customization.page.scss'],
|
|
|
standalone: true,
|
|
|
|
|
|
- imports: [IonContent, IonHeader, IonTitle, IonToolbar, CommonModule, FormsModule, IonButton, IonInput, EditTagComponent, IonTextarea, IonItem, IonList, MarkdownPreviewModule, IonIcon, IonContent, IonHeader, IonTitle, IonToolbar, CommonModule, FormsModule, IonButton, IonLabel, IonLabel, IonList, IonItem, IonBackButton, IonButtons, IonIcon, IonItemDivider, IonAvatar, IonThumbnail, IonItemOptions, IonItemSliding, IonItemOption, IonItemOptions, IonInput, IonCheckbox, IonRadio, IonToggle, IonRadioGroup, IonSearchbar, IonSegment, IonSegmentButton, IonDatetime, IonFooter, IonCardContent, IonCardTitle, IonCardHeader, IonCard, IonCol, IonRow, IonGrid, IonChip, IonImg, IonCardSubtitle, SwiperComponent, RouterModule,]
|
|
|
+ imports: [IonProgressBar,IonContent, IonHeader, IonTitle, IonToolbar, CommonModule, FormsModule, IonButton, IonInput, EditTagComponent, IonTextarea, IonItem, IonList, MarkdownPreviewModule, IonIcon, IonContent, IonHeader, IonTitle, IonToolbar, CommonModule, FormsModule, IonButton, IonLabel, IonLabel, IonList, IonItem, IonBackButton, IonButtons, IonIcon, IonItemDivider, IonAvatar, IonThumbnail, IonItemOptions, IonItemSliding, IonItemOption, IonItemOptions, IonInput, IonCheckbox, IonRadio, IonToggle, IonRadioGroup, IonSearchbar, IonSegment, IonSegmentButton, IonDatetime, IonFooter, IonCardContent, IonCardTitle, IonCardHeader, IonCard, IonCol, IonRow, IonGrid, IonChip, IonImg, IonCardSubtitle, SwiperComponent, RouterModule,]
|
|
|
})
|
|
|
export class CustomizationPage implements OnInit {
|
|
|
+ public buffer = 0.06;
|
|
|
+ public progress = 0;
|
|
|
|
|
|
- //修改ai回答内容
|
|
|
- async modeify(respone:string,add:string){
|
|
|
- let promt = `你是一名专业服装设计师,这是你的上次回答:
|
|
|
- ${respone}
|
|
|
+
|
|
|
+ // 修改需求分析
|
|
|
+ async modifyRequire() {
|
|
|
+ this.requireComplete=false
|
|
|
+
|
|
|
+ let a = await openCommentPostModal(this.modalCtrl, { "title": "需求修改", "title2": "修改" });
|
|
|
+ if (a == null) {
|
|
|
+ a = "";
|
|
|
+ }
|
|
|
+ let prompt = `你是一名专业服装设计师,这是你的上次回答:
|
|
|
+ ${this.gptre}
|
|
|
基于你上次回答,我想做一些修改,修改如下:
|
|
|
- ${add}
|
|
|
- `
|
|
|
+ ${a},
|
|
|
+ 请你将上次回答基于我提出的修改修改后再发一遍
|
|
|
+ `;
|
|
|
|
|
|
- let completion = new FmodeChatCompletion([
|
|
|
- { role: "system", content: "" },
|
|
|
- { role: "user", content: promt }
|
|
|
- ])
|
|
|
- let result=""
|
|
|
- completion.sendCompletion().subscribe((message: any) => {
|
|
|
+ let completion = new FmodeChatCompletion([
|
|
|
+ { role: "system", content: "" },
|
|
|
+ { role: "user", content: prompt }
|
|
|
+ ]);
|
|
|
+ completion.sendCompletion().subscribe(
|
|
|
+ (message: any) => {
|
|
|
+ this.gptre=message.content
|
|
|
+ console.log("Received message:", message);
|
|
|
+ if(this.progress<0.97){
|
|
|
+ if(this.progress<0.5){
|
|
|
+ this.progress+=0.01
|
|
|
+ }
|
|
|
+ if(this.progress>=0.5){
|
|
|
+ this.progress+=0.001
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (message?.complete) {
|
|
|
+ this.requireComplete=true
|
|
|
+
|
|
|
+ this.progress=0
|
|
|
+ console.log("完成");
|
|
|
|
|
|
- result = message.content
|
|
|
- if (message?.complete) {
|
|
|
- return result;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ )
|
|
|
+ }
|
|
|
+
|
|
|
+ async createdetail() {
|
|
|
+ this.type="detail"
|
|
|
+ let promotTemplate = `您是一名专业的美术画家,请您根据服装描述内容,将1.其描述的服装细节描述出来,服装描述如下:${this.gptre}`
|
|
|
+ let completion = new FmodeChatCompletion([
|
|
|
+ { role: "system", content: "" },
|
|
|
+ { role: "user", content: promotTemplate }
|
|
|
+ ])
|
|
|
+
|
|
|
+ completion.sendCompletion().subscribe((message: any) => {
|
|
|
+ // 打印消息体
|
|
|
+ console.log(message.content)
|
|
|
+
|
|
|
+ // 赋值消息内容给组件内属性
|
|
|
+ this.picdetail = message.content
|
|
|
+ if(this.progress<0.97){
|
|
|
+ if(this.progress<0.5){
|
|
|
+ this.progress+=0.01
|
|
|
+ }
|
|
|
+ if(this.progress>=0.5){
|
|
|
+ this.progress+=0.001
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (message?.complete) {
|
|
|
+ this.isComplete = true;
|
|
|
+ // this.getJson()
|
|
|
+ this.progress=0
|
|
|
+
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+ }
|
|
|
+ async modifyDetail() {
|
|
|
+ this.isComplete=false
|
|
|
+
|
|
|
+ let a = await openCommentPostModal(this.modalCtrl, { "title": "细节修改", "title2": "修改" });
|
|
|
+ if (a == null) {
|
|
|
+ a = "";
|
|
|
+ }
|
|
|
+ let prompt = `你是一名专业服装设计师,这是你的上次回答:
|
|
|
+ ${this.picdetail}
|
|
|
+ 基于你上次回答,我想做一些修改,修改如下:
|
|
|
+ ${a},
|
|
|
+ 请你将上次回答基于我提出的修改修改后再发一遍
|
|
|
+ `;
|
|
|
+
|
|
|
+ let completion = new FmodeChatCompletion([
|
|
|
+ { role: "system", content: "" },
|
|
|
+ { role: "user", content: prompt }
|
|
|
+ ]);
|
|
|
+ completion.sendCompletion().subscribe(
|
|
|
+ (message: any) => {
|
|
|
+ this.picdetail=message.content
|
|
|
+ console.log("Received message:", message);
|
|
|
+ if(this.progress<0.97){
|
|
|
+ if(this.progress<0.5){
|
|
|
+ this.progress+=0.01
|
|
|
}
|
|
|
- })
|
|
|
+ if(this.progress>=0.5){
|
|
|
+ this.progress+=0.001
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (message?.complete) {
|
|
|
+ this.isComplete=true
|
|
|
|
|
|
+ console.log("完成");
|
|
|
+ this.progress=0
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ )
|
|
|
}
|
|
|
- //修改需求分析
|
|
|
- modifyRequire(){
|
|
|
+
|
|
|
+
|
|
|
+ getJson() {
|
|
|
+ this.type="image"
|
|
|
+ let promt = `请你以以下json格式整合文段内容:
|
|
|
|
|
|
+ {
|
|
|
+ "goal":"客户定制服装目的",
|
|
|
+ "style":"风格",
|
|
|
+ "color":"颜色",
|
|
|
+ "feature":"客户特殊的身体特征胸围大点什么的,如果客户没有特殊的身体特征这里填空字符串",
|
|
|
+ "ACC":"配饰,耳环,领带什么的",
|
|
|
+ "rim":"辅料,纽扣,拉链什么的",
|
|
|
+ "period":"定制周期",
|
|
|
+ "clothing":"以衣服类型+推荐尺码这样的格式拼接,比如西装外套+XXL",
|
|
|
+ "trousers":"以裤子类型+推荐尺码这样的格式拼接,如果客户没有指定裤子类型,由你来选一种合适的裤子类型",
|
|
|
+ "shoe":"以鞋子类型+推荐尺码这样的格式拼接,如果客户没有指定鞋子类型,由你来选一种合适的鞋子类型",
|
|
|
+ "after":"售后信息",
|
|
|
+ "texture":"材质"
|
|
|
+ "remark":"备注,用户给出了不属于上述字段的需求就全部拼接在这里显示"
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+ 内容如下:${this.picdetail} ${this.gptre}
|
|
|
+`
|
|
|
+
|
|
|
+ let completion = new FmodeChatCompletion([
|
|
|
+ { role: "system", content: "" },
|
|
|
+ { role: "user", content: promt }
|
|
|
+ ])
|
|
|
+ completion.sendCompletion().subscribe((message: any) => {
|
|
|
+ if(this.progress<0.97){
|
|
|
+ if(this.progress<0.8){
|
|
|
+ this.progress+=0.005
|
|
|
+ }
|
|
|
+ if(this.progress>=0.8){
|
|
|
+ this.progress+=0.001
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 打印消息体
|
|
|
+ console.log(message.content)
|
|
|
+
|
|
|
+
|
|
|
+ // 赋值消息内容给组件内属性
|
|
|
+ this.JSONdes = message.content
|
|
|
+ if (message?.complete) {
|
|
|
+ console.log("json:", this.JSONdes);
|
|
|
+
|
|
|
+ this.imagineWork = new ImagineWork();
|
|
|
+ let options: DalleOptions = { prompt: this.picdetail }
|
|
|
+ this.imagineWork.draw(options).subscribe(async work => {
|
|
|
+ console.log("imagineWork", work?.toJSON())
|
|
|
+ console.log("images", work?.get("images"))
|
|
|
+ if (work?.get("images")?.length) {
|
|
|
+ this.images = work?.get("images");
|
|
|
+ this.progress=0
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ let a = extactAndParseJsonFromString(this.JSONdes)
|
|
|
+ // a.comment=await this.presentAlert();
|
|
|
+ // console.log("a.comment",a.comment);
|
|
|
+
|
|
|
+
|
|
|
+ a.detail = this.picdetail;
|
|
|
+ a.image =this.images[0]
|
|
|
+ this.JSONobject = a
|
|
|
+ this.JSONKeys = Object.keys(this.JSONobject)
|
|
|
+ this.JSONcomplete = true
|
|
|
+ console.log(a);
|
|
|
+
|
|
|
+ //加入数据库
|
|
|
+ let newDsign = {
|
|
|
+ "goal": a['goal'],
|
|
|
+ "style": a['style'],
|
|
|
+ "color": a['color'],
|
|
|
+ "feature": a['feature'],
|
|
|
+ "ACC": a['ACC'],
|
|
|
+ "rim": a['rim'],
|
|
|
+ "period": a['period'],
|
|
|
+ "clothing": a['clothing'],
|
|
|
+ "trousers": a['trousers'],
|
|
|
+ "shoe": a['shoe'],
|
|
|
+ "after": a['after'],
|
|
|
+ "texture": a['texture'],
|
|
|
+ "remark": a['remark'],
|
|
|
+ "image": a['image'],
|
|
|
+ "user": new CloudUser().toPointer(),
|
|
|
+ "detail": a['detail'],
|
|
|
+ "comment": ""
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ let newObject = new CloudObject("Designs")
|
|
|
+ newObject.set(newDsign)
|
|
|
+ newObject.id = (await newObject.save()).id
|
|
|
+ this.newObject = newObject;
|
|
|
+ console.log("添加成功");
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
//打开聊天窗口
|
|
|
async openInquiry(doctor: CloudObject) {
|
|
|
let currentUser = new CloudUser();
|
|
@@ -119,12 +320,23 @@ export class CustomizationPage implements OnInit {
|
|
|
{ role: "user", content: promt }
|
|
|
])
|
|
|
completion.sendCompletion().subscribe((message: any) => {
|
|
|
-
|
|
|
+ if(this.progress<0.97){
|
|
|
+ if(this.progress<0.5){
|
|
|
+ this.progress+=0.01
|
|
|
+ }
|
|
|
+ if(this.progress>=0.5){
|
|
|
+ this.progress+=0.001
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
console.log(message.content)
|
|
|
console.log("complete:::::", this.isComplete);
|
|
|
this.gptre = message.content
|
|
|
if (message?.complete) {
|
|
|
- this.createImage()
|
|
|
+ this.progress=0
|
|
|
+ this.requireComplete=true;
|
|
|
+
|
|
|
+ // this.createImage()
|
|
|
}
|
|
|
})
|
|
|
|
|
@@ -221,8 +433,8 @@ ${userPrompt}
|
|
|
|
|
|
|
|
|
@Input()
|
|
|
- type:"require"|"detail"|"image" = "require"
|
|
|
- typeChange(ev:any){
|
|
|
+ type: "require" | "detail" | "image" = "require"
|
|
|
+ typeChange(ev: any) {
|
|
|
this.type = ev?.detail?.value || ev?.value || 'require'
|
|
|
}
|
|
|
|
|
@@ -230,32 +442,43 @@ ${userPrompt}
|
|
|
|
|
|
|
|
|
public isComplete: boolean = false;
|
|
|
+ public requireComplete: boolean = true;
|
|
|
editTags: Array<string> = []
|
|
|
picdetail: string = ""
|
|
|
public JSONKeys: string[] = []
|
|
|
public JSONKeys2: string[] = []
|
|
|
|
|
|
- async toComment(){
|
|
|
- let a=await openCommentPostModal(this.modalCtrl)
|
|
|
- if(a==null){
|
|
|
- a=""
|
|
|
+
|
|
|
+
|
|
|
+ async toComment() {
|
|
|
+ let a = await openCommentPostModal(this.modalCtrl, { "title": "评论", "title2": "评论" })
|
|
|
+ if (a == null) {
|
|
|
+ a = ""
|
|
|
}
|
|
|
-
|
|
|
- this.newObject.set({"comment":a})
|
|
|
- this.newObject.save()
|
|
|
- console.log("添加评论成功");
|
|
|
-
|
|
|
+
|
|
|
+ this.newObject.set({ "comment": a })
|
|
|
+ this.newObject.save()
|
|
|
+ console.log("添加评论成功");
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toReport() {
|
|
|
- this.nav.navigateRoot(['report'], {
|
|
|
- queryParams: {
|
|
|
- 'object': JSON.stringify(this.JSONobject)
|
|
|
- }
|
|
|
- });
|
|
|
+ // this.nav.navigateRoot(['report'], {
|
|
|
+ // queryParams: {
|
|
|
+ // 'object': JSON.stringify(this.JSONobject)
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+
|
|
|
+
|
|
|
+ const state: any = { myObject: this.JSONobject }; // 你要传递的对象数据
|
|
|
+ const navigationExtras: NavigationExtras = {
|
|
|
+ state: state
|
|
|
+ };
|
|
|
+
|
|
|
+ this.router.navigate(['/report'], navigationExtras);
|
|
|
|
|
|
// this.router.navigate(['/report',this.JSONobject2])
|
|
|
|
|
@@ -287,7 +510,7 @@ ${userPrompt}
|
|
|
}
|
|
|
let newObject = new CloudObject("Designs")
|
|
|
newObject.set(newDsign)
|
|
|
-
|
|
|
+
|
|
|
console.log(newObject.save());
|
|
|
|
|
|
|
|
@@ -300,39 +523,40 @@ ${userPrompt}
|
|
|
) {
|
|
|
// 示例任务,自己生成图片后请存储新的ID
|
|
|
console.log('ImagineWork instance:', this.imagineWork);
|
|
|
-
|
|
|
+
|
|
|
// this.imagineWork = new ImagineWork("Wx6o1Js1gA");
|
|
|
// this.imagineWork.fetchTask().then(work => {
|
|
|
// this.images = this.imagineWork?.images || [];
|
|
|
// })
|
|
|
}
|
|
|
- async createImage() {
|
|
|
- let promotTemplate = `您是一名专业的美术画家,请您根据服装描述内容,将1.其描述的服装细节描述出来,服装描述如下:${this.gptre}`
|
|
|
- let completion = new FmodeChatCompletion([
|
|
|
- { role: "system", content: "" },
|
|
|
- { role: "user", content: promotTemplate }
|
|
|
- ])
|
|
|
-
|
|
|
- completion.sendCompletion().subscribe((message: any) => {
|
|
|
- // 打印消息体
|
|
|
- console.log(message.content)
|
|
|
- // 赋值消息内容给组件内属性
|
|
|
- this.picdetail = message.content
|
|
|
- if (message?.complete) {
|
|
|
- this.isComplete = true;
|
|
|
- this.getJson()
|
|
|
-
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
|
|
|
imagineWork: ImagineWork | undefined
|
|
|
images: Array<string> = []
|
|
|
- public gptre = ""
|
|
|
+ public gptre = `在这段对话中,我们可以分析出用户的需求和服装的细节设计。以下是详细分析:
|
|
|
+
|
|
|
+### 1. 用户对于定制服装的需求
|
|
|
+- **场合**:用户明确表示需要定制服装的场合是婚礼,这意味着服装需要正式且优雅。
|
|
|
+- **风格选择**:用户希望设计师帮忙选择风格,并没有明确的偏好,这表明用户可能对婚礼服装的具体风格不太了解或者希望设计师提供专业建议。
|
|
|
+- **颜色和材质**:用户在颜色和材质方面也没有特别要求,完全依赖设计师的选择,这显示出用户对设计师的信任。
|
|
|
+- **尺码和身体特征**:用户提供了身高和体重,并提到“胸围大点”,这意味着在服装的剪裁上需要特别注意胸部的合身度。
|
|
|
+- **售后服务**:用户希望有售后服务,特别是调整和清洗服务,显示出用户对服装的长期使用和维护的关注。
|
|
|
+
|
|
|
+### 2. 联想并补全服装的细节
|
|
|
+- **服装类型**:选择了经典的燕尾服,适合正式的婚礼场合。
|
|
|
+- **颜色**:选择了经典的黑色,符合婚礼的正式氛围。
|
|
|
+- **材质**:选择了丝绸,因其光泽感和柔软度,适合高档场合。
|
|
|
+- **配饰**:选择了黑色领结和白色口袋巾,经典而优雅,能够提升整体形象。
|
|
|
+- **辅料**:选择了黑色纽扣和丝绸衬里,确保整体风格统一且高档。
|
|
|
+- **定制周期**:设定为3周,符合一般定制的时间要求。
|
|
|
+- **尺码**:根据用户的身高和体重,推荐XXL尺码,特别注意胸围的合身。
|
|
|
+- **鞋子类型**:建议42-43码的皮鞋,符合用户的身高体重。
|
|
|
+- **售后服务**:包括免费调整和清洗服务,确保用户在婚礼后也能保持服装的最佳状态。
|
|
|
+- **备注**:用户希望随时联系,表明用户对沟通的重视。
|
|
|
+
|
|
|
+### 总结
|
|
|
+通过对用户需求的分析和对服装细节的补全,我们可以为用户提供一套完整的婚礼燕尾服定制方案。这不仅满足了用户对正式场合服装的需求,也考虑到了用户的个人特征和售后服务的期望。这样的定制方案将有助于用户在婚礼上展现最佳形象。`
|
|
|
messageList: string[] = []
|
|
|
title: string = "123"
|
|
|
chatID = ""
|
|
@@ -340,109 +564,14 @@ ${userPrompt}
|
|
|
JSONcomplete: boolean = false
|
|
|
JSONdes = ""
|
|
|
JSONobject: { [key: string]: string } = {}
|
|
|
-
|
|
|
-
|
|
|
- /** 示例:问诊ChatPanel面板 */
|
|
|
-
|
|
|
- getJson() {
|
|
|
-
|
|
|
- let promt = `请你以以下json格式整合文段内容:
|
|
|
-
|
|
|
- {
|
|
|
- "goal":"客户定制服装目的",
|
|
|
- "style":"风格",
|
|
|
- "color":"颜色",
|
|
|
- "feature":"客户特殊的身体特征胸围大点什么的,如果客户没有特殊的身体特征这里填空字符串",
|
|
|
- "ACC":"配饰,耳环,领带什么的",
|
|
|
- "rim":"辅料,纽扣,拉链什么的",
|
|
|
- "period":"定制周期",
|
|
|
- "clothing":"以衣服类型+推荐尺码这样的格式拼接,比如西装外套+XXL",
|
|
|
- "trousers":"以裤子类型+推荐尺码这样的格式拼接,如果客户没有指定裤子类型,由你来选一种合适的裤子类型",
|
|
|
- "shoe":"以鞋子类型+推荐尺码这样的格式拼接,如果客户没有指定鞋子类型,由你来选一种合适的鞋子类型",
|
|
|
- "after":"售后信息",
|
|
|
- "texture":"材质"
|
|
|
- "remark":"备注,用户给出了不属于上述字段的需求就全部拼接在这里显示"
|
|
|
-
|
|
|
-}
|
|
|
|
|
|
|
|
|
- 内容如下:${this.picdetail} ${this.gptre}
|
|
|
-`
|
|
|
-
|
|
|
- let completion = new FmodeChatCompletion([
|
|
|
- { role: "system", content: "" },
|
|
|
- { role: "user", content: promt }
|
|
|
- ])
|
|
|
- completion.sendCompletion().subscribe((message: any) => {
|
|
|
- // 打印消息体
|
|
|
- console.log(message.content)
|
|
|
-
|
|
|
-
|
|
|
- // 赋值消息内容给组件内属性
|
|
|
- this.JSONdes = message.content
|
|
|
- if (message?.complete) {
|
|
|
- console.log("json:", this.JSONdes);
|
|
|
-
|
|
|
- this.imagineWork = new ImagineWork();
|
|
|
- let options: DalleOptions = { prompt: this.picdetail }
|
|
|
- this.imagineWork.draw(options).subscribe(async work => {
|
|
|
- console.log("imagineWork", work?.toJSON())
|
|
|
- console.log("images", work?.get("images"))
|
|
|
- if (work?.get("images")?.length) {
|
|
|
- this.images = work?.get("images");
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- let a = extactAndParseJsonFromString(this.JSONdes)
|
|
|
- // a.comment=await this.presentAlert();
|
|
|
- // console.log("a.comment",a.comment);
|
|
|
-
|
|
|
-
|
|
|
- a.detail = this.picdetail;
|
|
|
- a.image = work?.toJSON().objectId
|
|
|
- this.JSONobject = a
|
|
|
- this.JSONKeys = Object.keys(this.JSONobject)
|
|
|
- this.JSONcomplete = true
|
|
|
- console.log(a);
|
|
|
-
|
|
|
- //加入数据库
|
|
|
- let newDsign = {
|
|
|
- "goal": a['goal'],
|
|
|
- "style": a['style'],
|
|
|
- "color": a['color'],
|
|
|
- "feature": a['feature'],
|
|
|
- "ACC": a['ACC'],
|
|
|
- "rim": a['rim'],
|
|
|
- "period": a['period'],
|
|
|
- "clothing": a['clothing'],
|
|
|
- "trousers": a['trousers'],
|
|
|
- "shoe": a['shoe'],
|
|
|
- "after": a['after'],
|
|
|
- "texture": a['texture'],
|
|
|
- "remark": a['remark'],
|
|
|
- "image": a['image'],
|
|
|
- "user": new CloudUser().toPointer(),
|
|
|
- "detail": a['detail'],
|
|
|
- "comment":""
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- let newObject = new CloudObject("Designs")
|
|
|
- newObject.set(newDsign)
|
|
|
- newObject.id= (await newObject.save()).id
|
|
|
- this.newObject=newObject;
|
|
|
- console.log("添加成功");
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
+ /** 示例:问诊ChatPanel面板 */
|
|
|
|
|
|
- return true;
|
|
|
- }
|
|
|
- newObject:CloudObject=new CloudObject("Designs")
|
|
|
- shareData:any = {}
|
|
|
|
|
|
+ newObject: CloudObject = new CloudObject("Designs")
|
|
|
+ shareData: any = {}
|
|
|
+
|
|
|
|
|
|
|
|
|
|