diff --git a/src/pages/04_product-service/MainPage.vue b/src/pages/04_product-service/MainPage.vue index 72fcd87c..37403231 100644 --- a/src/pages/04_product-service/MainPage.vue +++ b/src/pages/04_product-service/MainPage.vue @@ -1187,20 +1187,111 @@ watch(currentStatus, async () => { class="row q-col-gutter-lg flex" style="padding: 20px" > +
+ +
- if (currentStatus === 'INACTIVE') { +
+ +
+ + + +
{ - if (currentStatus === 'All') { - return true; - } - - if (currentStatus === 'ACTIVE') { - return i.status === 'ACTIVE' || i.status === 'CREATED'; - } - - if (currentStatus === 'INACTIVE') { + if (currentStatus === 'All' || currentStatus === 'INACTIVE') { return i.status === 'INACTIVE'; } })