#6321 - Negative ticket #158

Open
jsegarra wants to merge 220 commits from 6321_negative_tickets into dev
3 changed files with 2 additions and 40 deletions
Showing only changes of commit e264a13234 - Show all commits

View File

@ -6,37 +6,6 @@ import FormModel from 'components/FormModel.vue';
const emit = defineEmits(['onDataSaved']); const emit = defineEmits(['onDataSaved']);
const $props = defineProps({
title: {
type: String,
default: '',
},
subtitle: {
type: String,
default: '',
},
url: {
type: String,
default: '',
},
model: {
type: String,
default: '',
},
filter: {
type: Object,
default: null,
},
urlCreate: {
type: String,
default: null,
},
formInitialData: {
type: Object,
default: () => {},
},
});
const { t } = useI18n(); const { t } = useI18n();
const closeButton = ref(null); const closeButton = ref(null);

View File

@ -75,14 +75,7 @@ async function onSubmit() {
lazy-rules lazy-rules
:rules="[(val) => (val && val.length > 0) || t('login.fieldRequired')]" :rules="[(val) => (val && val.length > 0) || t('login.fieldRequired')]"
color="primary" color="primary"
> />
<template #prepend>
<QIcon name="outgoing_mail" size="xs"></QIcon>
</template>
<template #append>
<QIcon name="close" size="xs"></QIcon>
</template>
</VnInput>
<VnInput <VnInput
type="password" type="password"
v-model="password" v-model="password"

View File

@ -5,7 +5,7 @@ export default {
path: '/ticket', path: '/ticket',
meta: { meta: {
title: 'tickets', title: 'tickets',
icon: 'outgoing_mail', icon: 'vn:ticket',
moduleName: 'Ticket', moduleName: 'Ticket',
}, },
component: RouterView, component: RouterView,