|
@@ -40,6 +40,7 @@
|
|
:selected='selectedStore'
|
|
:selected='selectedStore'
|
|
@onSelect='selectStore'
|
|
@onSelect='selectStore'
|
|
)
|
|
)
|
|
|
|
+ connection-status
|
|
.wizard-footer-right
|
|
.wizard-footer-right
|
|
wizard-button(
|
|
wizard-button(
|
|
v-if='!props.isLastStep'
|
|
v-if='!props.isLastStep'
|
|
@@ -72,11 +73,9 @@
|
|
import { FormWizard, TabContent, WizardButton } from 'vue-form-wizard'
|
|
import { FormWizard, TabContent, WizardButton } from 'vue-form-wizard'
|
|
import 'vue-form-wizard/dist/vue-form-wizard.min.css'
|
|
import 'vue-form-wizard/dist/vue-form-wizard.min.css'
|
|
|
|
|
|
- import ProductStep from './components/steps/Product'
|
|
|
|
- import CustomerStep from './components/steps/Customer'
|
|
|
|
- import PaymentStep from './components/steps/Payment'
|
|
|
|
import SettingsModal from './components/modals/SettingsModal'
|
|
import SettingsModal from './components/modals/SettingsModal'
|
|
- import { LoadingOverlay, SettingsButton, InputSelect } from './components/common'
|
|
|
|
|
|
+ import {Product as ProductStep, Customer as CustomerStep, Payment as PaymentStep} from './components/steps'
|
|
|
|
+ import { LoadingOverlay, SettingsButton, InputSelect, ConnectionStatus } from './components/common'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
@@ -89,7 +88,8 @@
|
|
LoadingOverlay,
|
|
LoadingOverlay,
|
|
SettingsButton,
|
|
SettingsButton,
|
|
SettingsModal,
|
|
SettingsModal,
|
|
- InputSelect
|
|
|
|
|
|
+ InputSelect,
|
|
|
|
+ ConnectionStatus
|
|
},
|
|
},
|
|
computed: mapGetters([
|
|
computed: mapGetters([
|
|
'isSale',
|
|
'isSale',
|
|
@@ -209,6 +209,7 @@
|
|
position: absolute
|
|
position: absolute
|
|
bottom: 0
|
|
bottom: 0
|
|
text-align: center
|
|
text-align: center
|
|
|
|
+ box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.26)
|
|
.wizard-footer-center
|
|
.wizard-footer-center
|
|
width: 270px
|
|
width: 270px
|
|
display: inline-block
|
|
display: inline-block
|
|
@@ -219,12 +220,14 @@
|
|
width: 200px
|
|
width: 200px
|
|
margin-left: 15px
|
|
margin-left: 15px
|
|
display: inline-block
|
|
display: inline-block
|
|
- .wizard-btn
|
|
|
|
- width: 160px
|
|
|
|
- height: 40px
|
|
|
|
- border-radius: 0
|
|
|
|
- box-shadow: none
|
|
|
|
- border: none
|
|
|
|
- &:hover, &:focus
|
|
|
|
- background: $app-main-color
|
|
|
|
|
|
+ .wizard-footer-left, .wizard-footer-right
|
|
|
|
+ margin-top: 3px
|
|
|
|
+ .wizard-btn
|
|
|
|
+ width: 160px
|
|
|
|
+ height: 40px
|
|
|
|
+ border-radius: 0
|
|
|
|
+ box-shadow: none
|
|
|
|
+ border: none
|
|
|
|
+ &:hover, &:focus
|
|
|
|
+ background: $app-main-color
|
|
</style>
|
|
</style>
|