Compare commits

..

No commits in common. "71f4acea1ca8f7ddda6a6db7af99463de52bfacb" and "19ee008368b4f8c907f9d3ea29dab0a2afa8e229" have entirely different histories.

3 changed files with 8 additions and 8 deletions

View File

@ -47,7 +47,7 @@ export default [
}, },
{ {
title: 'Prodcuts', title: 'Medicines',
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="Products"> <VCard title="Medicines">
<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 Product New Medicine
</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/products', path: '/admin/medicines',
name: 'admin-medicines', name: 'admin-medicines',
component: () => import('@/pages/medicines/medicines.vue'), component: () => import('@/pages/medicines/medicines.vue'),
}, },