2
0
mirror of https://github.com/frappe/books.git synced 2025-02-02 20:18:26 +00:00

fix: Use TwoColumnForm in SetupWizard

This commit is contained in:
Faris Ansari 2019-11-19 23:20:33 +05:30
parent 9ea172784c
commit 0a3900c3f4

View File

@ -1,27 +1,11 @@
<template> <template>
<div class="py-10 flex-1 bg-white"> <div class="py-10 flex-1 bg-white window-drag">
<div class="px-12"> <div class="px-12">
<h1 class="text-2xl font-semibold">{{ _('Setup your organization') }}</h1> <h1 class="text-2xl font-semibold">{{ _('Setup your organization') }}</h1>
<p class="text-gray-600">{{ _('These settings can be changed later') }}</p> <p class="text-gray-600">{{ _('These settings can be changed later') }}</p>
</div> </div>
<div class="px-8 mt-5"> <div class="px-8 mt-5">
<div class="border-t"> <TwoColumnForm :fields="fields" :doc="doc" />
<div
class="grid border-b text-xs"
style="grid-template-columns: 1fr 2fr"
v-for="df in fields"
>
<div class="py-2 pl-4 text-gray-600 flex items-center">{{ df.label }}</div>
<div class="py-2 pr-4">
<FormControl
size="small"
:df="df"
:value="doc[df.fieldname]"
@change="value => doc.set(df.fieldname, value)"
/>
</div>
</div>
</div>
</div> </div>
<div class="px-8 flex justify-end mt-5"> <div class="px-8 flex justify-end mt-5">
<Button @click="submit" type="primary" class="text-white text-sm">{{ _('Next') }}</Button> <Button @click="submit" type="primary" class="text-white text-sm">{{ _('Next') }}</Button>
@ -30,7 +14,7 @@
</template> </template>
<script> <script>
import frappe from 'frappejs'; import frappe from 'frappejs';
import FormControl from '@/components/Controls/FormControl'; import TwoColumnForm from '@/components/TwoColumnForm';
import Button from '@/components/Button'; import Button from '@/components/Button';
export default { export default {
@ -48,7 +32,7 @@ export default {
}; };
}, },
components: { components: {
FormControl, TwoColumnForm,
Button Button
}, },
async beforeMount() { async beforeMount() {