mirror of
https://github.com/frappe/books.git
synced 2025-01-23 15:18:24 +00:00
fix: Use TwoColumnForm in SetupWizard
This commit is contained in:
parent
9ea172784c
commit
0a3900c3f4
@ -1,27 +1,11 @@
|
||||
<template>
|
||||
<div class="py-10 flex-1 bg-white">
|
||||
<div class="py-10 flex-1 bg-white window-drag">
|
||||
<div class="px-12">
|
||||
<h1 class="text-2xl font-semibold">{{ _('Setup your organization') }}</h1>
|
||||
<p class="text-gray-600">{{ _('These settings can be changed later') }}</p>
|
||||
</div>
|
||||
<div class="px-8 mt-5">
|
||||
<div class="border-t">
|
||||
<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>
|
||||
<TwoColumnForm :fields="fields" :doc="doc" />
|
||||
</div>
|
||||
<div class="px-8 flex justify-end mt-5">
|
||||
<Button @click="submit" type="primary" class="text-white text-sm">{{ _('Next') }}</Button>
|
||||
@ -30,7 +14,7 @@
|
||||
</template>
|
||||
<script>
|
||||
import frappe from 'frappejs';
|
||||
import FormControl from '@/components/Controls/FormControl';
|
||||
import TwoColumnForm from '@/components/TwoColumnForm';
|
||||
import Button from '@/components/Button';
|
||||
|
||||
export default {
|
||||
@ -48,7 +32,7 @@ export default {
|
||||
};
|
||||
},
|
||||
components: {
|
||||
FormControl,
|
||||
TwoColumnForm,
|
||||
Button
|
||||
},
|
||||
async beforeMount() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user