Config.xml angepasst, Kaufabwicklung funktioniert jetzt reibungslos
This commit is contained in:
@@ -1,29 +1,34 @@
|
||||
<ion-view view-title="Gekaufte Rosen">
|
||||
<ion-content class="padding">
|
||||
<ion-view view-title="Gekaufte Rosen ..">
|
||||
<ion-content class="padding">
|
||||
|
||||
<div style="padding-bottom:15px;">
|
||||
|
||||
<ul class="list card">
|
||||
<div class="item item-divider oleo">Hier können Sie Ihre gekauften Rosen ansehen oder nochmals versenden!</div>
|
||||
|
||||
<a class="item item-thumbnail-left item-button-right" href="#" ng-repeat="i in items" ng-model="items">
|
||||
<img ng-src="{{i.bild}}>
|
||||
<h1>{{i.name}}</h1>
|
||||
<p>{{i.freitext}} </p>
|
||||
<div class="buttons" style="margin-top:30px;">
|
||||
<button class="button button-small" >
|
||||
<i class="icon ion-image"> Vorschau</i>
|
||||
</button>
|
||||
<button class="button button-small">
|
||||
<i class="icon ion-android-share-alt"> Teilen</i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
|
||||
</ul>
|
||||
<div style="padding-bottom:20px;"></div>
|
||||
<div class="item item-divider oleo">.. Löschen, Anzeigen oder Teilen?</div>
|
||||
|
||||
<a href="#" ></a>
|
||||
|
||||
<ion-card ng-repeat="i in items" ng-model="items">
|
||||
|
||||
<div class="list card">
|
||||
<div class="item item-avatar"> <img ng-src="{{i.appimgpublicpath}}">
|
||||
<h2> <div class="oleo">{{i.name}}</div> </h2>
|
||||
</div>
|
||||
|
||||
<div class="item item-body">
|
||||
<div class="oleo-vsmall">{{i.bildtext}}</div>
|
||||
</div>
|
||||
|
||||
<ion-item>
|
||||
|
||||
</ion-content>
|
||||
<div class="item tabs tabs-secondary tabs-icon-left">
|
||||
<a href="#" class="tab-item"><i class="icon ion-trash-a button-custom"></i>Löschen</a>
|
||||
<a href="#" class="tab-item" ng-click="showImages(i.appimgpublicpath)"><i class="icon ion-android-image button-custom"></i>Anzeigen</a>
|
||||
<a href="#" class="tab-item"><i class="icon ion-share button-custom"></i>Teilen</a>
|
||||
</div>
|
||||
|
||||
</ion-item>
|
||||
</div>
|
||||
|
||||
</ion-card>
|
||||
|
||||
</ion-content>
|
||||
</ion-view>
|
||||
|
||||
@@ -1,22 +1,48 @@
|
||||
<ion-view view-title='Rosen kaufen'>
|
||||
<ion-view view-title='Rosen kaufen ..'>
|
||||
<ion-content class="padding">
|
||||
<div class="list card">
|
||||
<div class="item item-divider oleo">Schenken Sie einem besonderen Menschen eine außergewöhnliche Aufmerksamkeit!</div>
|
||||
<div class="item item-divider oleo">.. für einen besonderen Menschen!</div>
|
||||
<label class="item item-input item-stacked-label">
|
||||
<span class="input-label">Name Ihres Liebsten:</span>
|
||||
<input type="text" placeholder="" class="oleo" ng-model="$parent.name">
|
||||
<span class="oleo-small" class="input-label">Name:</span>
|
||||
<textarea placeholder="" rows="1" cols="1" class="oleo-small" ng-model="$parent.name"></textarea>
|
||||
</label>
|
||||
<label class="item item-input item-stacked-label">
|
||||
<span class="input-label">Ihre persönliche Nachricht:</span>
|
||||
<textarea placeholder="" rows="4" cols="10" class="oleo" ng-model="$parent.freitext"></textarea>
|
||||
<span class="oleo-small" class="input-label">Persönliche Nachricht:</span>
|
||||
<textarea placeholder="" rows="4" cols="10" class="oleo-small" ng-model="$parent.freitext"></textarea>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div
|
||||
<div class="col col-100"><button class="button button-full button-small icon-left ion-android-hangout button-custom" ng-click="loadzitat()">kleine Hilfe?</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div style="padding-bottom:15px;">
|
||||
<div class="item item-divider oleo">Wählen Sie Ihre Rosen aus:</div>
|
||||
<ion-list>
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'1xrose'" class="item item-thumbnail-left item-text-wrap"><img src="img/rose1.png"><h2 class="oleo">1 Rose </h2><p>Preis: 0,50 € (zzgl. gesetzl. MwSt.)</p></ion-radio>
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'3xrose'" class="item item-thumbnail-left item-text-wrap"><img src="img/rose3.png"><h2 class="oleo">3 Rosen</h2><p>Preis: 1,00 € (zzgl. gesetzl. MwSt.)</p></ion-radio>
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'9xrose'" class="item item-thumbnail-left item-text-wrap"><img src="img/rose10.png"><h2 class="oleo">9 Rosen</h2><p>Preis: 2,00 € (zzgl. gesetzl. MwSt.)</p></ion-radio>
|
||||
<ion-list ng-show="showrosen">
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'1xrose'" class="item item-thumbnail-left item-text-wrap">
|
||||
<img src="img/rose1.png">
|
||||
<h2 class="oleo">{{ rosen1titel }}</h2>
|
||||
<span class="oleo-vsmall">{{ rosen1beschreibung }}</span><br>
|
||||
<span class="oleo-vsmall">{{ rosen1preistag }}</span>
|
||||
</ion-radio>
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'3xrose'" class="item item-thumbnail-left item-text-wrap">
|
||||
<img src="img/rose3.png">
|
||||
<h2 class="oleo">{{ rosen3titel }}</h2>
|
||||
<span class="oleo-vsmall">{{ rosen3beschreibung }}</span><br>
|
||||
<span class="oleo-vsmall">{{ rosen3preistag }}</span>
|
||||
</ion-radio>
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'9xrose'" class="item item-thumbnail-left item-text-wrap">
|
||||
<img src="img/rose10.png">
|
||||
<h2 class="oleo">{{ rosen9titel }}</h2>
|
||||
<span class="oleo-vsmall">{{ rosen9beschreibung }}</span><br>
|
||||
<span class="oleo-vsmall">{{ rosen9preistag }}</span>
|
||||
</ion-radio>
|
||||
<ion-radio ng-model="$parent.preis" ng-value="'rosenflatrate'" class="item item-thumbnail-left item-text-wrap" ng-show="showflatrate">
|
||||
<img src="img/rose10.png">
|
||||
<h2 class="oleo">{{ flateraterosentitel }}</h2>
|
||||
<span class="oleo-vsmall">{{ flateraterosenbeschreibung }}</span><br>
|
||||
<span class="oleo-vsmall">{{ flateraterosenpreistag }}</span>
|
||||
</ion-radio>
|
||||
</ion-list>
|
||||
</div>
|
||||
|
||||
@@ -28,10 +54,6 @@
|
||||
<div class="col col-50"><button class="button button-full button-small icon-left ion-social-euro button-custom" ng-disabled="!$parent.preis || !$parent.freitext || !$parent.name" ng-click="buyRose()">Jetzt Kaufen</button></div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col col-50"><button class="button button-full button-small icon-left ion-image button-custom" ng-disabled="!$parent.preis || !$parent.name || !$parent.freitext" ng-click="loaddata()">Laden</button></div>
|
||||
<div class="col col-50"><button class="button button-full button-small icon-left ion-social-euro button-custom" ng-disabled="!$parent.preis || !$parent.freitext || !$parent.name" ng-click="savedata()">Speichern</button></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user