pointUse.html 2.38 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10
#set($title = "ポイント利用画面")
<!-- preHeader -->
#parse( "/WEB-INF/view/common/preHeader_sp.vm" )

<body>
<div data-role="page" id="pointUseIndex" data-theme="f">
<!--ヘッダー-->
#parse( "/WEB-INF/view/common/header_sp.vm" )

<!--コンテンツ-->
11 12 13
<form method="post" action="/em/user/pointUse/confirm/" data-ajax="false">
<input type="hidden" name="giftType" value="$!pointUseForm.giftType">
<input type="hidden" name="memberNum" value="$!memberNum"/>
Kim Gyeongeun committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
<div class="category" data-role="content" data-theme="d">
	<h2>ポイントの利用</h2>
	<div class="bg_blue">
		<div class="ui-grid-b">
			#errmsg()
			
			<table width="100%">
				<tr>
					<td>現在のポイント</td>
					<td>$!tools.getNumberFormatStr($!userInfo.pointNum)ポイント</td>
				</tr>
			</table>
		</div><!-- /grid-a -->

		<div data-role="fieldcontain">
29 30
			<label for="giftId" class="area_title">#if($!pointUseForm.giftType == 1)枚数#else交換ポイント数#end</label>
			<div  style="font-size: 12px">
Kim Gyeongeun committed
31 32 33 34 35 36 37 38 39
			<select name="giftId" id="giftId">
			#foreach($gift in $!pointUseForm.giftList)
				#if($gift.giftId == $!pointUseForm.giftId)
					<option value="$gift.giftId" selected>$gift.giftName</option>
				#else
					<option value="$gift.giftId">$gift.giftName</option>
				#end
			#end
			</select>
40
			</div>
Kim Gyeongeun committed
41
		</div>
42 43 44 45
		#foreach($gift in $!pointUseForm.giftList)
			<input type="hidden" name="giftList[$velocityCount].giftId" value="$gift.giftId"/>
			<input type="hidden" name="giftList[$velocityCount].giftName" value="$gift.giftName"/>
		#end
Kim Gyeongeun committed
46

47 48 49 50 51 52 53
		#errmsg()
		
		#if($!pointUseForm.giftType == 1)
			<input value="交換" type="submit"><br>
		#else
			<input value="次へ" type="submit"><br>
			<p align="left" style="border: solid 1px #214566;"><font color="blue">
Kazuki Nakamura committed
54
		    【ポイント交換期間について】
55
				<br>ICHICOポイントへの<b>交換</b>ができるのは令和5年6月1日~9月20日までの間のみです。
Kazuki Nakamura committed
56 57
				<br><br>
				【ICHICOの利用について】
58
				<br>ICHICOの<b>利用</b>は9月21日以降も一定の期間可能です。
59 60 61 62
			</font></p>
		#end
		
		
Kim Gyeongeun committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76
	</div>
</div>
#foreach($gift in $!pointUseForm.giftList)
	<input type="hidden" name="giftList[$velocityCount].giftId" value="$gift.giftId"/>
	<input type="hidden" name="giftList[$velocityCount].giftName" value="$gift.giftName"/>
#end
</form>

<!--フッター-->
#parse( "/WEB-INF/view/common/footer_sp.vm" )
</div>

</body>
</html>