Merge branch 'dev' of ssh://git.codelfi.com:2202/telemedpro/hgh_admin into dev

This commit is contained in:
nasir@endelospay.com 2024-06-12 03:13:39 +05:00
commit bac643bc68
3 changed files with 8 additions and 8 deletions

View File

@ -47,7 +47,7 @@ export default [
}, },
{ {
title: 'Medicines', title: 'Prodcuts',
icon: { icon: 'ri-medicine-bottle-line' }, icon: { icon: 'ri-medicine-bottle-line' },
to: 'admin-medicines', to: 'admin-medicines',
}, },

View File

@ -74,10 +74,10 @@ const headers = [
title: 'Title', title: 'Title',
key: 'title', key: 'title',
}, },
{ // {
title: 'Slug', // title: 'Slug',
key: 'slug', // key: 'slug',
}, // },
{ {
title: 'Price', title: 'Price',
key: 'price', key: 'price',
@ -371,14 +371,14 @@ onMounted(() => {
<template> <template>
<v-row> <v-row>
<v-col cols="12" md="12" v-if="getmedicineList"> <v-col cols="12" md="12" v-if="getmedicineList">
<VCard title="Medicines"> <VCard title="Products">
<VCardText > <VCardText >
<VRow> <VRow>
<VCol cols="12" md="8" class="d-flex align-center"> <VCol cols="12" md="8" class="d-flex align-center">
<VBtn color="primary" prepend-icon="ri-add-line" @click="addDialog = true" style="display: none;"> <VBtn color="primary" prepend-icon="ri-add-line" @click="addDialog = true" style="display: none;">
New Medicine New Product
</VBtn> </VBtn>
</VCol> </VCol>
<VCol cols="12" md="4" class="d-flex justify-end"> <VCol cols="12" md="4" class="d-flex justify-end">

View File

@ -109,7 +109,7 @@ export const routes = [
component: () => import('@/pages/labs/labs-kit.vue'), component: () => import('@/pages/labs/labs-kit.vue'),
}, },
{ {
path: '/admin/medicines', path: '/admin/products',
name: 'admin-medicines', name: 'admin-medicines',
component: () => import('@/pages/medicines/medicines.vue'), component: () => import('@/pages/medicines/medicines.vue'),
}, },