kfwset.html
4.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{template 'public/header'}
{template 'public/comhead'}
<link rel="stylesheet" type="text/css" href="../addons/zh_cjdianc/template/public/ygcss.css">
<style type="text/css">
input[type="radio"] + label::before {
content: "\a0"; /*不换行空格*/
display: inline-block;
vertical-align: middle;
font-size: 16px;
width: 1em;
height: 1em;
margin-right: .4em;
border-radius: 50%;
border: 2px solid #ddd;
text-indent: .15em;
line-height: 1;
}
input[type="radio"]:checked + label::before {
background-color: #44ABF7;
background-clip: content-box;
padding: .1em;
border: 2px solid #44ABF7;
}
input[type="radio"] {
position: absolute;
clip: rect(0, 0, 0, 0);
}
.navback{width: 0}
.main{margin: 16px 0px 30px 45px;}
.nav_box{
left: 150px;
top: 48px;
bottom: 0;
color: #333;
border-right: 1px solid #efefef;
text-align: center;
position: fixed;
background: #fff;
z-index: 99;
padding:0;
}
.left_nav{
padding-top: 20px
}
.left_nav li{
line-height: 45px;
}
.left_nav li.active{
color: #00aeff;
background: #edf6ff
}
.left_nav li:hover{
background: #edf6ff;
}
.left_nav li:hover a{
color: #00aeff;
}
</style>
<div class="nav_box col-md-1">
<ul class="left_nav">
<!-- <span class="ygxian"></span>
<div class="ygdangq">当前位置:</div> -->
<li class="active"><a href="javascript:void(0);">设置信息</a></li>
</ul>
</div>
<!-- <ul class="nav nav-tabs">
<span class="ygxian"></span>
<div class="ygdangq">当前位置:</div>
<li class="active"><a href="javascript:void(0);">设置信息</a></li>
</ul> -->
<div class="main">
<form action="" method="post" class="form-horizontal form" enctype="multipart/form-data">
<!--<input type="hidden" name="parentid" value="{$parent['id']}" />-->
<div class="panel panel-default ygdefault">
<div class="panel-heading wyheader">
快服务 > 设置信息
</div>
<div class="panel-body">
<!-- <div class="form-group">
<label class="col-xs-12 col-sm-3 col-md-2 control-label">是否开启UU跑腿</label>
<div class="col-sm-9">
<label class="radio-inline">
<input type="radio" id="emailwy1" name="is_open" value="1" {if $info['is_open']==1 || empty($info['is_open'])}checked{/if} />
<label for="emailwy1">开启</label>
</label>
<label class="radio-inline">
<input type="radio" id="emailwy2" name="is_open" value="2" {if $info['is_open']==2}checked{/if} />
<label for="emailwy2">关闭</label>
</label>
</div>
</div> -->
<!-- <div class="form-group">
<label class="col-xs-12 col-sm-3 col-md-2 control-label">订单价格确认方式</label>
<div class="col-sm-9">
<label class="radio-inline">
<input type="radio" name="is_check" value="2" {if $info['is_check']==2 || empty($info['is_check'])}checked{/if} />手动
</label>
<label class="radio-inline">
<input type="radio" name="is_check" value="1" {if $info['is_check']==1}checked{/if} />自动
</label>
</div>
</div> -->
<div class="form-group">
<label class="col-xs-12 col-sm-3 col-md-2 control-label">商户ID(user_id)</label>
<div class="col-sm-9">
<input type="text" name="user_id" class="form-control" value="{$info['user_id']}" />
</div>
</div>
</div>
</div>
<div class="form-group">
<input type="submit" name="submit" value="提交" class="btn col-lg-3" style="color: white;background-color: #44ABF7;"/>
<input type="hidden" name="token" value="{$_W['token']}" />
<input type="hidden" name="id" value="{$info['id']}" />
</div>
</form>
</div>
<script type="text/javascript">
$(function(){
$("#frame-4").show();
$("#yframe-4").addClass("wyactive");
})
</script>
{template 'common/footer'}