E2E fixes
gitea/salix/1838-searchbar_refactor This commit looks good
Details
gitea/salix/1838-searchbar_refactor This commit looks good
Details
This commit is contained in:
parent
a47dd521a4
commit
4f5c1404d7
|
@ -472,7 +472,7 @@ export default {
|
||||||
zoneAutocomplete: 'vn-autocomplete[ng-model="$ctrl.zoneId"]',
|
zoneAutocomplete: 'vn-autocomplete[ng-model="$ctrl.zoneId"]',
|
||||||
nextStepButton: 'vn-step-control .buttons > section:last-child vn-button',
|
nextStepButton: 'vn-step-control .buttons > section:last-child vn-button',
|
||||||
finalizeButton: 'vn-step-control .buttons > section:last-child button[type=submit]',
|
finalizeButton: 'vn-step-control .buttons > section:last-child button[type=submit]',
|
||||||
stepTwoTotalPriceDif: 'vn-ticket-basic-data-step-two > form > vn-card > vn-horizontal > table > tfoot > tr > td:nth-child(4)',
|
stepTwoTotalPriceDif: 'vn-ticket-basic-data-step-two vn-tfoot > vn-tr > :nth-child(6)',
|
||||||
chargesReasonAutocomplete: 'vn-autocomplete[ng-model="$ctrl.ticket.option"]',
|
chargesReasonAutocomplete: 'vn-autocomplete[ng-model="$ctrl.ticket.option"]',
|
||||||
},
|
},
|
||||||
ticketComponents: {
|
ticketComponents: {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<div class="vn-w-md">
|
<vn-button-bar>
|
||||||
<vn-button-bar>
|
|
||||||
<vn-step-control
|
<vn-step-control
|
||||||
step-count="10"
|
step-count="10"
|
||||||
steps="[
|
steps="[
|
||||||
|
@ -9,6 +8,5 @@
|
||||||
on-step-change="$ctrl.onStepChange(state)"
|
on-step-change="$ctrl.onStepChange(state)"
|
||||||
on-step-end="$ctrl.onSubmit()">
|
on-step-end="$ctrl.onSubmit()">
|
||||||
</vn-step-control>
|
</vn-step-control>
|
||||||
</vn-button-bar>
|
</vn-button-bar>
|
||||||
<ui-view></ui-view>
|
<ui-view></ui-view>
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<form name="form">
|
<vn-card class="vn-w-lg">
|
||||||
<vn-card class="vn-w-lg vn-pa-lg">
|
|
||||||
<vn-table>
|
<vn-table>
|
||||||
<vn-thead>
|
<vn-thead>
|
||||||
<vn-tr>
|
<vn-tr>
|
||||||
|
@ -29,12 +28,13 @@
|
||||||
</vn-tbody>
|
</vn-tbody>
|
||||||
<vn-tfoot>
|
<vn-tfoot>
|
||||||
<vn-tr>
|
<vn-tr>
|
||||||
<vn-td colspan="3"></vn-td>
|
<vn-td></vn-td>
|
||||||
|
<vn-td></vn-td>
|
||||||
|
<vn-td></vn-td>
|
||||||
<vn-td number><strong>{{$ctrl.totalPrice | currency: 'EUR': 2}}</strong></vn-td>
|
<vn-td number><strong>{{$ctrl.totalPrice | currency: 'EUR': 2}}</strong></vn-td>
|
||||||
<vn-td number><strong>{{$ctrl.totalNewPrice | currency: 'EUR': 2}}</strong></vn-td>
|
<vn-td number><strong>{{$ctrl.totalNewPrice | currency: 'EUR': 2}}</strong></vn-td>
|
||||||
<vn-td number><strong>{{$ctrl.totalPriceDifference | currency: 'EUR': 2}}</strong></vn-td>
|
<vn-td number><strong>{{$ctrl.totalPriceDifference | currency: 'EUR': 2}}</strong></vn-td>
|
||||||
</vn-tr>
|
</vn-tr>
|
||||||
</vn-tfoot>
|
</vn-tfoot>
|
||||||
</vn-table>
|
</vn-table>
|
||||||
</vn-card>
|
</vn-card>
|
||||||
</form>
|
|
||||||
|
|
Loading…
Reference in New Issue