Authored by weiqingting

样式修改

... ... @@ -564,7 +564,7 @@ ul {
}
.citybox div.cityshow span {
width: 65px;
width: 100px;
padding-right: 15px;
display: inline-block;
float: left;
... ...
... ... @@ -16,7 +16,11 @@ exports.res = [
level2title:"创建店铺管理",
level3title:"创建店铺列表"
},
dropCheckStatus:true
searchStatus:[
{value:"100",name:"暂存"},
{value:"200",name:"待审核"},
{value:"900",name:"驳回"}
]
},
src:'/store/index'
},{
... ... @@ -27,12 +31,16 @@ exports.res = [
data: {
gridurl:'/supplier/store/indexPage',
authority:'{"btn":true,"info":"info3","operationStatus":2,"checkStatusArr":"200,300,900"}', //300,200,900
dropCheckStatus:true,
pagetitle:{
level1title:"店铺管理",
level2title:"店铺信息管理",
level3title:"店铺信息列表"
}
},
searchStatus:[
{value:"200",name:"审核中"},
{value:"300",name:"通过"},
{value:"900",name:"驳回"}
]
},
src:'/store/index',
},{
... ...
... ... @@ -32,14 +32,24 @@
<div class="panel-body">
<div class="row">
{{#dropCheckStatus}}
<!-- {{#dropCheckStatus}}
<select name="status" id="status" tabindex="-1" title="" class="select2-offscreen brandBtn-group">
<option value="-1" selected="">选择提交状态</option>
<option value="100">暂存</option>
<option value="200">待审核</option>
<option value="900">驳回</option>
</select>
{{/dropCheckStatus}}
{{/dropCheckStatus}} -->
{{# if searchStatus}}
<select name="status" id="status" tabindex="-1" title="" class="select2-offscreen brandBtn-group">
<option value="-1" selected="">选择提交状态</option>
{{# each searchStatus}}
<option value="{{value}}">{{name}}</option>
{{/ each}}
</select>
{{/ if}}
<select name="supplier-name" id="supplier-name" style="width: 280px;" tabindex="-1" title="" class="select2-offscreen brandBtn-group brandBtn-group-lg">
<option value="-1">选择供应商</option>
{{# supplierName}}
... ...