Showing
4 changed files
with
110 additions
and
0 deletions
1 | +{{> layout/header}} | ||
2 | +<div class="online-service-page yoho-page"> | ||
3 | + {{# service}} | ||
4 | + <div class="question"> | ||
5 | + <div class="question-title">问题查询</div> | ||
6 | + <div class="question-tab"> | ||
7 | + {{#tab}} | ||
8 | + <span class="tab-item {{#current}}current{{/current}}" data-tab="{{tabid}}">{{tabname}}</span> | ||
9 | + {{#iscut}}<span class="line"></span>{{/iscut}} | ||
10 | + {{/tab}} | ||
11 | + </div> | ||
12 | + {{#question}} | ||
13 | + <ul class="question-list {{#current}}current{{/current}}" data-tab-name="{{name}}"> | ||
14 | + {{#list}} | ||
15 | + <li class="question-item"> | ||
16 | + <a href="{{link}}" title="{{title}}"> | ||
17 | + {{title}} | ||
18 | + <span class="iconfont icon-yoho-enter"></span> | ||
19 | + </a> | ||
20 | + </li> | ||
21 | + {{/list}} | ||
22 | + </ul> | ||
23 | + {{/question}} | ||
24 | + </div> | ||
25 | + {{/ service}} | ||
26 | + <div class="connect-info"> | ||
27 | + <div class="connect-item connect-online"> | ||
28 | + <a href="http://chat80.live800.com/live800/chatClient/chatbox.jsp?companyID=493979&configID=123576&jid=9277320930" target="_blank" title="在线客服"> | ||
29 | + <span class="icon iconfont icon-chat"></span> | ||
30 | + 在线客服 | ||
31 | + <span class="iconfont icon-yoho-enter"></span> | ||
32 | + </a> | ||
33 | + </div> | ||
34 | + <div class="connect-item connect-tel"> | ||
35 | + <a href="tel:400-889-9649" title="电话客服"> | ||
36 | + <span class="icon iconfont icon-tel"></span> | ||
37 | + 电话客服 | ||
38 | + <p> | ||
39 | + 400-889-9649 09:00 - 22:30 (周一至周日) | ||
40 | + </p> | ||
41 | + </a> | ||
42 | + | ||
43 | + </div> | ||
44 | + </div> | ||
45 | +</div> | ||
46 | +{{> layout/footer}} |
1 | +<div class="my-address-list-page hide"> | ||
2 | +{{# addressList}} | ||
3 | + <ul class="address-list"> | ||
4 | + <li class="address"> | ||
5 | + {{caption}} | ||
6 | + <span class="iconfont"></span> | ||
7 | + <ul> | ||
8 | + {{# sub}} | ||
9 | + <li class="address"> | ||
10 | + {{caption}} | ||
11 | + <ul class="address-list"> | ||
12 | + {{# sub}} | ||
13 | + <li class="address-last" data-id="{{code}}"> | ||
14 | + {{caption}}, {{code}} | ||
15 | + </li> | ||
16 | + {{/ sub}} | ||
17 | + </ul> | ||
18 | + </li> | ||
19 | + {{/ sub}} | ||
20 | + </ul> | ||
21 | + </li> | ||
22 | + </ul> | ||
23 | +{{/ addressList}} | ||
24 | +</div> |
1 | +<div class="my-edit-address-page hide"> | ||
2 | + <form class="edit-address"> | ||
3 | + <input type="hidden" name="id" value=""> | ||
4 | + <label class="username"> | ||
5 | + 收件人 | ||
6 | + <input type="text" name="consignee" value=""> | ||
7 | + </label> | ||
8 | + <label class="mobile"> | ||
9 | + 手机号码 | ||
10 | + <input type="text" name="mobile" value=""> | ||
11 | + </label> | ||
12 | + <label class="area"> | ||
13 | + 省市区 | ||
14 | + <input type="hidden" name="area_code" value=""> | ||
15 | + <input type="text" name="area" value=""> | ||
16 | + <span class="iconfont"></span> | ||
17 | + </label> | ||
18 | + <label class="address"> | ||
19 | + 详细地址 | ||
20 | + <textarea name="address"></textarea> | ||
21 | + </label> | ||
22 | + | ||
23 | + </form> | ||
24 | + | ||
25 | + <div class="submit"> | ||
26 | + 确认 | ||
27 | + </div> | ||
28 | +</div> |
-
Please register or login to post a comment