This commit is contained in:
@@ -14,7 +14,9 @@ TODO CLIENT STUFF
|
||||
|
||||
TODO NEXT
|
||||
|
||||
DON"T code the user options with the currency symbol etc until after it's all been worked out client side. Use static values instad in locale.
|
||||
DATETIME - working on styling it to look like the other input controls check the options in the picker component for styling
|
||||
|
||||
DON'T code the user options with the currency symbol etc until after it's all been worked out client side. Use static values instad in locale.
|
||||
Locale should fetch those settings the first time it sees they are not present so that they are refreshed upon use and are not stored in localstorage
|
||||
(or should they be? anyway, can work that out later)
|
||||
|
||||
|
||||
@@ -48,14 +48,13 @@
|
||||
></v-text-field>
|
||||
</v-flex>
|
||||
<v-flex xs12 sm6 lg4 xl3 px-2>
|
||||
<datetime
|
||||
v-model="obj.startDate"
|
||||
<v-input
|
||||
:error-messages="errors.collect('startDate')"
|
||||
:label="lc.get('WidgetStartDate')"
|
||||
data-vv-name="startDate"
|
||||
type="datetime"
|
||||
required
|
||||
></datetime>
|
||||
v-pre
|
||||
>
|
||||
<datetime v-model="obj.startDate" data-vv-name="startDate" type="datetime" required style=" display: block;"></datetime>
|
||||
</v-input>
|
||||
</v-flex>
|
||||
<v-flex xs12 sm6 lg4 xl3 px-2>
|
||||
<v-checkbox
|
||||
@@ -140,9 +139,9 @@ export default {
|
||||
methods: {
|
||||
getDataFromApi() {
|
||||
//debugger;
|
||||
|
||||
|
||||
//debugger;
|
||||
var url = "Widget/"+ this.$route.params.id;
|
||||
var url = "Widget/" + this.$route.params.id;
|
||||
api.get(url).then(res => {
|
||||
// debugger;
|
||||
//this.loading = false;
|
||||
|
||||
Reference in New Issue
Block a user