summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/intent-management/intent-management.component.html
diff options
context:
space:
mode:
authorzhenzhenbai <850084376@qq.com>2023-04-20 17:24:35 +0800
committerzhenzhenbai <850084376@qq.com>2023-04-20 17:24:35 +0800
commit036d317e9a713fca592015837c38625a8e1bdbc9 (patch)
treef8523b9f0d7f72d6f7dbc3ad1f72b0d388208f4d /usecaseui-portal/src/app/views/intent-management/intent-management.component.html
parentd7aee316c1748e33e9716b2b9fc4019e64d854db (diff)
Title: Displaying the intent report status
Desc: the protal supports intention management to display the intention reeporting status Issue-ID: USECASEUI-798 Signed-off-by: zhenzhenbai <850084376@qq.com> Change-Id: I2e0034eeb640be7f372bfe703fc3444794ac497a
Diffstat (limited to 'usecaseui-portal/src/app/views/intent-management/intent-management.component.html')
-rw-r--r--usecaseui-portal/src/app/views/intent-management/intent-management.component.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/usecaseui-portal/src/app/views/intent-management/intent-management.component.html b/usecaseui-portal/src/app/views/intent-management/intent-management.component.html
index 7e3a5712..e7eb0ad4 100644
--- a/usecaseui-portal/src/app/views/intent-management/intent-management.component.html
+++ b/usecaseui-portal/src/app/views/intent-management/intent-management.component.html
@@ -26,10 +26,11 @@
>
<thead>
<tr>
- <th nzWidth="12%">No</th>
+ <th nzWidth="10%">No</th>
<th nzWidth="30%">Intent ID</th>
<th nzWidth="30%">Intent Name</th>
- <th nzWidth="18%">{{"i18nTextDefine_Action" | translate}}</th>
+ <th nzWidth="15%">Status</th>
+ <th nzWidth="15%">{{"i18nTextDefine_Action" | translate}}</th>
</tr>
</thead>
<tbody>
@@ -38,7 +39,9 @@
<td>{{i+1}}</td>
<td>{{ data.intentId }}</td>
<td>{{ data.intentName }}</td>
+ <td>{{ data.intentStatus }}</td>
<td>
+ <em class="anticon anticon-menu-fold" (click)="viewReport(data,i)"></em>
<em class="anticon anticon-edit" (click)="editIntentList(data,i)"></em>
<em class="anticon anticon-delete" (click)="deleteIntentList(data)"></em>
</td>
@@ -47,4 +50,5 @@
</tbody>
</nz-table>
</div>
-<app-input-intent-management [showModel]="intentModuleShow" (modalOpreation)="inputIntentModuleClose($event)" [editIntentTableData]="editIntentTableList"></app-input-intent-management> \ No newline at end of file
+<app-input-intent-management [showModel]="intentModuleShow" (modalOpreation)="inputIntentModuleClose($event)" [editIntentTableData]="editIntentTableList"></app-input-intent-management>
+<app-intent-report-detail [showModel]="intentReportDetailShow" (modalOpreation)="intentReportModuleClose($event)" [reportData]="reportData" [intentInfo]="intentInfo" ></app-intent-report-detail> \ No newline at end of file