This commit is contained in:
@@ -45,7 +45,6 @@ https://blog.anoff.io/2019-10-migrating-vuetify-1-to-2/
|
||||
|
||||
=============== UPGRADING NOTES =================
|
||||
|
||||
START HERE - HAPPY MONDAY Working on login page, xs is fucked up
|
||||
|
||||
|
||||
** NOTE: can start dev server, go to *it's* client to see a working older version of ayanova client for comparision!
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<div>
|
||||
<v-row align-center justify-left row wrap>
|
||||
<template v-for="item in this.$store.state.formCustomTemplate[formKey]">
|
||||
<v-col v-if="item.type" :key="item.fld" xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col v-if="item.type" :key="item.fld" cols="12" sm6 lg4 xl3 px-2>
|
||||
<div v-if="item.type === 'currency'">
|
||||
CURRENCY CONTROL HERE
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<v-col xs12 md4>
|
||||
<v-col cols="12" md4>
|
||||
<v-card class="elevation-5 transparent">
|
||||
<v-card-text class="text-center">
|
||||
<v-icon x-large color="secondary">fa-heart</v-icon>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<v-col xs12 md4>
|
||||
<v-col cols="12" md4>
|
||||
<v-card class="elevation-5 transparent">
|
||||
<v-card-text class="text-center">
|
||||
<v-icon x-large color="secondary">fa-cannabis</v-icon>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<v-col xs12 md4>
|
||||
<v-col cols="12">
|
||||
<v-card class="elevation-5 transparent">
|
||||
<v-card-text class="text-center">
|
||||
<v-icon x-large color="secondary">fa-crow</v-icon>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<v-col xs12 md4>
|
||||
<v-col cols="12">
|
||||
<v-card class="elevation-5 transparent">
|
||||
<v-card-text class="text-center">
|
||||
<v-icon x-large color="secondary">fa-heart </v-icon>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-row column wrap class="my-12" align-center v-if="this.formState.ready">
|
||||
<v-col xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-row align-center v-if="this.formState.ready">
|
||||
<v-col cols="12" mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
@@ -13,7 +13,7 @@
|
||||
>{{ formState.errorBoxMessage }}</v-alert
|
||||
>
|
||||
</v-col>
|
||||
<v-col xs12 md12>
|
||||
<v-col cols="12">
|
||||
<div v-if="this.formState.ready">
|
||||
<v-toolbar flat>
|
||||
<v-toolbar-title>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<v-row>
|
||||
<v-col xs12>
|
||||
<v-col cols="12">
|
||||
<v-img :src="require('../assets/underconstruction.svg')"></v-img>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-row row v-if="this.formState.ready">
|
||||
<v-col xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-col cols="12" mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<v-col>
|
||||
<v-form ref="form">
|
||||
<v-row align-center justify-left row wrap>
|
||||
<v-col xs12 mt-1 mb-2>
|
||||
<v-col cols="12" mt-1 mb-2>
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
@@ -16,7 +16,7 @@
|
||||
>{{ formState.errorBoxMessage }}</v-alert
|
||||
>
|
||||
</v-col>
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<v-text-field
|
||||
v-model="obj.name"
|
||||
:readonly="this.formState.readOnly"
|
||||
@@ -33,7 +33,7 @@
|
||||
@change="onChange('name')"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<v-text-field
|
||||
v-model="obj.serial"
|
||||
:readonly="this.formState.readOnly"
|
||||
@@ -47,7 +47,7 @@
|
||||
@change="onChange('serial')"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<v-text-field
|
||||
v-model="obj.count"
|
||||
:readonly="this.formState.readOnly"
|
||||
@@ -67,7 +67,7 @@
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<v-text-field
|
||||
v-model="obj.dollarAmount"
|
||||
:readonly="this.formState.readOnly"
|
||||
@@ -85,7 +85,7 @@
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<gz-date-time-picker
|
||||
:label="lt('WidgetStartDate')"
|
||||
v-model="obj.startDate"
|
||||
@@ -96,7 +96,7 @@
|
||||
></gz-date-time-picker>
|
||||
</v-col>
|
||||
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<gz-date-time-picker
|
||||
:label="lt('WidgetEndDate')"
|
||||
:rules="[form().datePrecedence(this, 'startDate', 'endDate')]"
|
||||
@@ -107,7 +107,7 @@
|
||||
@change="onChange('endDate')"
|
||||
></gz-date-time-picker>
|
||||
</v-col>
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<v-checkbox
|
||||
v-model="obj.active"
|
||||
:readonly="this.formState.readOnly"
|
||||
@@ -118,7 +118,7 @@
|
||||
@change="onChange('active')"
|
||||
></v-checkbox>
|
||||
</v-col>
|
||||
<v-col xs12 sm6 lg4 xl3 px-2>
|
||||
<v-col cols="12" sm6 lg4 xl3 px-2>
|
||||
<v-select
|
||||
v-model="obj.roles"
|
||||
:items="pickLists.roles"
|
||||
@@ -137,7 +137,7 @@
|
||||
></v-select>
|
||||
</v-col>
|
||||
|
||||
<v-col xs12 px-2>
|
||||
<v-col cols="12" px-2>
|
||||
<v-textarea
|
||||
v-model="obj.notes"
|
||||
:readonly="this.formState.readOnly"
|
||||
@@ -149,7 +149,7 @@
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col xs12 px-2>
|
||||
<v-col cols="12" px-2>
|
||||
<gz-tag-picker
|
||||
:label="lt('Tags')"
|
||||
v-model="obj.tags"
|
||||
@@ -160,7 +160,7 @@
|
||||
></gz-tag-picker>
|
||||
</v-col>
|
||||
|
||||
<v-col xs12 px-2>
|
||||
<v-col cols="12" px-2>
|
||||
<gz-custom-fields
|
||||
:formKey="formCustomTemplateKey"
|
||||
v-bind:value.sync="obj.customFields"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-row row wrap align-top v-if="this.formState.ready">
|
||||
<v-col xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-row v-if="this.formState.ready">
|
||||
<v-col col="12" mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
@@ -18,7 +18,7 @@
|
||||
<POTop />
|
||||
<PartTop />
|
||||
<PartAssemblyTop />
|
||||
<v-col xs12 md4>
|
||||
<v-col cols="12" md4>
|
||||
<v-card class="elevation-0 transparent">
|
||||
<v-card-text class="text-center">
|
||||
<v-icon x-large color="accent">fa-lightbulb</v-icon>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<v-row row v-if="this.formState.ready">
|
||||
<v-col xs12 mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-col cols="12" mt-1 mb-2 v-if="formState.errorBoxMessage">
|
||||
<v-alert
|
||||
ref="errorbox"
|
||||
v-show="formState.errorBoxMessage"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<v-row justify-center>
|
||||
<v-col xs12>
|
||||
<v-col cols="12">
|
||||
<div class="text-center">
|
||||
<v-icon color="red" size="100">fa-dragon</v-icon>
|
||||
<div class="headline">
|
||||
|
||||
Reference in New Issue
Block a user