Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
weiqingting
9 years ago
Commit
1504d3cd9afcdd31624bffb3cc1e7ba025ccc782
1 parent
9098991a
订单确认
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
template/www.yohobuy.com/actions/order/save/index.phtml
yohobuy/www.yohobuy.com/application/modules/Order/controllers/Save.php
template/www.yohobuy.com/actions/order/save/index.phtml
View file @
1504d3c
...
...
@@ -96,10 +96,12 @@
<label>直接输入优惠码:
</label>
<input
type=
"text"
class=
"textbox"
id=
"juancode"
/>
</li>
<li>
<input
name=
"juangroup"
type=
"radio"
value=
""
>
<label>YOHOXXXXXXX免费卷
</label>
</li>
{
{#each
juanlist
}
}
<li>
<input
name=
"juangroup"
type=
"radio"
value=
"{{value}}"
>
<label>
{
{name
}
}
</label>
</li>
{
{/each
}
}
</ul>
</div>
...
...
yohobuy/www.yohobuy.com/application/modules/Order/controllers/Save.php
View file @
1504d3c
...
...
@@ -20,6 +20,10 @@ class SaveController extends AbstractAction
'piaotypes'
=>
array
(
array
(
'name'
=>
'个人'
,
'value'
=>
'001'
),
array
(
'name'
=>
'公司'
,
'value'
=>
'002'
)
),
'juanlist'
=>
array
(
array
(
'name'
=>
'YOHOXXXXXX优惠卷'
,
'value'
=>
'001'
),
array
(
'name'
=>
'爽1111优惠卷'
,
'value'
=>
'002'
)
)
)
);
...
...
Please
register
or
login
to post a comment