- 1、点击右上角【食谱预览】完成查看食谱全貌
+
+
+
+
9
+
+ 在食谱列表中找到食谱,发起审核
+
+
-
- 2、确认食谱应用分析结果
+
+
+
10
+
+ 等待审核通过后返回食谱列表查看进行发布
+
+
+
+
+
+
11
+
+ 填写发布时间等信息确认发布
+
+
-
-
-
- 保存食谱
-
-
-
- 在食谱库列表中发起审核
-
-
-
- 等待审核通过后发布食谱
-
-
-
- 结束
+
+
+
+
\ No newline at end of file
diff --git a/projects/client/src/app/pages/dashboard/dashboard.component.less b/projects/client/src/app/pages/dashboard/dashboard.component.less
index 86e5bdf..b3de00f 100644
--- a/projects/client/src/app/pages/dashboard/dashboard.component.less
+++ b/projects/client/src/app/pages/dashboard/dashboard.component.less
@@ -1,39 +1,42 @@
-.flow {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
+.card {
+ padding: 24px;
+ border-radius: 6px;
+ background-color: #e9f1fe;
- .item {
- width: 256px;
- margin-bottom: 48px;
- padding: 24px;
- position: relative;
- border-radius: 4px;
- border: 1px solid #333;
- text-align: center;
+ .icon {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 40px;
+ height: 40px;
+ border-radius: 50%;
+ background-color: #2e7ef8;
+ color: #fff;
+ font-size: 26px;
+ font-weight: bold;
+ margin-right: 12px;
+ }
- &:not(:last-child):after {
- content: '';
- width: 1px;
- height: 48px;
- position: absolute;
- bottom: -48px;
- left: 50%;
- transform: translateX(-50%);
- background-color: #333;
- }
+ p {
+ margin-bottom: 6px;
+ }
- &.ellipse {
- width: 180px;
- border-radius: 50%;
- }
+ .ul {
+ padding-left: 20px;
- .arrow {
- position: absolute;
- left: 50%;
- top: -12px;
- transform: translateX(-50%);
+ li {
+ list-style: disc !important;
}
}
+}
+
+.flow-title {
+ width: 100px;
+ margin-right: 12px;
+ font-size: 18px;
+ font-weight: bold;
+
+ &+div {
+ flex: 1;
+ }
}
\ No newline at end of file
diff --git a/projects/client/src/app/pages/data-vis/data-vis.component.ts b/projects/client/src/app/pages/data-vis/data-vis.component.ts
index 597120c..db8e773 100644
--- a/projects/client/src/app/pages/data-vis/data-vis.component.ts
+++ b/projects/client/src/app/pages/data-vis/data-vis.component.ts
@@ -42,9 +42,12 @@ export class DataVisComponent implements AfterViewInit {
logo = "";
ngOnInit(): void {
- const account = this.api.account;
- this.orgName = account?.vender?.name ?? "";
- this.logo = account?.vender?.icon ?? "";
+ this.api.getOrgInfo().subscribe((res) => {
+ const account = this.api.account;
+
+ this.orgName = account?.vender?.name ?? "";
+ this.logo = account?.vender?.icon ?? "";
+ });
interval(1000)
.pipe(takeUntil(this.destroy$))
diff --git a/projects/client/src/app/pages/dish/dish.component.html b/projects/client/src/app/pages/dish/dish.component.html
index 0c48227..78e10f6 100644
--- a/projects/client/src/app/pages/dish/dish.component.html
+++ b/projects/client/src/app/pages/dish/dish.component.html
@@ -122,7 +122,7 @@